: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;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f9f4 0%, var(--paper) 34%, #eef3ed 100%);
  font-family: Inter, Manrope, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: visible;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::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;
  width: 100%;
  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: 156px;
  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: clamp(24px, 3vw, 44px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 900;
  padding: 0;
}

.nav-contact-mobile {
  display: none;
}

.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 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  background: rgba(140, 209, 2, 0.08);
  border-color: var(--green);
  color: #fff;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(140, 209, 2, 0.22), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events: none;
}

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

.nav-cta:hover::before {
  transform: translateX(120%);
}

.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 22px;
  z-index: 12;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(140, 209, 2, 0.65);
  border-radius: 50%;
  color: #101214;
  background: rgba(140, 209, 2, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #fff;
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
}

.hero-title {
  width: min(720px, 100%);
  max-width: none;
  margin: 0 0 16px;
  line-height: 1;
  overflow: visible;
  position: relative;
}

.hero-title-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  contain: layout paint;
}

.hero-title-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

#heroBrushTip {
  filter: drop-shadow(0 0 8px rgba(140, 209, 2, 0.44));
}

#heroBrushSplash {
  filter: drop-shadow(0 0 10px rgba(140, 209, 2, 0.4));
  transform-origin: center;
}

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.24);
}

.button-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(255, 255, 255, 0.18);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(17, 20, 22, 0.42);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

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

.hero-strip {
  width: fit-content;
  max-width: min(1180px, calc(100% - 32px));
  margin: 0 auto 70px;
  padding: 13px 18px;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(140, 209, 2, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(10, 12, 13, 0.9), rgba(28, 35, 36, 0.78)),
    radial-gradient(circle at 12% 20%, rgba(140, 209, 2, 0.24), transparent 38%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.hero-strip span {
  position: relative;
  padding: 7px 18px 7px 0;
  margin-right: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition: color 180ms ease, transform 180ms ease;
}

.hero-strip span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(140, 209, 2, 0.72);
}

.hero-strip span:last-child {
  margin-right: 0;
  padding-right: 0;
}

.hero-strip span:last-child::after {
  display: none;
}

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

.hero-strip span:hover {
  color: #fff;
  transform: translateY(-2px);
}

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

.section-head {
  max-width: none;
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
}

.section-head h2 {
  grid-column: 1;
  grid-row: 1;
  max-width: 940px;
  margin-bottom: 0;
}

.section-head .section-kicker {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  margin: 5px 0 0;
  color: var(--green);
  background: rgba(8, 10, 11, 0.92);
  border: 1px solid rgba(140, 209, 2, 0.34);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

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

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

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

.intro {
  width: 100%;
  margin: 0;
  padding: 108px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #101417;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 23, 0.98), rgba(16, 20, 23, 0.82) 58%, rgba(16, 20, 23, 0.96)),
    radial-gradient(circle at 16% 12%, rgba(140, 209, 2, 0.22), transparent 30%),
    url("https://static.tildacdn.com/tild3635-3539-4637-b262-316638396364/2024-05-23_16-46-17.JPG") center / cover;
  pointer-events: none;
}

.intro::after {
  content: "";
  position: absolute;
  left: max(16px, calc((100vw - 1180px) / 2));
  right: max(16px, calc((100vw - 1180px) / 2));
  top: 0;
  height: 4px;
  background: var(--green);
  box-shadow: 0 0 28px rgba(140, 209, 2, 0.42);
}

.intro .section-head,
.intro .intro-grid {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.intro .section-head {
  max-width: none;
  margin-bottom: 38px;
  text-align: left;
  position: relative;
}

.intro .section-kicker {
  position: absolute;
  top: 2px;
  right: 0;
  color: var(--green);
  background: rgba(8, 10, 11, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), 0 0 24px rgba(140, 209, 2, 0.12);
}

.intro h2 {
  grid-column: 1 / -1;
  color: #fff;
  max-width: 1120px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  text-wrap: balance;
}

.feature-card,
.format-card,
.route-card,
.video-card,
.audience-card,
.faq article {
  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;
}

.intro .feature-card {
  min-height: 312px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(31, 38, 40, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.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;
}

.intro .feature-card::before {
  border-top: 0;
  opacity: 0.3;
  transform: scale(1.03);
  background:
    linear-gradient(180deg, rgba(12, 14, 15, 0.04), rgba(12, 14, 15, 0.88)),
    var(--feature-image) center / cover;
  z-index: -2;
  transition: opacity 260ms ease, transform 360ms ease, filter 260ms ease;
}

.intro .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(140, 209, 2, 0.18), transparent 42%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  z-index: -1;
  pointer-events: none;
}

.intro .feature-card:nth-child(1) {
  --feature-image: url("https://static.tildacdn.com/tild6165-3664-4235-b065-343132656661/cX1Z6Dg-7ubr94QDATMb.jpg");
}

.intro .feature-card:nth-child(2) {
  --feature-image: url("./assets/bikelevel-base.png");
}

.intro .feature-card:nth-child(3) {
  --feature-image: url("https://static.tildacdn.com/tild3965-3331-4235-b939-646630383335/C119600_39_15_33Stil.jpg");
}

.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);
}

.intro .feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(140, 209, 2, 0.54);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(140, 209, 2, 0.2);
}

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

