:root {
  --purple: #6126ff;
  --deep-purple: #330559;
  --black: #271f20;
  --pink: #ff0058;
  --green: #00c878;
  --yellow: #fff21c;
  --mint: #a6ffd9;
  --orange: #ff8500;
  --white: #ffffff;
  --soft: #f6f2ff;
  --text: #27212b;
  --muted: #665b6f;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  padding-top: 58px;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: clip;
}

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

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

section {
  scroll-margin-top: 58px;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 clamp(18px, 6vw, 72px);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(51, 5, 89, 0.08);
}

.brand img {
  width: 128px;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 38px);
  color: var(--deep-purple);
  font-size: 0.84rem;
  font-weight: 800;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.header-cta {
  color: var(--white);
  background: var(--purple);
  font-size: 0.82rem;
  white-space: nowrap;
}

.button-pink {
  min-height: 48px;
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(255, 0, 88, 0.24);
}

.button-light {
  min-height: 46px;
  margin-top: 26px;
  max-width: 100%;
  padding-block: 10px;
  color: var(--deep-purple);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(51, 5, 89, 0.16);
}

.text-link {
  display: inline-flex;
  color: var(--purple);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

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

h1 {
  color: var(--purple);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.15;
}

.small-label {
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-scroll {
  position: relative;
  height: 300svh;
  background: var(--purple);
}

.hero-sticky {
  position: sticky;
  top: 58px;
  height: calc(100svh - 58px);
  overflow: hidden;
  background: var(--purple);
}

.hero-track {
  --hero-x: 0px;
  display: flex;
  width: 300vw;
  height: 100%;
  transform: translate3d(var(--hero-x), 0, 0);
  will-change: transform;
}

.hero-panel {
  --hero-lines-height: clamp(220px, 25.9vw, 373px);
  position: relative;
  flex: 0 0 100vw;
  height: 100%;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--purple);
}

.hero-panel-1 {
  padding: clamp(42px, 7vw, 92px) clamp(20px, 7vw, 92px);
}

.hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero-panel-1 p {
  position: absolute;
  top: 25%;
  left: clamp(30px, 9vw, 130px);
  margin: 0;
  font-size: clamp(1.18rem, 2.5vw, 1.8rem);
  font-weight: 800;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  top: calc(26% + var(--hero-lines-height) + 34px);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-scroll-cue::before,
.hero-scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-cue::before {
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.hero-scroll-cue::after {
  bottom: -19px;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes scroll-dot {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.4;
  }

  55% {
    transform: translate(-50%, 14px);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 0.4;
  }
}

.hero-panel-2,
.hero-panel-3 {
  padding: clamp(42px, 7vw, 92px);
}

.hero-lines-img {
  position: absolute;
  top: 26%;
  height: var(--hero-lines-height);
  max-width: none;
  pointer-events: none;
}

.hero-lines-straight {
  right: 0;
}

.hero-lines-wave {
  left: -34px;
}

.hero-lines-final {
  left: -162px;
  clip-path: inset(0 45% 0 0);
  transform: scaleX(0.78);
  transform-origin: left center;
}

.hero-two-copy {
  position: absolute;
  top: clamp(82px, 13vh, 128px);
  left: clamp(70px, 10vw, 150px);
  z-index: 2;
  max-width: min(520px, 42vw);
  font-weight: 900;
  text-align: left;
}

.hero-two-copy p {
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 3.7rem);
  line-height: 1.02;
}

.hero-three-copy {
  position: absolute;
  top: 50%;
  right: clamp(34px, 8vw, 120px);
  width: min(500px, 38vw);
  z-index: 2;
  transform: translateY(-48%);
  text-align: left;
}

.hero-three-copy p {
  margin: 0 0 18px;
  font-size: clamp(0.98rem, 1.4vw, 1.22rem);
  line-height: 1.42;
}

.hero-three-copy h2 {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-three-copy ul {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  font-weight: 800;
  line-height: 1.22;
}

.hero-three-copy li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
}

.hero-three-copy li::before {
  content: "✓";
  color: var(--mint);
  font-weight: 900;
}

.hero-three-copy .button {
  margin-top: 4px;
  color: var(--deep-purple);
  background: var(--mint);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.about-motion {
  position: relative;
  min-height: clamp(760px, 72vw, 920px);
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(380px, 1.18fr);
  align-items: start;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(68px, 9vw, 116px) clamp(20px, 7vw, 92px) 0;
  overflow: hidden;
  background: var(--white);
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.about-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.85vw, 2.75rem);
  line-height: 1.08;
}

.about-copy p:not(.small-label) {
  color: var(--muted);
  font-size: clamp(1rem, 1.32vw, 1.18rem);
  line-height: 1.48;
}

.about-road-scene {
  --bike-x: -60vw;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: clamp(420px, 42vw, 560px);
  overflow: hidden;
  pointer-events: none;
}

.about-road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(118px, 11vw, 160px);
  max-width: none;
  object-fit: cover;
}

.about-cyclist {
  position: absolute;
  left: 0;
  bottom: clamp(74px, 7.2vw, 104px);
  width: clamp(220px, 22vw, 340px);
  max-width: none;
  transform: translate3d(var(--bike-x), 0, 0);
  will-change: transform;
}

.sky-parallax {
  --balloon-y: 0px;
  position: relative;
  height: min(350px, 52vw);
  min-height: 250px;
  overflow: hidden;
  background: #9ec9df;
}

.sky-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.sky-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.sky-balloon {
  position: absolute;
  left: clamp(54px, 17vw, 260px);
  bottom: -220px;
  width: clamp(92px, 13vw, 182px);
  max-width: none;
  transform: translate3d(0, var(--balloon-y), 0);
  will-change: transform;
  filter: drop-shadow(0 18px 28px rgba(16, 44, 70, 0.28));
}

.color-block,
.dark-block,
.partners,
.testimonial,
.content-section,
.signup-section {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 7vw, 92px);
}

