:root {
  --bg: #070a0e;
  --surface: #10151c;
  --surface-2: #151b23;
  --blue: #087dff;
  --blue-2: #3aa0ff;
  --text: #f5f7fa;
  --muted: #9ca6b2;
  --line: #29323c;
  --heading: "Barlow Condensed", Impact, sans-serif;
  --body: Inter, system-ui, sans-serif;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.skip-link {
  background: var(--blue);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}
.skip-link:focus {
  top: 1rem;
}
.section-shell {
  margin: auto;
  max-width: 1240px;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}
.site-header {
  background: rgba(7, 10, 14, 0.7);
  border-bottom: 1px solid transparent;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.25s;
  z-index: 50;
}
.site-header.scrolled {
  backdrop-filter: blur(18px);
  border-color: rgba(255, 255, 255, 0.08);
}
.nav-wrap {
  align-items: center;
  display: flex;
  height: 82px;
  justify-content: space-between;
  margin: auto;
  max-width: 1240px;
  padding: 0 28px;
}
.brand img {
  height: 64px;
  width: 112px;
  object-fit: contain;
}
.site-nav {
  align-items: center;
  display: flex;
  gap: 32px;
}
.site-nav a {
  color: #c4ccd5;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}
.site-nav a:hover {
  color: #fff;
}
.site-nav .nav-download {
  background: var(--blue);
  border-radius: 5px;
  color: #fff;
  padding: 13px 20px;
}
.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 8px;
}
.menu-toggle span {
  background: #fff;
  display: block;
  height: 2px;
  margin: 5px;
  width: 24px;
}
.hero {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 820px;
  padding-bottom: 70px;
  padding-top: 130px;
  position: relative;
}
.hero:before {
  background: linear-gradient(
      90deg,
      rgba(7, 10, 14, 0.65),
      rgba(7, 10, 14, 0.15)
    ),
    url("assets/road-background.png") center/cover;
  content: "";
  filter: saturate(0.75);
  inset: 0 calc((1240px - 100vw) / 2);
  opacity: 0.35;
  pointer-events: none;
  position: absolute;
  z-index: -2;
}
.hero:after {
  background: linear-gradient(0deg, var(--bg), transparent 40%),
    linear-gradient(90deg, var(--bg), transparent 45%);
  content: "";
  inset: 0 calc((1240px - 100vw) / 2);
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.hero-glow {
  background: #087dff;
  border-radius: 50%;
  filter: blur(150px);
  height: 250px;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
  right: 12%;
  top: 25%;
  width: 250px;
}
.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 4;
}
.eyebrow {
  align-items: center;
  color: var(--blue-2);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.eyebrow span {
  background: var(--blue);
  height: 2px;
  width: 28px;
}
h1,
h2 {
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 0;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(66px, 7vw, 104px);
  line-height: 0.86;
}
h1 em,
h2 em {
  color: var(--blue-2);
  font-style: normal;
}
.hero-lead {
  color: #bec6cf;
  font-size: 18px;
  line-height: 1.7;
  margin: 30px 0;
  max-width: 590px;
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.store-button {
  align-items: center;
  background: #050608;
  border: 1px solid #46505b;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-width: 174px;
  padding: 9px 14px;
  text-decoration: none;
  transition: 0.2s;
}
.store-button:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.store-button svg {
  fill: #fff;
  height: 30px;
  width: 27px;
}
.store-button span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.store-button small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.hero-proof {
  align-items: center;
  display: flex;
  gap: 15px;
  margin-top: 34px;
}
.hero-proof p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.hero-proof strong {
  color: #e8ecf0;
  font-size: 12px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack b {
  align-items: center;
  background: #152639;
  border: 2px solid var(--bg);
  border-radius: 50%;
  color: #66adff;
  display: flex;
  font-size: 10px;
  height: 33px;
  justify-content: center;
  margin-left: -7px;
  width: 33px;
}
.avatar-stack b:first-child {
  margin: 0;
}
.hero-visual {
  display: flex;
  justify-content: center;
  min-height: 630px;
  position: relative;
  z-index: 1;
}
.phone {
  background: #040608;
  border: 2px solid #2b333d;
  border-radius: 42px;
  box-shadow: 0 35px 80px #000;
  overflow: hidden;
  padding: 9px;
  position: relative;
}
.phone:before {
  background: #040608;
  border-radius: 0 0 13px 13px;
  content: "";
  height: 22px;
  left: 50%;
  position: absolute;
  top: 7px;
  transform: translateX(-50%);
  width: 105px;
  z-index: 5;
}
.phone-main {
  height: 620px;
  transform: rotate(2deg);
  width: 287px;
  z-index: 2;
}
.phone-mockup {
  background: #020609;
  padding: 0;
}
.phone-mockup:before {
  display: none;
}
.phone-mockup > img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
.phone-screen {
  background: #071018;
  border-radius: 33px;
  height: 100%;
  overflow: hidden;
  padding: 19px 16px;
  position: relative;
}
.home-screen:before {
  background: url("assets/road-background.png") top center/cover;
  content: "";
  inset: 0;
  opacity: 0.2;
  position: absolute;
}
.phone-screen > * {
  position: relative;
}
.phone-status {
  display: flex;
  font-size: 8px;
  font-weight: 800;
  justify-content: space-between;
  padding: 1px 6px;
}
.phone-logo {
  height: 53px;
  margin: 3px auto 1px;
  object-fit: contain;
  width: 92px;
}
.welcome small,
.blue-label {
  color: var(--blue);
  display: block;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.welcome strong {
  display: block;
  font-family: var(--heading);
  font-size: 23px;
  text-transform: uppercase;
}
.map-card {
  background: #0a1621;
  border: 1px solid #31404f;
  border-radius: 9px;
  height: 142px;
  margin-top: 12px;
  overflow: hidden;
  position: relative;
}
.map-road {
  border: 2px solid #536575;
  border-radius: 50%;
  height: 180px;
  position: absolute;
  transform: rotate(-24deg);
  width: 240px;
}
.road-a {
  left: -30px;
  top: 20px;
}
.road-b {
  left: 50px;
  top: -105px;
}
.map-pin {
  filter: drop-shadow(0 4px 5px #000c);
  height: 54px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 36px;
  z-index: 2;
}
.pin-a {
  left: 34px;
  top: 28px;
}
.pin-b {
  right: 62px;
  top: 18px;
}
.pin-c {
  bottom: 14px;
  right: 24px;
}
.pin-d {
  bottom: 5px;
  left: 105px;
}
.map-copy {
  background: linear-gradient(90deg, #071018dd, transparent);
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 24px 12px 10px;
  position: absolute;
  right: 0;
}
.map-copy b {
  font-size: 11px;
}
.map-copy span {
  color: var(--muted);
  font-size: 8px;
}
.quick-actions {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 9px;
}
.quick-actions span {
  align-items: center;
  background: #101a24;
  border: 1px solid #263746;
  border-radius: 6px;
  color: var(--blue);
  display: flex;
  font-size: 17px;
  justify-content: center;
  padding: 7px;
}
.quick-actions small {
  color: #dce2e8;
  font-size: 6px;
  font-weight: 800;
  margin-left: 4px;
}
.phone-section-title {
  display: flex;
  font-size: 7px;
  justify-content: space-between;
  margin: 13px 1px 6px;
}
.phone-section-title span {
  color: var(--blue);
}
.ride-preview {
  align-items: center;
  background: #0e1720;
  border: 1px solid #26333f;
  border-radius: 7px;
  display: flex;
  height: 69px;
  overflow: hidden;
}
.ride-preview img {
  height: 65px;
  object-fit: contain;
  width: 112px;
}
.ride-preview div {
  display: flex;
  flex-direction: column;
}
.ride-preview b {
  font-size: 10px;
}
.ride-preview small {
  color: var(--muted);
  font-size: 6px;
  margin: 3px 0;
}
.ride-preview span {
  color: var(--blue-2);
  font-size: 7px;
}
.community-mini {
  align-items: center;
  background: #0e1720;
  border: 1px solid #26333f;
  border-radius: 7px;
  display: flex;
  gap: 8px;
  padding: 8px;
}
.community-mini i {
  align-items: center;
  background: #087dff33;
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  font-size: 9px;
  height: 26px;
  justify-content: center;
  width: 26px;
}
.community-mini div {
  display: flex;
  flex-direction: column;
}
.community-mini b {
  font-size: 8px;
}
.community-mini small {
  color: var(--muted);
  font-size: 7px;
  margin-top: 3px;
}
.orbit {
  border: 1px solid #087dff33;
  border-radius: 50%;
  position: absolute;
}
.orbit-one {
  height: 480px;
  top: 85px;
  width: 480px;
}
.orbit-two {
  height: 600px;
  top: 25px;
  width: 600px;
}
.floating-stat {
  align-items: center;
  backdrop-filter: blur(10px);
  background: #0b1119e8;
  border: 1px solid #087dff55;
  border-radius: 9px;
  box-shadow: 0 16px 35px #0008;
  display: flex;
  gap: 9px;
  padding: 11px 14px;
  position: absolute;
  z-index: 3;
}
.floating-stat > span {
  color: var(--blue);
  font-size: 24px;
}
.floating-stat div {
  display: flex;
  flex-direction: column;
}
.floating-stat b {
  font-size: 13px;
}
.floating-stat small {
  color: var(--muted);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 1px;
}
.stat-one {
  left: 2%;
  top: 130px;
}
.stat-two {
  bottom: 110px;
  right: 0;
}
.trust-strip {
  align-items: center;
  background: #0d1218;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  padding: 22px 28px;
}
.trust-strip div {
  align-items: baseline;
  display: flex;
  gap: 11px;
  padding: 0 45px;
}
.trust-strip strong {
  color: var(--blue);
  font-family: var(--heading);
  font-size: 18px;
  letter-spacing: 1px;
}
.trust-strip span {
  color: var(--muted);
  font-size: 11px;
}
.trust-strip i {
  background: var(--line);
  height: 28px;
  width: 1px;
}
.features {
  padding-bottom: 120px;
  padding-top: 125px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
}
.section-heading h2,
.steps h2,
.garage h2,
.membership h2,
.faq h2,
.download h2 {
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: 0.92;
}
.section-heading > p:last-child {
  align-self: end;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 450px;
}
.feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
}
.feature-card {
  background: linear-gradient(145deg, #131a22, #0d1218);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 310px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: 0.25s;
}
.feature-card:hover {
  border-color: #087dff88;
  transform: translateY(-4px);
}
.feature-wide {
  grid-column: span 2;
}
.feature-icon {
  align-items: center;
  background: #087dff1c;
  border: 1px solid #087dff66;
  border-radius: 50%;
  color: var(--blue-2);
  display: flex;
  font-size: 28px;
  height: 53px;
  justify-content: center;
  width: 53px;
}
.feature-number {
  color: #3d4751;
  font-family: var(--heading);
  font-size: 13px;
  position: absolute;
  right: 25px;
  top: 20px;
}
.feature-card h3 {
  font-family: var(--heading);
  font-size: 28px;
  margin: 42px 0 12px;
  text-transform: uppercase;
}
.feature-card > p:not(.feature-number) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  max-width: 490px;
}
.route-art {
  bottom: 20px;
  height: 140px;
  position: absolute;
  right: 16px;
  width: 230px;
}
.route-art:before {
  border: 3px solid #087dff;
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
  inset: 20px;
  position: absolute;
  transform: rotate(25deg);
}
.route-art span,
.route-art i,
.route-art b,
.route-art em {
  background: #0a1118;
  border: 3px solid var(--blue);
  border-radius: 50%;
  height: 14px;
  position: absolute;
  width: 14px;
}
.route-art span {
  left: 24px;
  top: 61px;
}
.route-art i {
  right: 34px;
  top: 34px;
}
.route-art b {
  bottom: 23px;
  right: 52px;
}
.route-art em {
  bottom: 31px;
  left: 57px;
}
.mini-pills {
  bottom: 28px;
  display: flex;
  gap: 8px;
  position: absolute;
  right: 28px;
}
.mini-pills span {
  background: #087dff14;
  border: 1px solid #087dff55;
  border-radius: 20px;
  color: #76b6ff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 10px;
}
.feature-rail {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 52px;
}
.feature-rail span {
  align-items: center;
  background: #0d141c;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #9aa8b6;
  display: flex;
  font-size: 8px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.8px;
  min-height: 44px;
  padding: 8px;
  text-align: center;
}
.feature-rail span:first-child,
.feature-rail span:nth-child(4) {
  border-color: #087dff66;
  color: #66adff;
}
.feature-stories {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-top: 120px;
}
.feature-story {
  align-items: center;
  display: grid;
  gap: clamp(55px, 8vw, 120px);
  grid-template-columns: 1fr 0.92fr;
  min-height: 660px;
}
.feature-story-reverse .feature-visual {
  order: 2;
}
.feature-story-reverse .feature-copy {
  order: 1;
}
.feature-visual {
  min-height: 650px;
  position: relative;
}
.feature-visual:before {
  background: #087dff;
  border-radius: 50%;
  content: "";
  filter: blur(120px);
  height: 280px;
  left: 50%;
  opacity: 0.15;
  position: absolute;
  top: 30%;
  transform: translateX(-50%);
  width: 280px;
}
.mock-screen {
  background: #030608;
  border: 1px solid #3c4854;
  border-radius: 29px;
  box-shadow: 0 34px 75px #000b;
  display: block;
  height: auto;
  max-height: 650px;
  object-fit: cover;
  object-position: top;
  position: relative;
  width: auto;
}
.feature-visual-pair .mock-screen {
  position: absolute;
  width: 315px;
}
.feature-visual-pair .mock-screen-back {
  left: 0;
  top: 0;
  transform: rotate(-4deg) scale(0.92);
}
.feature-visual-pair .mock-screen-front {
  bottom: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 2;
}
.feature-visual-single {
  display: flex;
  justify-content: center;
}
.feature-visual-single .mock-screen {
  max-height: 690px;
  max-width: 360px;
}
.screen-accent {
  background: #087dff;
  border-radius: 4px;
  box-shadow: 0 12px 30px #087dff44;
  color: white;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
  left: 2%;
  letter-spacing: 1.5px;
  padding: 12px 16px;
  position: absolute;
  top: 90px;
  transform: rotate(-5deg);
  z-index: 3;
}
.feature-copy {
  position: relative;
}
.feature-copy:before {
  color: #111923;
  content: "RETUOR";
  font-family: var(--heading);
  font-size: 92px;
  font-weight: 900;
  left: -12px;
  letter-spacing: 4px;
  position: absolute;
  top: -70px;
  z-index: -1;
}
.feature-kicker {
  color: var(--blue-2) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 18px !important;
}
.feature-copy h3 {
  font-family: var(--heading);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.98;
  margin: 0;
  max-width: 570px;
  text-transform: uppercase;
}
.feature-copy > p:not(.feature-kicker) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 25px 0 28px;
  max-width: 560px;
}
.feature-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-copy li {
  border-top: 1px solid var(--line);
  color: #d5dbe1;
  font-size: 12px;
  line-height: 1.5;
  padding: 13px 8px 13px 28px;
  position: relative;
}
.feature-copy li:last-child {
  border-bottom: 1px solid var(--line);
}
.feature-copy li:before {
  color: var(--blue);
  content: "+";
  font-size: 17px;
  font-weight: 800;
  left: 2px;
  position: absolute;
  top: 9px;
}
.community-visual .mock-screen-back {
  top: 20px;
}
.backpackers-visual {
  align-items: center;
  display: flex;
  justify-content: center;
}
.backpackers-map-card {
  background: #09111a;
  border: 1px solid #344455;
  border-radius: 28px;
  box-shadow: 0 34px 75px #000b;
  height: 570px;
  overflow: hidden;
  position: relative;
  transform: rotate(-2deg);
  width: min(430px, 88%);
}
.backpackers-map-grid {
  background-color: #09111a;
  background-image: linear-gradient(
      28deg,
      transparent 46%,
      #087dff38 47%,
      #087dff38 49%,
      transparent 50%
    ),
    linear-gradient(
      112deg,
      transparent 45%,
      #33425288 46%,
      #33425288 48%,
      transparent 49%
    ),
    linear-gradient(#ffffff0c 1px, transparent 1px),
    linear-gradient(90deg, #ffffff0c 1px, transparent 1px);
  background-size: 310px 250px, 260px 330px, 48px 48px, 48px 48px;
  inset: 0;
  opacity: 0.9;
  position: absolute;
}
.backpacker-map-label {
  background: linear-gradient(180deg, transparent, #071019 38%);
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 72px 30px 32px;
  position: absolute;
  right: 0;
}
.backpacker-map-label small,
.backpacker-profile-card small {
  color: #66adff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.backpacker-map-label strong {
  font-family: var(--heading);
  font-size: 28px;
  margin-top: 6px;
  text-transform: uppercase;
}
.backpacker-pin {
  align-items: center;
  background: #087dff;
  border: 3px solid #d7eaff;
  border-radius: 50% 50% 50% 8px;
  box-shadow: 0 8px 25px #087dff88;
  display: flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  transform: rotate(-45deg);
  width: 48px;
}
.backpacker-pin i {
  font-style: normal;
  font-weight: 800;
  transform: rotate(45deg);
}
.pin-one {
  left: 17%;
  top: 24%;
}
.pin-two {
  right: 18%;
  top: 14%;
}
.pin-three {
  right: 34%;
  top: 43%;
}
.backpacker-profile-card {
  align-items: center;
  background: #101923f5;
  border: 1px solid #526170;
  border-radius: 12px;
  bottom: 42px;
  box-shadow: 0 20px 45px #000c;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  padding: 14px;
  position: absolute;
  right: 0;
  width: 330px;
  z-index: 3;
}
.backpacker-avatar {
  align-items: center;
  background: linear-gradient(145deg, #087dff, #064a91);
  border-radius: 50%;
  display: flex;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  width: 46px;
}
.backpacker-profile-card strong {
  display: block;
  font-size: 14px;
  margin-top: 3px;
}
.backpacker-profile-card p {
  color: var(--muted);
  font-size: 10px;
  margin: 2px 0 0;
}
.backpacker-profile-card button {
  background: #087dff;
  border: 0;
  border-radius: 4px;
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 10px 12px;
}
.backpacker-badge {
  background: #087dff;
  border-radius: 4px;
  box-shadow: 0 12px 30px #087dff55;
  font-size: 10px;
  font-weight: 800;
  left: 1%;
  letter-spacing: 1.2px;
  padding: 11px 14px;
  position: absolute;
  top: 70px;
  transform: rotate(-5deg);
  z-index: 4;
}
.garage-showcase {
  display: flex;
  justify-content: center;
  min-height: 650px;
  position: relative;
}
.garage-showcase:before {
  background: #087dff;
  border-radius: 50%;
  content: "";
  filter: blur(110px);
  height: 260px;
  opacity: 0.16;
  position: absolute;
  top: 160px;
  width: 260px;
}
.garage-showcase img {
  border: 1px solid #344555;
  border-radius: 28px;
  box-shadow: 0 35px 80px #000b;
  max-height: 680px;
  object-fit: cover;
  object-position: top;
  position: relative;
}
.garage-showcase-label {
  background: var(--blue);
  border-radius: 4px;
  color: white;
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 11px 14px;
  position: absolute;
  right: -24px;
  top: 90px;
  transform: rotate(5deg);
  z-index: 2;
}
.showcase {
  background: #0c1117;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.showcase-inner {
  align-items: center;
  display: grid;
  gap: 100px;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 850px;
}
.showcase-phone {
  align-self: end;
  display: flex;
  justify-content: center;
}
.phone-secondary {
  height: 670px;
  transform: translateY(45px) rotate(-2deg);
  width: 335px;
}
.route-screen {
  background: linear-gradient(#08121c, #070b10);
}
.screen-head {
  align-items: center;
  display: flex;
  font-size: 16px;
  justify-content: space-between;
  margin: 7px 0 28px;
}
.screen-head img {
  height: 43px;
  object-fit: contain;
  width: 76px;
}
.route-screen h4 {
  font-family: var(--heading);
  font-size: 28px;
  margin: 5px 0 12px;
  text-transform: uppercase;
}
.route-map {
  background: #101922;
  border: 1px solid #2a3946;
  border-radius: 9px;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.route-map:before,
.route-map:after {
  border: 1px solid #415262;
  border-radius: 50%;
  content: "";
  height: 280px;
  position: absolute;
  transform: rotate(25deg);
  width: 370px;
}
.route-map:before {
  left: -110px;
  top: -80px;
}
.route-map:after {
  left: 60px;
  top: -10px;
}
.route-line {
  border: 3px solid var(--blue);
  border-left-color: transparent;
  border-radius: 50%;
  height: 160px;
  left: 35px;
  position: absolute;
  top: 30px;
  transform: rotate(20deg);
  width: 210px;
}
.route-map i,
.route-map b {
  background: #fff;
  border: 4px solid var(--blue);
  border-radius: 50%;
  height: 14px;
  position: absolute;
  width: 14px;
}
.route-map i {
  left: 48px;
  top: 76px;
}
.route-map b {
  bottom: 44px;
  right: 42px;
}
.route-map span {
  background: #07101acc;
  border: 1px solid #087dff88;
  border-radius: 12px;
  bottom: 12px;
  font-size: 8px;
  padding: 6px 8px;
  position: absolute;
  right: 12px;
}
.route-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 14px 0;
}
.route-metrics div {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.route-metrics div:last-child {
  border: 0;
}
.route-metrics b {
  font-size: 15px;
}
.route-metrics small {
  color: var(--muted);
  font-size: 6px;
  margin-top: 2px;
}
.screen-section {
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  font-weight: 800;
  padding-bottom: 7px;
}
.stop {
  align-items: center;
  display: flex;
  gap: 10px;
  margin: 13px 0;
}
.stop i {
  align-items: center;
  background: #087dff22;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue-2);
  display: flex;
  font-size: 8px;
  height: 27px;
  justify-content: center;
  width: 27px;
}
.stop div {
  display: flex;
  flex-direction: column;
}
.stop b {
  font-size: 9px;
}
.stop small {
  color: var(--muted);
  font-size: 7px;
  margin-top: 3px;
}
.steps ol {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
}
.steps li {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 45px 1fr;
  padding: 24px 0;
}
.steps li > b {
  color: #47515c;
  font-family: var(--heading);
  font-size: 16px;
}
.steps li.active > b {
  color: var(--blue);
}
.steps h3 {
  font-family: var(--heading);
  font-size: 24px;
  margin: 0;
  text-transform: uppercase;
}
.steps li p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 7px 0 0;
  max-width: 520px;
}
.garage {
  align-items: center;
  display: grid;
  gap: 100px;
  grid-template-columns: 1fr 460px;
  padding-bottom: 130px;
  padding-top: 130px;
}
.garage-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
}
.check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.check-list li {
  border-top: 1px solid var(--line);
  font-size: 13px;
  padding: 15px 0 15px 28px;
  position: relative;
}
.check-list li:before {
  color: var(--blue);
  content: "✓";
  font-weight: 900;
  left: 2px;
  position: absolute;
}
.garage-card {
  background: radial-gradient(circle at 70% 20%, #0b3156, #10161d 45%);
  border: 1px solid #344555;
  border-radius: 14px;
  box-shadow: 0 35px 80px #0008;
  padding: 26px;
  position: relative;
}
.garage-card-top {
  display: flex;
  justify-content: space-between;
}
.garage-card-top small {
  font-weight: 800;
  letter-spacing: 1px;
}
.garage-card-top span {
  background: #087dff2c;
  border-radius: 15px;
  color: #62aeff;
  font-size: 8px;
  font-weight: 800;
  padding: 6px 9px;
}
.garage-card > img {
  height: 215px;
  margin: 0 auto;
  object-fit: contain;
}
.garage-card h3 {
  font-family: var(--heading);
  font-size: 28px;
  margin: 0;
  text-transform: uppercase;
}
.garage-card > p {
  color: var(--muted);
  font-size: 12px;
  margin: 4px 0 18px;
}
.bike-stats {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 15px 0;
}
.bike-stats div {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.bike-stats div:last-child {
  border: 0;
}
.bike-stats b {
  font-size: 17px;
}
.bike-stats small {
  color: var(--muted);
  font-size: 7px;
  margin-top: 3px;
}
.maintenance {
  align-items: center;
  background: #080e14;
  border-radius: 7px;
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
}
.maintenance > span {
  align-items: center;
  background: #087dff22;
  border-radius: 50%;
  color: var(--blue);
  display: flex;
  height: 35px;
  justify-content: center;
  width: 35px;
}
.maintenance div {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.maintenance b {
  font-size: 11px;
}
.maintenance small {
  color: #ffca28;
  font-size: 8px;
  margin-top: 3px;
}
.maintenance em {
  color: #ffca28;
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}
.membership {
  background: linear-gradient(120deg, #07111b, #0a1e32);
  border-bottom: 1px solid #203d59;
  border-top: 1px solid #203d59;
}
.membership-inner {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.8fr 1.2fr;
  padding-bottom: 110px;
  padding-top: 110px;
}
.membership-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.price {
  align-items: baseline;
  display: flex;
  margin: 27px 0;
}
.price strong {
  font-family: var(--heading);
  font-size: 57px;
}
.price span {
  color: var(--muted);
  font-size: 12px;
}
.primary-button {
  background: var(--blue);
  border-radius: 6px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  min-width: 190px;
  padding: 15px 18px;
  text-decoration: none;
  text-transform: uppercase;
}
.benefit-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.benefit-grid > div {
  background: #101b25;
  border: 1px solid #29445d;
  border-radius: 8px;
  padding: 24px;
}
.benefit-grid span {
  align-items: center;
  background: #087dff22;
  border: 1px solid #087dff77;
  border-radius: 50%;
  color: var(--blue-2);
  display: flex;
  height: 28px;
  justify-content: center;
  margin-bottom: 22px;
  width: 28px;
}
.benefit-grid b {
  font-family: var(--heading);
  font-size: 21px;
  text-transform: uppercase;
}
.benefit-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.faq {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.75fr 1.25fr;
  padding-bottom: 125px;
  padding-top: 125px;
}
.faq .section-heading {
  display: block;
}
.accordion details {
  border-top: 1px solid var(--line);
}
.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  cursor: pointer;
  font-family: var(--heading);
  font-size: 21px;
  font-weight: 700;
  list-style: none;
  padding: 22px 45px 22px 0;
  position: relative;
  text-transform: uppercase;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  color: var(--blue);
  font-family: var(--body);
  font-size: 25px;
  font-weight: 400;
  position: absolute;
  right: 5px;
  top: 18px;
  transition: 0.2s;
}
.accordion details[open] summary span {
  transform: rotate(45deg);
}
.accordion details p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
  max-width: 620px;
  padding: 0 45px 23px 0;
}
.download {
  padding-bottom: 110px;
}
.download-panel {
  align-items: center;
  background: linear-gradient(110deg, #111a24, #0b2036);
  border: 1px solid #25486b;
  border-radius: 14px;
  display: grid;
  gap: 60px;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
  padding: 50px 70px;
  position: relative;
}
.download-panel > img {
  border-radius: 26%;
  box-shadow: 0 25px 50px #0008;
  position: relative;
  width: 220px;
}
.download-panel > div:not(.download-glow) {
  position: relative;
}
.download-panel > div > p:not(.eyebrow) {
  color: var(--muted);
}
.download-glow {
  background: #087dff;
  border-radius: 50%;
  filter: blur(100px);
  height: 250px;
  left: 30px;
  opacity: 0.25;
  position: absolute;
  width: 250px;
}
.download .store-row {
  margin-top: 28px;
}
footer {
  background: #05070a;
  border-top: 1px solid var(--line);
}
.footer-main {
  display: grid;
  gap: 50px;
  grid-template-columns: 2fr repeat(3, 1fr);
  padding-bottom: 65px;
  padding-top: 65px;
}
.footer-brand img {
  height: 75px;
  object-fit: contain;
  object-position: left;
  width: 135px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.footer-main h3 {
  font-family: var(--heading);
  font-size: 15px;
  letter-spacing: 1px;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
}
.footer-main a {
  color: var(--muted);
  font-size: 11px;
  margin: 6px 0;
  text-decoration: none;
}
.footer-main a:hover {
  color: var(--blue-2);
}
.footer-bottom {
  border-top: 1px solid #161c23;
  color: #65707b;
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  padding-bottom: 24px;
  padding-top: 24px;
}
.footer-bottom a {
  color: #8f9aa5;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--blue-2);
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width: 900px) {
  .site-nav {
    background: #0b1017;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 28px;
    position: absolute;
    right: 0;
    top: 81px;
  }
  .site-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .eyebrow,
  .hero-copy .store-row,
  .hero-proof {
    justify-content: center;
  }
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-visual {
    margin-top: 10px;
  }
  .trust-strip div {
    padding: 0 18px;
  }
  .trust-strip span {
    display: none;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p:last-child {
    margin-top: 25px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-wide {
    grid-column: span 2;
  }
  .showcase-inner,
  .garage,
  .membership-inner,
  .faq {
    gap: 60px;
    grid-template-columns: 1fr 1fr;
  }
  .garage {
    grid-template-columns: 1fr;
  }
  .garage-card {
    margin: auto;
    max-width: 500px;
    width: 100%;
  }
  .download-panel {
    padding: 45px;
    grid-template-columns: 180px 1fr;
  }
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-main > div:last-child {
    grid-column: 2;
  }
}
@media (max-width: 640px) {
  body {
    touch-action: pan-y;
  }
  main,
  footer,
  .site-header,
  .nav-wrap {
    max-width: 100%;
    width: 100%;
  }
  .section-shell {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
  .nav-wrap {
    height: 70px;
    padding: 0 20px;
  }
  .brand img {
    height: 52px;
    width: 92px;
  }
  .site-nav {
    top: 69px;
  }
  .hero {
    justify-items: center;
    min-height: auto;
    padding-bottom: 70px;
    padding-top: 120px;
    width: 100%;
  }
  .hero:before,
  .hero:after {
    inset: 0 -20px;
  }
  .hero-proof {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
  }
  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 66px);
  }
  .hero-lead {
    font-size: 16px;
    line-height: 1.6;
    max-width: 34rem;
  }
  .hero-visual {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    min-height: 565px;
    transform: scale(0.9);
    transform-origin: top center;
    width: 100%;
  }
  .phone-main {
    height: 600px;
    max-width: calc(100vw - 64px);
  }
  .orbit-two {
    display: none;
  }
  .floating-stat {
    display: none;
  }
  .trust-strip {
    justify-content: space-around;
  }
  .trust-strip div {
    padding: 0 4px;
  }
  .trust-strip i {
    height: 20px;
  }
  .trust-strip strong {
    font-size: 15px;
  }
  .features {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card,
  .feature-wide {
    grid-column: auto;
    min-height: 290px;
  }
  .route-art {
    opacity: 0.35;
  }
  .mini-pills {
    bottom: 20px;
    left: 25px;
    right: auto;
  }
  .showcase-inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    padding-top: 80px;
  }
  .showcase-phone {
    align-self: center;
  }
  .phone-secondary {
    height: 620px;
    transform: translateY(45px) scale(0.9);
  }
  .garage,
  .membership-inner,
  .faq {
    grid-template-columns: 1fr;
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .download {
    padding-bottom: 70px;
  }
  .download-panel {
    grid-template-columns: 1fr;
    padding: 38px 24px;
    text-align: center;
  }
  .download-panel > img {
    margin: auto;
    width: 150px;
  }
  .download-panel .eyebrow,
  .download-panel .store-row {
    justify-content: center;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 40px;
    padding-top: 50px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-main > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 8px;
  }
  .store-button {
    min-width: 165px;
    position: relative;
    width: min(210px, 100%);
    z-index: 6;
  }
  .hero-copy .store-row {
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 6;
  }
  .feature-rail {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 35px;
  }
  .feature-stories {
    gap: 90px;
    margin-top: 80px;
  }
  .feature-story,
  .feature-story-reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: auto;
  }
  .feature-story-reverse .feature-visual,
  .feature-story-reverse .feature-copy {
    order: initial;
  }
  .feature-visual {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    min-height: 535px;
    width: 100%;
  }
  .feature-visual-pair .mock-screen {
    max-height: 510px;
    width: 245px;
  }
  .feature-visual-pair .mock-screen-back {
    left: -18px;
  }
  .feature-visual-pair .mock-screen-front {
    right: -18px;
  }
  .feature-visual-single .mock-screen {
    max-height: 560px;
    max-width: 88%;
  }
  .backpackers-visual {
    min-height: 570px;
  }
  .backpackers-map-card {
    height: 520px;
  }
  .backpacker-profile-card {
    bottom: 28px;
    max-width: 88%;
    right: -8px;
  }
  .screen-accent {
    left: -8px;
    top: 70px;
  }
  .feature-copy:before {
    font-size: 64px;
    top: -46px;
  }
  .garage-showcase {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    min-height: 570px;
  }
  .garage-showcase img {
    max-height: 580px;
    max-width: 92%;
  }
  .garage-showcase-label {
    right: -4px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .feature-rail {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-stories {
    gap: 100px;
  }
  .feature-story {
    gap: 45px;
    grid-template-columns: 1fr 1fr;
  }
  .feature-visual-pair .mock-screen {
    width: 240px;
  }
}

body.modal-open {
  overflow: hidden;
}

.store-alert {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  visibility: hidden;
  z-index: 2000;
}

.store-alert.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.store-alert-backdrop {
  background: rgba(0, 4, 10, 0.88);
  border: 0;
  cursor: default;
  inset: 0;
  padding: 0;
  position: absolute;
}

.store-alert-panel {
  align-items: center;
  background: linear-gradient(145deg, #101923, #080d13 72%);
  border: 1px solid rgba(73, 137, 193, 0.42);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 111, 255, 0.25);
  display: flex;
  flex-direction: column;
  max-width: 420px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
  width: 100%;
}

.store-alert.open .store-alert-panel {
  transform: translateY(0) scale(1);
}

.store-alert-accent {
  background: linear-gradient(90deg, #0a84ff, #41a5ff);
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.store-alert-panel > img {
  height: 54px;
  object-fit: contain;
  width: 132px;
}

.store-alert-icon {
  align-items: center;
  background: rgba(10, 132, 255, 0.12);
  border: 1px solid rgba(65, 165, 255, 0.46);
  border-radius: 50%;
  display: flex;
  height: 64px;
  justify-content: center;
  margin: 12px 0 16px;
  width: 64px;
}

.store-alert-icon svg {
  fill: #53aaff;
  height: 31px;
  width: 28px;
}

.store-alert-icon svg[hidden] {
  display: none;
}

.store-alert-panel .eyebrow {
  color: #53aaff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 7px;
}

.store-alert-panel h2 {
  color: #fff;
  font-size: clamp(1.45rem, 5vw, 1.9rem);
  margin: 0;
}

.store-alert-message {
  color: #aebdca;
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 10px 0 22px;
  max-width: 330px;
}

.store-alert-action {
  background: #0a84ff;
  border: 1px solid #41a5ff;
  border-radius: 9px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  min-height: 46px;
  transition: background 160ms ease, transform 160ms ease;
  width: 100%;
}

.store-alert-action:hover,
.store-alert-action:focus-visible {
  background: #2593ff;
  outline: 2px solid rgba(83, 170, 255, 0.45);
  outline-offset: 2px;
  transform: translateY(-1px);
}