.intro .feature-card:hover::before {
  opacity: 0.78;
  transform: scale(1.09);
  filter: saturate(1.14) contrast(1.04);
}

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

.intro .number {
  width: fit-content;
  margin-bottom: auto;
  padding: 7px 10px;
  color: #101214;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(140, 209, 2, 0.25);
}

.intro .feature-card h3 {
  max-width: 92%;
  color: #fff;
  font-size: 24px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
}

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

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

.audience {
  width: 100%;
  margin: 0;
  padding: 110px 0 116px;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8faf6 0%, #eef3ed 100%);
  isolation: isolate;
}

.audience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(248, 250, 246, 0.94), rgba(248, 250, 246, 0.88) 44%, rgba(248, 250, 246, 0.96)),
    url("./assets/base-community-table.jpg") center / cover;
  opacity: 0.42;
  transform: scale(1.03);
  filter: saturate(0.72) contrast(0.96);
}

.audience::after {
  content: "";
  position: absolute;
  left: max(16px, calc((100vw - 1180px) / 2));
  right: max(16px, calc((100vw - 1180px) / 2));
  top: 0;
  z-index: -1;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(103, 216, 255, 0.74), rgba(255, 179, 71, 0.74));
  box-shadow: 0 0 34px rgba(140, 209, 2, 0.38);
}

.audience .section-head,
.audience .audience-grid {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.audience .section-head {
  margin-bottom: 32px;
  align-items: end;
}

.audience .section-head h2 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: none;
}

.audience .section-head .section-kicker {
  color: #101214;
  background: rgba(140, 209, 2, 0.94);
  border-color: rgba(16, 18, 20, 0.08);
  box-shadow: 0 16px 42px rgba(16, 18, 20, 0.1);
}

.audience .audience-grid {
  gap: 16px;
}

.audience-card,
.faq article {
  padding: 24px;
  min-height: 220px;
  border-radius: 10px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.audience-card {
  min-height: 310px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  background: rgba(16, 20, 22, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 58px rgba(16, 18, 20, 0.18);
  isolation: isolate;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(12, 14, 15, 0.02), rgba(12, 14, 15, 0.68)),
    var(--audience-image) center / cover;
  opacity: 0.72;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.04);
  transition: opacity 260ms ease, transform 420ms ease, filter 260ms ease;
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(140, 209, 2, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(10, 12, 13, 0), rgba(10, 12, 13, 0.58));
  opacity: 0.82;
  pointer-events: none;
}

.audience-card:nth-child(1) {
  --audience-image: url("./assets/audience-velobloggers.jpg");
}

.audience-card:nth-child(2) {
  --audience-image: url("./assets/audience-creators-local.jpg");
}

.audience-card:nth-child(3) {
  --audience-image: url("./assets/audience-coaches-guides.jpg");
}

.audience-card:nth-child(4) {
  --audience-image: url("./assets/audience-clubs-schools.jpg");
}

.audience-card h3 {
  max-width: 92%;
  color: #fff;
  font-size: 23px;
  line-height: 1.08;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.46);
}

.audience-card p {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
}