.section-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
}

.pink-block {
  color: var(--white);
  background: var(--pink);
}

.route-teaser {
  position: relative;
  overflow: hidden;
}

.route-teaser .section-grid {
  position: relative;
  z-index: 2;
}

.route-paths {
  position: absolute;
  inset: -12% -4%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0.68;
  pointer-events: none;
}

.route-paths svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-paths svg:first-child {
  transform: translate(-10%, -2%) scale(1.25);
}

.route-paths svg:last-child {
  transform: translate(28%, 18%) scale(1.2);
}

.route-paths path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray: 0.34 1;
  animation: route-path-flow linear infinite alternate;
}

@keyframes route-path-flow {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: 1;
  }
}

.route-photo {
  width: 100%;
  border-radius: 0;
  object-fit: contain;
  filter: none;
}

.route-teaser h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.route-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.route-benefit-grid article {
  min-height: 174px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(51, 5, 89, 0.16);
}

.route-benefit-grid h3 {
  margin: 0 0 10px;
  color: var(--deep-purple);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.08;
}

.route-benefit-grid p {
  margin: 0;
  color: rgba(39, 31, 32, 0.82);
  font-size: clamp(0.92rem, 1.08vw, 1rem);
  line-height: 1.42;
}

.dark-block {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 100px);
  color: var(--white);
  background: var(--black);
}

.route-scroll {
  position: relative;
  height: 320svh;
  background: #eef0f3;
}

.route-scroll-sticky {
  position: sticky;
  top: 58px;
  height: calc(100svh - 58px);
  overflow: hidden;
  color: var(--black);
  background: #eef0f3;
}

.route-scroll-track {
  --route-x: 0px;
  display: flex;
  width: 200vw;
  height: 100%;
  transform: translate3d(var(--route-x), 0, 0);
  will-change: transform;
}

.route-screen {
  position: relative;
  flex: 0 0 100vw;
  min-width: 0;
  height: 100%;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #eef0f3;
}

.route-ecosystem-panel {
  padding: clamp(38px, 5vw, 72px) clamp(20px, 6vw, 78px);
}

.ecosystem-layout {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.ecosystem-heading {
  max-width: 430px;
}

.ecosystem-heading .small-label {
  color: var(--purple);
}

.ecosystem-heading h2 {
  margin-bottom: 18px;
  color: var(--deep-purple);
  font-size: clamp(1.85rem, 3.2vw, 3.3rem);
  line-height: 1.02;
}

.ecosystem-heading p:not(.small-label) {
  margin: 0;
  color: rgba(39, 31, 32, 0.68);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.42;
}

.ecosystem-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
}

