:root {
  --ink: #101214;
  --paper: #f4f6f1;
  --muted: #6f756f;
  --line: rgba(16, 18, 20, 0.14);
  --green: #8cd102;
  --blue: #67d8ff;
  --orange: #ffb347;
  --red: #ff654f;
  --dark: #171b1e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f9f4 0%, var(--paper) 34%, #eef3ed 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--green);
  color: #111;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 20;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(140, 209, 2, 0.72);
}

.hero {
  min-height: 88vh;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.86), rgba(8, 10, 10, 0.42) 48%, rgba(8, 10, 10, 0.12)),
    url("https://static.tildacdn.com/tild3635-3539-4637-b262-316638396364/2024-05-23_16-46-17.JPG") center / cover;
  background-position: center calc(50% + var(--hero-shift, 0px));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0), var(--paper));
  pointer-events: none;
}

.nav {
  width: 100%;
  margin: 0;
  padding: 5px max(22px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(7, 8, 9, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: 10;
}

.nav.is-scrolled {
  background: rgba(7, 8, 9, 0.98);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.brand,
.nav-links,
.hero-actions,
.hero-strip,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 208px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 3px 10px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.4));
  transition: transform 180ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.03);
}

.nav-links {
  gap: 54px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 900;
  padding: 0;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--green);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
}

.nav-cta {
  background: rgba(181, 255, 61, 0.16);
  border-color: rgba(181, 255, 61, 0.8);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: #101214;
  box-shadow: 0 12px 34px rgba(140, 209, 2, 0.26);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 90px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.eyebrow {
  color: var(--green);
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-primary {
  background: var(--green);
  color: #111;
  box-shadow: 0 16px 42px rgba(140, 209, 2, 0.22);
}

.button-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.button {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-strip span {
  background: rgba(16, 18, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, border-color 180ms ease;
  animation: floatBadge 4.8s ease-in-out infinite;
}

.hero-strip span:first-child {
  background: var(--green);
  border-color: var(--green);
  color: #101214;
}

.hero-strip span:nth-child(2) {
  animation-delay: 0.25s;
}

.hero-strip span:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-strip span:nth-child(4) {
  animation-delay: 0.75s;
}

.hero-strip span:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.56);
}

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

.section-head {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-kicker {
  color: #4a7c10;
}

.intro-grid,
.format-grid,
.route-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.format-card,
.route-card,
.video-card {
  background: #fff;
  border: 1px solid var(--line);
}

.feature-card {
  min-height: 235px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card::before,
.format-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--green);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.feature-card:hover,
.format-card:hover,
.route-card:hover,
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 18, 20, 0.22);
  box-shadow: 0 20px 58px rgba(16, 18, 20, 0.14);
}

.feature-card:hover::before,
.format-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.number {
  display: inline-block;
  color: var(--muted);
  margin-bottom: 26px;
  font-weight: 900;
}

.feature-card p,
.format-card p,
.route-card p,
.copy-panel p,
.terms p,
.video-card p,
.final-cta p {
  color: var(--muted);
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.media-panel {
  min-height: 520px;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.media-panel:hover {
  transform: scale(1.012);
  box-shadow: 0 24px 70px rgba(16, 18, 20, 0.16);
}

.base-photo {
  background-image: url("./assets/bikelevel-base.png");
  background-position: center;
}

.logistics-photo {
  background-image: url("https://static.tildacdn.com/tild6163-3961-4339-a632-656635353638/2024-07-16_14-01-57.JPG");
}

.copy-panel {
  background: var(--dark);
  color: #fff;
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.copy-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--green);
  box-shadow: 0 0 26px rgba(140, 209, 2, 0.34);
}

.copy-panel > * {
  position: relative;
  z-index: 1;
}

.copy-panel .section-kicker {
  color: var(--green);
}

.copy-panel p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

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

.fact-grid div,
.terms-list div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 14px;
}

.fact-grid strong,
.terms-list strong {
  display: block;
  font-size: 18px;
}

.fact-grid span,
.terms-list span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  margin-top: 4px;
}

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

.format-card {
  min-height: 245px;
  padding: 24px;
  border-top-width: 7px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.accent-green {
  border-top-color: var(--green);
}

.accent-blue {
  border-top-color: var(--blue);
}

.accent-orange {
  border-top-color: var(--orange);
}

.accent-red {
  border-top-color: var(--red);
}

.routes {
  width: min(1320px, calc(100% - 32px));
}

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

.route-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.route-card img {
  aspect-ratio: 1.28;
  object-fit: cover;
  transition: transform 420ms ease;
}

.route-card:hover img {
  transform: scale(1.06);
}

.route-card div {
  padding: 20px;
}

.route-card span,
.video-card span {
  display: block;
  color: #4a7c10;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.inverse .copy-panel {
  background: #202a2d;
}

.check-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.check-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 12px 0;
}

.terms {
  width: 100%;
  background: #101417;
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.terms::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 45%, rgba(140, 209, 2, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 46%);
  pointer-events: none;
}

.terms-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.terms .section-kicker {
  color: var(--green);
}

.terms p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.terms-list {
  display: grid;
  gap: 22px;
}

.terms-list strong {
  font-size: 28px;
}

.proof-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.video-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82)),
    url("https://static.tildacdn.com/tild6165-3664-4235-b065-343132656661/cX1Z6Dg-7ubr94QDATMb.jpg") center / cover;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.video-card.muted {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82)),
    url("https://static.tildacdn.com/tild6134-3261-4165-b837-353363623432/2024-08-17_11-14-45.JPG") center / cover;
}

.video-card span {
  color: var(--green);
}

.video-card p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta {
  text-align: center;
  max-width: 900px;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms ease var(--reveal-delay, 0ms);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatBadge {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    position: absolute;
    padding: 10px 12px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding-top: 54px;
  }

  .intro-grid,
  .format-grid,
  .route-grid,
  .split,
  .terms-inner,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .media-panel {
    min-height: 360px;
  }

  .copy-panel {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 22px, 1180px);
    padding-top: 14px;
  }

  .brand-logo {
    width: 142px;
    height: 46px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content,
  .hero-strip,
  .section,
  .footer {
    width: min(100% - 22px, 1180px);
  }

  .hero-content {
    padding-bottom: 62px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .feature-card,
  .format-card,
  .route-card div,
  .video-card {
    padding: 20px;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .terms-inner {
    width: min(100% - 22px, 1180px);
    padding: 64px 0;
  }

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