.audience-card:hover,
.faq article:hover {
  transform: translateY(-5px);
  border-color: rgba(140, 209, 2, 0.42);
  box-shadow: 0 18px 50px rgba(16, 18, 20, 0.1);
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(140, 209, 2, 0.58);
  box-shadow: 0 28px 72px rgba(16, 18, 20, 0.24), 0 0 0 1px rgba(140, 209, 2, 0.14);
}

.audience-card:hover::before {
  opacity: 0.86;
  filter: saturate(1) contrast(1.04);
  transform: scale(1.09);
}

.handoff {
  padding-top: 38px;
}

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

.handoff-grid div {
  min-height: 180px;
  padding: 22px;
  color: #fff;
  background: #172023;
  border-top: 4px solid var(--green);
  border-radius: 10px;
  box-shadow: 0 16px 44px rgba(16, 18, 20, 0.1);
}

.handoff-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.handoff-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.partner-flow {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 108px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 15, 16, 0.96), rgba(12, 15, 16, 0.78) 50%, rgba(12, 15, 16, 0.94)),
    url("./assets/base-truck-mountains.jpg") center / cover;
  isolation: isolate;
}

.partner-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.44)),
    radial-gradient(circle at 14% 18%, rgba(140, 209, 2, 0.22), transparent 34%);
  pointer-events: none;
}

.partner-flow::after {
  content: "";
  position: absolute;
  left: max(16px, calc((100vw - 1180px) / 2));
  right: max(16px, calc((100vw - 1180px) / 2));
  top: 0;
  height: 4px;
  background: var(--green);
  box-shadow: 0 0 30px rgba(140, 209, 2, 0.42);
}

.partner-flow .section-head,
.partner-flow .flow-list,
.partner-flow .flow-note {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.partner-flow .section-head {
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.36fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 36px;
}

.partner-flow .section-head h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
}

.partner-flow .section-head .section-kicker {
  min-height: 42px;
  padding: 0 18px;
  justify-self: end;
  color: var(--green);
  background: rgba(8, 10, 11, 0.76);
  border: 1px solid rgba(140, 209, 2, 0.5);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34), 0 0 28px rgba(140, 209, 2, 0.13);
  font-size: 12px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: flow;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 11, 12, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.flow-list li {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 24px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-list li:last-child {
  border-right: 0;
}

.flow-list li::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 76px;
  height: 2px;
  background: rgba(140, 209, 2, 0.42);
  transform: translateX(42px);
}

.flow-list li:last-child::after {
  display: none;
}

.flow-list span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  position: relative;
  z-index: 1;
  color: #101214;
  background: var(--green);
  border-radius: 12px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(140, 209, 2, 0.26);
}

.flow-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.46;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

.flow-note {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

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

.faq {
  width: 100%;
  margin: 0;
  padding: 102px 0 108px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, #101417 0%, #182123 100%);
  isolation: isolate;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 16, 17, 0.96), rgba(13, 16, 17, 0.82) 48%, rgba(13, 16, 17, 0.94)),
    url("./assets/base-exterior-night.jpg") center / cover;
  opacity: 0.9;
  transform: scale(1.04);
}

.faq::after {
  content: "";
  position: absolute;
  left: max(16px, calc((100vw - 1180px) / 2));
  right: max(16px, calc((100vw - 1180px) / 2));
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(140, 209, 2, 0.95), rgba(103, 216, 255, 0.7));
  box-shadow: 0 0 30px rgba(140, 209, 2, 0.34);
}

.faq .section-head,
.faq .faq-grid {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.faq .section-head {
  margin-bottom: 32px;
  align-items: end;
}

.faq .section-head h2 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.42);
}

.faq .section-head .section-kicker {
  color: var(--green);
  background: rgba(8, 10, 11, 0.78);
  border-color: rgba(140, 209, 2, 0.52);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34), 0 0 28px rgba(140, 209, 2, 0.13);
}

.faq-grid {
  gap: 14px;
  counter-reset: faq;
}

.faq article {
  min-height: 176px;
  padding: 24px 24px 24px 86px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  counter-increment: faq;
}

.faq article::before {
  content: counter(faq, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 25px;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #101214;
  background: var(--green);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(140, 209, 2, 0.24);
}

.faq article::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 86px;
  height: 2px;
  background: linear-gradient(90deg, rgba(140, 209, 2, 0.7), transparent);
  opacity: 0.56;
}