.ecosystem-route {
  min-height: clamp(340px, 42vh, 470px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid rgba(51, 5, 89, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 48px rgba(39, 31, 32, 0.11);
  backdrop-filter: blur(12px);
}

.route-card-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-purple);
  font-size: clamp(1.16rem, 1.6vw, 1.48rem);
  font-weight: 900;
  line-height: 1.05;
}

.route-card-copy p {
  max-width: 330px;
  margin: 0;
  color: rgba(39, 31, 32, 0.64);
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.34;
}

.logo-wall {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 16px;
  border: 1px solid rgba(51, 5, 89, 0.08);
  border-radius: 8px;
  color: #241b2b;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(39, 31, 32, 0.09);
  font-size: clamp(0.96rem, 1.18vw, 1.16rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.logo-bci {
  color: var(--white);
  background: var(--purple);
}

.logo-blue {
  color: #125bcb;
}

.logo-salco {
  color: var(--pink);
}

.logo-walmart {
  color: #0071ce;
}

.logo-microsoft {
  color: #111111;
}

.logo-uc {
  color: #1683ff;
}

.ecosystem-beams {
  position: absolute;
  inset: 4% 2%;
  z-index: 1;
  opacity: 0.74;
  pointer-events: none;
}

.ecosystem-beams svg {
  width: 100%;
  height: 100%;
}

.ecosystem-beam-base,
.ecosystem-beam-pulse {
  fill: none;
  stroke-linecap: round;
}

.ecosystem-beam-base {
  stroke: rgba(51, 5, 89, 0.14);
  stroke-width: 1.4;
}

.ecosystem-beam-pulse {
  stroke-width: 3;
  stroke-dasharray: 0.16 0.84;
  stroke-dashoffset: 1;
  animation: ecosystem-beam-flow 9s linear infinite;
}

.ecosystem-beam-pulse:nth-of-type(4) {
  animation-delay: -2.6s;
}

.ecosystem-beam-pulse:nth-of-type(6) {
  animation-delay: -5.2s;
}

.ecosystem-beam-pulse:nth-of-type(8) {
  animation-delay: -7.1s;
}

.beam-purple {
  stroke: var(--purple);
}

.beam-pink {
  stroke: var(--pink);
}

.beam-green {
  stroke: var(--green);
}

.beam-yellow {
  stroke: #d3c700;
}

@keyframes ecosystem-beam-flow {
  to {
    stroke-dashoffset: 0;
  }
}

.route-screen-map {
  padding: clamp(42px, 7vw, 92px);
}

.route-map {
  position: relative;
  width: min(980px, 88vw);
  aspect-ratio: 1.52;
  margin: 0 auto;
}

.route-name {
  position: absolute;
  color: var(--white);
  font-size: clamp(1.15rem, 2.4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.04;
  text-align: center;
}

.route-capital {
  top: 0;
  left: 3%;
}

.route-productividad {
  top: 0;
  right: 1%;
}

.route-mercado {
  bottom: 0;
  left: 4%;
}

.route-talento {
  right: 3%;
  bottom: 0;
}

.route-arc {
  position: absolute;
  width: clamp(84px, 10vw, 132px);
}

.route-arc-a {
  top: 19%;
  left: 32%;
}

.route-arc-b {
  top: 19%;
  right: 32%;
}

.route-arc-c {
  bottom: 18%;
  left: 32%;
}

.route-arc-d {
  right: 32%;
  bottom: 18%;
}

.route-map strong {
  position: absolute;
  inset: 48% auto auto 50%;
  color: var(--yellow);
  transform: translate(-50%, -50%);
  font-size: clamp(1.15rem, 2.3vw, 2.05rem);
  line-height: 1;
  white-space: nowrap;
}

.route-screen-network {
  grid-template-columns: minmax(320px, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(34px, 7vw, 110px);
  padding: clamp(42px, 7vw, 92px);
}

.route-network-copy {
  max-width: 540px;
  justify-self: end;
}

.route-network-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.route-network-copy p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.4;
}

.route-network-visual {
  position: relative;
  width: min(570px, 44vw);
  aspect-ratio: 1;
}

.route-network-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.54;
}

.route-network-visual span {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: clamp(54px, 6vw, 82px);
  height: clamp(54px, 6vw, 82px);
  border: 10px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #ff4b26;
  transform: translate(-50%, -50%);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
}

.train-strip {
  --train-x: 0px;
  position: relative;
  height: clamp(160px, 18vw, 260px);
  overflow: hidden;
  background: #161616;
}

.train-strip img {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: 100%;
  max-width: none;
  transform: translate3d(calc(-50% + var(--train-x)), 0, 0);
  will-change: transform;
}

.cyclist-banner img {
  width: 100%;
  height: clamp(260px, 36vw, 460px);
  object-fit: cover;
}

.solutions {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(42px, 11vw, 190px);
  row-gap: clamp(42px, 6vw, 78px);
  padding-top: clamp(80px, 9vw, 118px);
  padding-bottom: clamp(84px, 9vw, 118px);
}

.green-block {
  color: var(--white);
  background: var(--green);
}

.solutions-mark img {
  width: clamp(150px, 18vw, 248px);
}

.solutions-copy h2 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 4.25vw, 4.65rem);
  line-height: 1.12;
}

.solutions-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 800;
  line-height: 1.25;
}

.solution-columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 8.5vw, 152px);
  margin-top: 0;
  padding-inline: clamp(8px, 2vw, 36px);
}

.solution-columns article {
  border-top: 0;
  padding-top: 0;
}

.solution-columns h3 {
  margin-bottom: 24px;
  font-size: clamp(1.24rem, 1.75vw, 1.55rem);
  line-height: 1.08;
}

.solution-columns p {
  max-width: 360px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  line-height: 1.42;
}

.solution-columns a {
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.partners {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(260px, 0.78fr) minmax(0, 1.72fr) 44px;
  grid-template-areas: "prev copy carousel next";
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  min-height: 430px;
  background: var(--white);
}

.partners-copy {
  grid-area: copy;
}

.partners h2 {
  max-width: 440px;
  margin-bottom: 72px;
  color: #333333;
  font-size: clamp(1.95rem, 2.55vw, 2.7rem);
  line-height: 1.12;
}

.purple-label {
  color: var(--purple);
}

.partner-dots {
  display: flex;
  gap: 18px;
}

.partner-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ebe9ef;
}

.partner-dots .is-active {
  width: 17px;
  height: 17px;
  margin-top: -3px;
  background: var(--deep-purple);
}

.partner-carousel {
  grid-area: carousel;
  min-width: 0;
  overflow: hidden;
  padding-block: 18px;
}

.partner-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.partner-track::-webkit-scrollbar {
  display: none;
}

.partner-card {
  flex: 0 0 min(360px, 82vw);
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 34px;
  padding: 38px 36px;
  border: 1px solid rgba(51, 5, 89, 0.08);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 10px 18px rgba(39, 31, 32, 0.14);
  scroll-snap-align: start;
  text-align: center;
}

.partner-logo {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.partner-logo strong {
  color: var(--black);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1;
}

.partner-logo-uc span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 3px solid #1683ff;
  border-radius: 50%;
  color: #1683ff;
  font-weight: 900;
  font-size: 1.35rem;
}

.partner-logo-uc strong {
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.13;
  text-align: left;
  text-transform: uppercase;
}

.partner-logo-microsoft strong {
  color: #000000;
  font-size: clamp(2.5rem, 4vw, 3.35rem);
  font-weight: 500;
  letter-spacing: 0;
}

.microsoft-mark {
  display: grid;
  grid-template-columns: repeat(2, 28px);
  grid-template-rows: repeat(2, 28px);
  gap: 5px;
}

.microsoft-mark i:nth-child(1) {
  background: #f25022;
}

.microsoft-mark i:nth-child(2) {
  background: #7fba00;
}

.microsoft-mark i:nth-child(3) {
  background: #00a4ef;
}

.microsoft-mark i:nth-child(4) {
  background: #ffb900;
}

.partner-card p {
  max-width: 320px;
  margin: 0;
  color: #292929;
  font-size: 1rem;
  line-height: 1.35;
}

.partner-card-placeholder {
  border-style: dashed;
  box-shadow: none;
}