.faq article h3 {
  max-width: 720px;
  color: #fff;
  font-size: 21px;
  line-height: 1.18;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.faq article p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.faq article:hover {
  border-color: rgba(140, 209, 2, 0.52);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(140, 209, 2, 0.14);
}

.intro .feature-card p {
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

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

.base-showcase {
  gap: 24px;
}

.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;
}

.base-slider {
  min-height: 560px;
  background: #12191b;
  isolation: isolate;
}

.base-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 10, 11, 0) 46%, rgba(7, 10, 11, 0.78) 100%),
    radial-gradient(circle at 18% 18%, rgba(140, 209, 2, 0.18), transparent 28%);
  pointer-events: none;
}

.base-track {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.base-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
  transition: opacity 440ms ease, transform 820ms ease;
}

.base-track img.is-active {
  opacity: 1;
  transform: scale(1);
}

.base-slider .slider-prev {
  left: 22px;
}

.base-slider .slider-next {
  right: 22px;
}

.base-dots {
  bottom: 22px;
}

.base-copy {
  min-height: 560px;
}

.base-copy-slide {
  display: none;
}

.base-copy-slide.is-active {
  display: block;
  animation: baseCopyIn 360ms ease both;
}

@keyframes baseCopyIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.logistics-section {
  width: min(1180px, calc(100% - 32px));
}

.logistics-block {
  min-height: 620px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.53fr) minmax(0, 0.47fr);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(140, 209, 2, 0.12), transparent 34%),
    #172023;
  border-left: 6px solid var(--green);
  box-shadow: 0 24px 70px rgba(16, 18, 20, 0.14);
  isolation: isolate;
}

.logistics-block::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 44%;
  width: 28%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #172023 0%, rgba(23, 32, 35, 0.84) 42%, rgba(23, 32, 35, 0) 100%);
}

.logistics-content {
  position: relative;
  z-index: 3;
  padding: clamp(32px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.logistics-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.logistics-slider {
  position: relative;
  z-index: 1;
  min-height: 620px;
  margin-left: -52px;
  padding: 22px 22px 22px 0;
  overflow: hidden;
}

.logistics-track {
  position: relative;
  height: 100%;
  min-height: 576px;
  overflow: hidden;
  border-radius: 10px;
  background: #101719;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.logistics-track::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  z-index: 2;
  background: linear-gradient(90deg, rgba(23, 32, 35, 0.7), rgba(23, 32, 35, 0));
  pointer-events: none;
}

.logistics-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
  transition: opacity 420ms ease, transform 680ms ease;
}

.logistics-track img.is-active {
  opacity: 1;
  transform: scale(1);
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 12, 13, 0.78);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.slider-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #101214;
  transform: translateY(-50%) scale(1.04);
}

.slider-prev {
  left: 58px;
}

.slider-next {
  right: 44px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10, 12, 13, 0.58);
  backdrop-filter: blur(10px);
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots button.is-active {
  width: 24px;
  background: var(--green);
}

.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;
}

.formats {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 112px 0 118px;
  scroll-margin-top: 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0d1113;
  isolation: isolate;
}

.formats::before {
  content: "";
  position: absolute;
  inset: 0 -48px;
  background:
    linear-gradient(90deg, rgba(9, 12, 13, 0.98) 0%, rgba(9, 12, 13, 0.7) 50%, rgba(9, 12, 13, 0.94) 100%),
    linear-gradient(180deg, rgba(9, 12, 13, 0.48) 0%, rgba(9, 12, 13, 0.12) 45%, rgba(9, 12, 13, 0.82) 100%),
    url("./assets/formats-mountains-bg.jpg") center / cover;
  transform: scale(1.02);
  z-index: -2;
}

.formats::after {
  content: "";
  position: absolute;
  inset: 0 -48px;
  background:
    radial-gradient(circle at 24% 18%, rgba(140, 209, 2, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(140, 209, 2, 0.16), transparent 2px, transparent calc(100% - 2px), rgba(140, 209, 2, 0.12));
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.formats .section-head,
.formats .format-grid {
  width: min(1062px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.formats .section-head {
  margin-bottom: 34px;
}

.formats .section-head h2 {
  color: #fff;
  max-width: 900px;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.48);
}

.formats .section-head .section-kicker {
  color: var(--green);
  background: rgba(8, 10, 11, 0.82);
  border-color: rgba(140, 209, 2, 0.46);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), 0 0 26px rgba(140, 209, 2, 0.12);
}

.format-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.format-card {
  --accent: var(--green);
  min-height: 360px;
  padding: 30px;
  border-top-width: 7px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(31, 38, 40, 0.94), rgba(18, 22, 24, 0.88)),
    radial-gradient(circle at 18% 0%, rgba(140, 209, 2, 0.28), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 0;
  border-radius: 10px;
  box-shadow: 0 16px 44px rgba(16, 18, 20, 0.1);
  color: #fff;
  isolation: isolate;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.formats .format-card {
  min-height: 326px;
  background: rgba(18, 22, 24, 0.74);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(2px);
}

.format-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 14, 15, 0.12), rgba(12, 14, 15, 0.78)),
    var(--format-image) center / cover;
  border-top: 0;
  opacity: 0.48;
  transform: scale(1.04);
  transition: opacity 260ms ease, transform 360ms ease, filter 260ms ease;
  pointer-events: none;
  z-index: -2;
}

.formats .format-card::before {
  background:
    linear-gradient(180deg, rgba(8, 10, 11, 0.1), rgba(8, 10, 11, 0.78)),
    var(--format-image) center / cover;
  opacity: 0.62;
}

.format-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(90deg, rgba(140, 209, 2, 0.18), transparent 58%);
  opacity: 0.72;
  pointer-events: none;
  z-index: -1;
}

.formats .format-card::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 24%, transparent), transparent 58%),
    linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.18));
  opacity: 0.82;
}

.format-card h3 {
  max-width: 92%;
  margin-bottom: 12px;
  color: #fff;
  font-size: 28px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.44);
  transition: opacity 220ms ease, transform 260ms ease;
}

.format-card p {
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
  transition: opacity 220ms ease, transform 260ms ease;
}

.format-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent) 74%, white 12%);
  box-shadow: 0 24px 64px rgba(16, 18, 20, 0.18), 0 0 0 1px color-mix(in srgb, var(--accent) 54%, transparent);
}

.format-card:hover::before {
  background: var(--format-image) center / cover;
  opacity: 1;
  transform: scale(1.02);
  filter: none;
}

.format-card:hover::after {
  opacity: 0;
}

.format-card:hover h3,
.format-card:hover p,
.format-card.is-photo-open h3,
.format-card.is-photo-open p {
  opacity: 0;
  transform: translateY(18px);
}

.format-card.is-photo-open::before {
  background: var(--format-image) center / cover;
  opacity: 1;
  transform: scale(1.02);
  filter: none;
}

.format-card.is-photo-open::after {
  opacity: 0;
}

.accent-green {
  --accent: var(--green);
}

.accent-blue {
  --accent: var(--blue);
}

.accent-orange {
  --accent: var(--orange);
}

.accent-red {
  --accent: var(--red);
}

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

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

.route-card {
  min-height: 372px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #111719;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  isolation: isolate;
  box-shadow: 0 16px 44px rgba(16, 18, 20, 0.1);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.route-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.route-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 520ms ease, opacity 260ms ease, filter 260ms ease;
  z-index: -2;
}

.route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(140, 209, 2, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(8, 10, 11, 0), rgba(8, 10, 11, 0.82) 80%),
    linear-gradient(90deg, rgba(8, 10, 11, 0.22), transparent 56%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 240ms ease;
}

.route-card:hover {
  transform: translateY(-7px);
  border-color: rgba(140, 209, 2, 0.42);
  box-shadow: 0 24px 64px rgba(16, 18, 20, 0.18), 0 0 0 1px rgba(140, 209, 2, 0.16);
}

.route-card:hover img {
  opacity: 1;
  filter: none;
  transform: scale(1.035);
}

.route-card div {
  width: 100%;
  min-height: 190px;
  padding: 24px;
  position: relative;
  z-index: 1;
  transition: opacity 220ms ease, transform 260ms ease;
}