.partner-card-placeholder .partner-logo strong {
  color: var(--purple);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.partner-arrow {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: #333333;
  background: #eeedf1;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.partner-arrow:focus-visible {
  outline: 4px solid rgba(97, 38, 255, 0.26);
  outline-offset: 3px;
}

.partner-arrow-prev {
  grid-area: prev;
  justify-self: start;
}

.partner-arrow-next {
  grid-area: next;
  justify-self: end;
}

.community {
  position: relative;
  min-height: 620px;
  padding: clamp(88px, 8vw, 116px) 20px 0;
  text-align: center;
  overflow: hidden;
}

.community h2 {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto 42px;
  font-size: clamp(2.05rem, 2.75vw, 2.65rem);
  line-height: 1.18;
}

.social-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(70px, 9vw, 126px);
}

.social-row a {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--white);
}

.social-row svg {
  width: 100%;
  height: 100%;
}

.community-lines {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: 100%;
  max-width: none;
  pointer-events: none;
}

.image-cta {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.image-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 24, 0.2);
}

.image-cta div {
  position: relative;
  z-index: 2;
}

.image-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  color: var(--text);
  background: var(--white);
}

.signup-heading {
  width: 100%;
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.signup-heading h2 {
  margin-bottom: 18px;
  color: var(--deep-purple);
  font-size: clamp(2.2rem, 4.4vw, 4.7rem);
  line-height: 0.98;
}

.signup-heading h2 em,
.signup-heading h2 span {
  color: var(--purple);
  font-style: normal;
}

.signup-heading p {
  max-width: 500px;
  margin: 0;
  color: rgba(39, 31, 32, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.45;
}

.lead-form {
  width: 100%;
  margin: 0;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(51, 5, 89, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 58px rgba(39, 31, 32, 0.14);
}

.form-step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--deep-purple);
}

.form-step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.lead-form label {
  display: grid;
  gap: 9px;
  color: var(--deep-purple);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(51, 5, 89, 0.14);
  border-radius: var(--radius);
  color: var(--text);
  background: #f8f7fa;
  outline: 0;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(97, 38, 255, 0.46);
  box-shadow: 0 0 0 4px rgba(97, 38, 255, 0.14);
}

.lead-form button {
  display: flex;
  width: 190px;
  margin: 34px 0 16px;
}

.form-note {
  margin: 0;
  color: rgba(39, 31, 32, 0.62);
  text-align: left;
}

.form-note.is-success {
  color: var(--mint);
  font-weight: 900;
}

.testimonial {
  color: var(--white);
  background: var(--purple);
}

.testimonial-heading {
  width: min(980px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.testimonial-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.95;
}

.faq-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-list article {
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.faq-list h3 {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.15;
}

.faq-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.22vw, 1.12rem);
  line-height: 1.42;
}

.content-section {
  background: var(--white);
}

.content-section h2 {
  margin-bottom: 54px;
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.content-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.content-grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
}

.content-grid img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-grid h3 {
  margin: 18px 0 10px;
}

.content-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.content-grid a {
  color: var(--purple);
  font-weight: 900;
}

.content-dots {
  display: none;
}

.site-footer {
  color: var(--white);
  background: var(--black);
}

.footer-pattern {
  height: 190px;
  background:
    linear-gradient(135deg, transparent 0 24%, var(--purple) 24% 36%, transparent 36% 100%),
    linear-gradient(45deg, var(--green) 0 42%, transparent 42% 100%),
    var(--purple);
  background-size: 260px 190px;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 48px 20px;
}

.footer-content img {
  width: 130px;
}

.footer-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-content a {
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .section-grid,
  .dark-block,
  .about-motion,
  .solutions,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-motion {
    align-items: start;
    min-height: 860px;
  }

  .about-road-scene {
    height: 430px;
  }

  .about-cyclist {
    bottom: 72px;
    width: min(320px, 66vw);
  }

  .route-map {
    width: min(620px, 88vw);
  }

  .route-benefit-grid {
    grid-template-columns: 1fr;
  }

  .route-benefit-grid article {
    min-height: 0;
  }

  .route-screen-network {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
  }

  .route-network-copy {
    max-width: 620px;
    justify-self: center;
    text-align: center;
  }

  .route-network-copy p {
    margin-inline: auto;
  }

  .route-network-visual {
    width: min(420px, 72vw);
  }

  .solutions-mark img {
    width: 142px;
  }

  .solution-columns {
    margin-top: 18px;
    gap: 34px;
  }

  .solution-columns,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .partners {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-areas:
      "copy copy copy"
      "carousel carousel carousel"
      "prev . next";
    align-items: start;
    gap: 28px 16px;
  }

  .partners h2 {
    max-width: 640px;
    margin-bottom: 28px;
  }

  .partner-carousel {
    padding-block: 8px 18px;
  }

  .partner-arrow-prev {
    justify-self: end;
  }

  .partner-arrow-next {
    justify-self: start;
  }

  .hero-three-copy {
    right: clamp(24px, 5vw, 54px);
    width: min(390px, 40vw);
  }

  .hero-three-copy p {
    font-size: clamp(0.88rem, 1.45vw, 1.05rem);
    line-height: 1.34;
  }

  .hero-three-copy h2 {
    font-size: clamp(1rem, 1.7vw, 1.3rem);
  }

  .hero-three-copy ul {
    font-size: 0.92rem;
  }
}

@media (max-width: 820px) {
  .hero-three-copy {
    top: calc(26% + var(--hero-lines-height) + 14px);
    right: 24px;
    left: 24px;
    width: auto;
    max-width: none;
    transform: none;
  }

  .hero-three-copy p {
    margin-bottom: 10px;
    font-size: 0.84rem;
    line-height: 1.28;
  }

  .hero-three-copy h2 {
    margin-bottom: 9px;
    font-size: 1rem;
  }

  .hero-three-copy ul {
    gap: 5px;
    margin-bottom: 12px;
    font-size: 0.82rem;
  }

  .hero-three-copy .button {
    width: 100%;
    min-height: 40px;
    padding-inline: 14px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 54px;
    padding-inline: 14px;
  }

  body {
    padding-top: 54px;
  }

  section {
    scroll-margin-top: 54px;
  }

  .brand img {
    width: 96px;
  }

  .header-cta {
    min-height: 34px;
    max-width: 132px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 320px;
    padding-top: 44px;
  }

  .hero-scroll {
    height: 300svh;
  }

  .hero-sticky {
    top: 54px;
    height: calc(100svh - 54px);
  }

  .hero-panel-1 {
    padding: 44px 20px;
  }

  .hero-panel-1 p {
    top: 18%;
    left: 20px;
    max-width: 260px;
  }

  .hero-scroll-cue {
    left: 50%;
    top: calc(34% + var(--hero-lines-height) + 32px);
  }

  .hero-panel {
    --hero-lines-height: clamp(160px, 42vw, 260px);
  }

  .hero-lines-img {
    top: 34%;
  }

  .hero-lines-straight {
    right: -2vw;
  }

  .hero-lines-wave {
    left: 0;
  }

  .hero-lines-final {
    left: -116px;
    clip-path: inset(0 36% 0 0);
    transform: scaleX(0.78);
  }

  .hero-two-copy {
    top: 10%;
    left: 56px;
    max-width: min(315px, calc(100vw - 92px));
  }

  .hero-two-copy p {
    font-size: clamp(1.8rem, 9.6vw, 2.7rem);
    line-height: 1.04;
  }

  .hero-three-copy {
    top: calc(34% + var(--hero-lines-height) + 8px);
    right: 20px;
    left: 20px;
  }

  .route-scroll {
    height: 320svh;
  }

  .route-scroll-sticky {
    top: 54px;
    height: calc(100svh - 54px);
  }

  .route-ecosystem-panel {
    padding: 40px 20px;
  }

  .ecosystem-layout {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
  }

  .ecosystem-heading {
    max-width: 720px;
  }

  .ecosystem-heading h2 {
    font-size: clamp(1.85rem, 5vw, 3rem);
  }

  .ecosystem-routes {
    grid-template-columns: 1fr 1fr;
  }

  .ecosystem-route {
    min-height: 300px;
  }

  .about-motion {
    min-height: 760px;
    padding: 54px 20px 0;
  }

  .about-copy h1 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .about-road-scene {
    height: 360px;
  }

  .about-road {
    height: 120px;
  }

  .about-cyclist {
    bottom: 62px;
    width: min(270px, 72vw);
  }

  .sky-parallax {
    height: 300px;
    min-height: 300px;
  }

  .sky-bg {
    width: 130%;
    left: -18%;
  }

  .sky-balloon {
    left: 30px;
    bottom: -200px;
    width: 116px;
  }

  .color-block,
  .dark-block,
  .partners,
  .testimonial,
  .content-section,
  .signup-section {
    padding: 52px 20px;
  }

  .signup-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .signup-heading {
    max-width: 640px;
  }

  .route-photo {
    min-height: 210px;
  }

  .route-teaser h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .route-paths {
    inset: -6% -42%;
  }

  .route-paths svg:first-child {
    transform: translate(-14%, 0) scale(1.45);
  }

  .route-paths svg:last-child {
    transform: translate(36%, 26%) scale(1.35);
  }

  .ecosystem-layout {
    gap: 18px;
  }

  .ecosystem-heading h2 {
    margin-bottom: 10px;
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .ecosystem-heading p:not(.small-label) {
    font-size: 0.9rem;
  }

  .ecosystem-routes {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ecosystem-route {
    min-height: 0;
    gap: 12px;
    padding: 18px;
  }

  .route-card-copy span {
    font-size: 1.12rem;
  }

  .route-card-copy p {
    font-size: 0.84rem;
  }

  .logo-wall {
    gap: 8px;
  }

  .logo-chip {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 0.86rem;
  }

  .route-network-visual span {
    border-width: 7px;
  }

  .train-strip {
    height: 160px;
  }

  .cyclist-banner img {
    height: 260px;
  }

  .partners {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 22px 10px;
  }

  .partners h2 {
    margin-bottom: 24px;
    font-size: clamp(1.75rem, 7.2vw, 2.35rem);
  }

  .partner-dots {
    gap: 12px;
  }

  .partner-card {
    flex-basis: min(320px, 100%);
    min-height: 235px;
    gap: 24px;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .partner-logo {
    min-height: 72px;
    gap: 11px;
  }

  .partner-logo-uc span {
    width: 58px;
    height: 58px;
    font-size: 1rem;
  }

  .partner-logo-uc strong {
    font-size: 0.8rem;
  }

  .partner-logo-microsoft strong {
    font-size: 2rem;
  }

  .microsoft-mark {
    grid-template-columns: repeat(2, 20px);
    grid-template-rows: repeat(2, 20px);
    gap: 4px;
  }

  .partner-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .community {
    min-height: 500px;
    padding: 62px 20px 0;
  }

  .community h2 {
    margin-bottom: 34px;
    font-size: clamp(1.55rem, 6.4vw, 2rem);
  }

  .social-row {
    gap: 34px;
  }

  .social-row a {
    width: 44px;
    height: 44px;
  }

  .community-lines {
    left: 50%;
    bottom: 42px;
    width: 780px;
    transform: translateX(-48%);
  }

  .image-cta {
    min-height: 280px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lead-form button {
    width: 100%;
    margin-top: 30px;
  }

  .footer-pattern {
    height: 120px;
  }

  .content-section {
    overflow: hidden;
  }

  .content-section h2 {
    margin-bottom: 34px;
    text-align: left;
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .content-grid {
    width: auto;
    margin-inline: -20px;
    padding-inline: 20px;
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    scrollbar-width: none;
  }

  .content-grid::-webkit-scrollbar {
    display: none;
  }

  .content-grid article {
    flex: 0 0 min(318px, 82vw);
    scroll-snap-align: start;
  }

  .content-grid h3 {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .content-grid p {
    font-size: 1.1rem;
  }

  .content-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
  }

  .content-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e8e2f4;
  }

  .content-dots .is-active {
    background: var(--purple);
  }
}

/* Partner logo assets update */
.partner-logo-chip,
.logo-chip.partner-logo-chip {
  min-width: 118px;
  min-height: 58px;
  padding: 10px 14px;
  background: #fff;
}
.partner-logo-chip img {
  display: block;
  width: 100%;
  max-width: 130px;
  height: 42px;
  object-fit: contain;
}
.partner-logo-text {
  color: var(--deep-purple, #330559);
  font-weight: 900;
}
@media (max-width: 680px) {
  .partner-logo-chip,
  .logo-chip.partner-logo-chip { min-width: 92px; min-height: 44px; padding: 7px 9px; }
  .partner-logo-chip img { max-width: 100px; height: 30px; }
}