.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;
}

.route-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #101214;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(140, 209, 2, 0.22);
}

.route-card h3 {
  color: #fff;
  font-size: 26px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.route-card p {
  color: rgba(255, 255, 255, 0.76);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}

.route-card:hover::after,
.route-card.is-photo-open::after {
  opacity: 0;
}

.route-card:hover div,
.route-card.is-photo-open div {
  opacity: 0;
  transform: translateY(22px);
}

.route-card.is-photo-open img {
  opacity: 1;
  filter: none;
  transform: scale(1.035);
}

.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("./assets/blackseatrails.png") 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 {
  display: grid;
  grid-template-columns: minmax(190px, 300px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 82px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand span {
  color: var(--ink);
  font-weight: 800;
}

.footer-brand small {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.footer-socials a,
.footer-manager {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(16, 18, 20, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.footer-socials a:hover,
.footer-manager:hover {
  border-color: rgba(140, 209, 2, 0.78);
  background: rgba(140, 209, 2, 0.12);
  transform: translateY(-2px);
}

.footer-socials a > span:last-child,
.footer-manager > span:last-child {
  display: grid;
  gap: 1px;
  line-height: 1.12;
}

.footer-socials strong,
.footer-manager strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.footer-socials small,
.footer-manager small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.footer-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  color: #101214;
  background: var(--green);
}

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

.footer-socials a:first-child .footer-icon svg {
  fill: currentColor;
  stroke: none;
}

.footer-manager {
  border-color: rgba(140, 209, 2, 0.5);
  background: rgba(140, 209, 2, 0.14);
}

.footer-manager .footer-icon {
  color: var(--green);
  background: #101214;
}

.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);
}

.js-ready .feature-card.is-visible:hover,
.js-ready .video-card.is-visible:hover {
  transform: translateY(-6px);
}

.js-ready .route-card.is-visible:hover {
  transform: translateY(-7px);
}

.js-ready .intro .feature-card.is-visible:hover {
  transform: translateY(-8px);
}

.js-ready .format-card.is-visible:hover {
  transform: translateY(-7px);
}

@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: center;
    position: fixed;
    padding: 8px 14px;
  }

  .nav-links {
    display: none;
  }

  .nav-contact-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(140, 209, 2, 0.58);
    border-radius: 8px;
    color: #fff;
    background: rgba(140, 209, 2, 0.08);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-head .section-kicker {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-top: 0;
  }

  .section-head h2 {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
  }

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

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

  .audience .section-head {
    align-items: start;
  }

  .audience .section-head h2 {
    font-size: clamp(34px, 6vw, 52px);
  }

  .partner-flow .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .partner-flow .section-head .section-kicker {
    justify-self: start;
    min-height: 42px;
    padding: 0 18px;
    color: var(--green);
    background: rgba(8, 10, 11, 0.78);
    border: 1px solid rgba(140, 209, 2, 0.48);
    border-radius: 999px;
  }

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

  .flow-list li:nth-child(2) {
    border-right: 0;
  }

  .flow-list li:nth-child(2)::after {
    display: none;
  }

  .logistics-block {
    grid-template-columns: 1fr;
    min-height: 0;
    border-left: 0;
    border-top: 5px solid var(--green);
  }

  .logistics-block::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: 210px;
    width: auto;
    height: 160px;
    background: linear-gradient(180deg, #172023 0%, rgba(23, 32, 35, 0.78) 40%, rgba(23, 32, 35, 0) 100%);
  }

  .logistics-slider {
    min-height: 220px;
    margin-left: 0;
    padding: 0 22px 22px;
  }

  .logistics-track {
    min-height: 260px;
  }

  .slider-next {
    right: 40px;
  }

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

  .base-slider,
  .base-copy {
    min-height: auto;
  }

  .base-slider {
    aspect-ratio: 4 / 3;
  }

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

@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav {
    width: 100%;
    min-height: 88px;
    padding: 8px 14px;
    gap: 12px;
    overflow: visible;
  }

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

  .nav-contact-mobile {
    position: fixed;
    top: 23px;
    right: 114px;
    z-index: 11;
    min-height: 40px;
    padding: 0 11px;
    font-size: 12px;
  }

  .nav-cta {
    position: fixed;
    top: 20px;
    right: 14px;
    z-index: 11;
    flex: 0 0 auto;
    width: 92px;
    min-height: 46px;
    padding: 0 12px;
    font-size: 0;
    white-space: nowrap;
  }

  .nav-cta::after {
    content: "Заявка";
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 13px;
  }

  .nav-cta:hover::after {
    color: #101214;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    background-position: 57% center;
  }

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

  .hero-content {
    padding: 126px 0 30px;
  }

  .hero-content .eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.35;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(34px, 8.8vw, 40px);
    line-height: 1.04;
  }

  .hero-title {
    width: min(100%, 390px);
    margin-bottom: 18px;
  }

  .hero-title-text {
    width: 1px;
    height: 1px;
  }

  .hero-lead {
    max-width: 340px;
    font-size: 20px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 64px;
    font-size: 16px;
  }

  .hero-strip {
    width: calc(100% - 28px);
    max-width: none;
    gap: 0;
    margin-bottom: 30px;
    padding: 12px 14px;
    justify-content: center;
    border-radius: 10px;
  }

  .hero-strip span {
    padding: 6px 12px 6px 0;
    margin-right: 12px;
    font-size: 12px;
  }

  .section {
    padding: 64px 0;
  }

  .intro {
    width: 100%;
    padding: 72px 0;
  }

  .intro .section-head,
  .intro .intro-grid {
    width: min(100% - 28px, 1180px);
  }

  .intro .section-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .intro .section-kicker {
    position: static;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 16px;
  }

  .intro .feature-card {
    min-height: 280px;
  }

  .audience {
    width: 100%;
    padding: 72px 0;
  }

  .audience .section-head,
  .audience .audience-grid {
    width: min(100% - 28px, 1180px);
  }

  .audience .section-head {
    margin-bottom: 28px;
  }

  .audience .section-head h2 {
    font-size: 36px;
    line-height: 1.02;
  }

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

  .audience-card {
    min-height: 290px;
  }

  .partner-flow {
    width: 100%;
    padding: 72px 0;
    background-position: 62% center;
  }

  .partner-flow .section-head,
  .partner-flow .flow-list,
  .partner-flow .flow-note {
    width: min(100% - 28px, 1180px);
  }

  .partner-flow .section-head h2 {
    font-size: 36px;
    line-height: 1.02;
  }

  .flow-list {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }

  .flow-list li {
    min-height: auto;
    gap: 18px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .flow-list li:last-child {
    border-bottom: 0;
  }

  .flow-list li::after {
    display: none;
  }

  .flow-list span {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .flow-list p {
    font-size: 16px;
  }

  .faq {
    width: 100%;
    padding: 72px 0;
  }

  .faq .section-head,
  .faq .faq-grid {
    width: min(100% - 28px, 1180px);
  }

  .faq .section-head h2 {
    font-size: 36px;
    line-height: 1.02;
  }

  .faq article {
    min-height: auto;
    padding: 80px 20px 22px;
  }

  .faq article::before {
    left: 20px;
    top: 20px;
    width: 44px;
    height: 44px;
  }

  .faq article::after {
    left: 20px;
    right: 20px;
  }

  .faq article h3 {
    font-size: 20px;
    max-width: 100%;
  }

  .route-card {
    min-height: 330px;
  }

  .route-card div {
    min-height: 170px;
  }

  .logistics-content {
    padding: 30px 22px 24px;
  }

  .logistics-content p {
    font-size: 16px;
  }

  .logistics-slider {
    padding: 0 16px 16px;
  }

  .logistics-track {
    min-height: 260px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .slider-prev {
    left: 28px;
  }

  .slider-next {
    right: 28px;
  }

  .slider-dots {
    bottom: 30px;
  }

  .base-slider {
    aspect-ratio: 1 / 1.04;
  }

  .base-dots {
    bottom: 18px;
  }

  .base-slider .slider-prev {
    left: 14px;
  }

  .base-slider .slider-next {
    right: 14px;
  }

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

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

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

  .footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding-bottom: 88px;
  }

  .footer-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-socials {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-socials a {
    flex: 1 1 180px;
  }

  .footer-manager {
    width: 100%;
  }
}
