:root {
  --brand: #EB0029;
  --brand-hover: #C40022;
  --brand-active: #A8001D;
  --ink: #151515;
  --muted: #626262;
  --surface: #FFFFFF;
  --surface-soft: #F4F4F2;
  --line: #DADAD6;
  --radius: 1.5rem;
  --ui: "Montserrat", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --max: 74rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ui);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
  overflow-x: clip;
}

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

a {
  color: var(--brand-active);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.site-header {
  padding: 0;
  animation: header-in 0.5s ease both;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  min-height: 3.75rem;
  padding: 0.7rem 1rem;
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 1.15rem 1.15rem;
}

.logo-insu {
  height: clamp(1.7rem, 6.4vw, 2.15rem);
  width: auto;
  max-width: 34vw;
  flex-shrink: 0;
}

.site-header__partner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  flex: 0 1 auto;
  white-space: nowrap;
}

.site-header__partner p {
  margin: 0;
  font-size: clamp(0.62rem, 2.35vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.logo-banorte {
  height: clamp(0.82rem, 3.4vw, 1.15rem);
  width: auto;
  flex-shrink: 0;
}

.hero {
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
  padding: 1.2rem 0 1.75rem;
}

.hero__scene {
  position: relative;
  display: grid;
  gap: 0.8rem;
  grid-template-areas:
    "copy"
    "visual"
    "form"
    "trust";
}

.hero__copy { grid-area: copy; }
.quote { grid-area: form; }
.trust { grid-area: trust; }
.riders { grid-area: visual; }

.scene-route {
  display: none;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--brand);
  animation: rise 0.55s ease 0.08s both;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.8rem, 6.6vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  animation: rise 0.6s ease 0.14s both;
}

.lede {
  margin: 0.75rem 0 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1rem;
  animation: rise 0.6s ease 0.22s both;
}

.riders {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: clamp(16.5rem, 78vw, 19.5rem);
  margin: 0;
  animation: rider-in 0.6s ease 0.28s both;
}

.riders__well {
  position: absolute;
  left: 10%;
  right: 12%;
  top: auto;
  bottom: 7%;
  height: 38%;
  background: var(--surface-soft);
  border-radius: 2rem;
}

.riders__well::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -0.7rem;
  height: 1rem;
  background: radial-gradient(ellipse at center, rgba(21, 21, 21, 0.1), transparent 70%);
  filter: blur(4px);
}

.riders__pip,
.riders__pip--b {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
}

.riders__pip { top: 1.1rem; left: 1.2rem; }
.riders__pip--b {
  top: 1.05rem;
  right: 1.3rem;
  width: 1.7rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--ink);
}

.riders__slot {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(15.625rem, 72vw, 18.75rem);
  aspect-ratio: 1 / 1;
  min-height: 0;
  min-width: 0;
}

.riders__picture {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
}

.riders__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  min-width: 0;
  object-fit: contain;
  object-position: center bottom;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.32rem 0.65rem;
  border: 1px solid rgba(218, 218, 214, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  animation: rise 0.5s ease both;
}

.trust li:nth-child(1) { animation-delay: 0.38s; }
.trust li:nth-child(2) { animation-delay: 0.46s; }
.trust li:nth-child(3) { animation-delay: 0.54s; }

.trust li:hover {
  transform: translateY(-2px);
  border-color: #C8C8C3;
}

.trust__icon {
  position: relative;
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.trust__icon--check::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.trust__icon--check::after {
  content: "";
  position: absolute;
  left: 0.26rem;
  top: 0.2rem;
  width: 0.3rem;
  height: 0.16rem;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg);
}

.trust__icon--shield::before {
  content: "";
  position: absolute;
  left: 0.16rem;
  right: 0.16rem;
  top: 0.08rem;
  bottom: 0.08rem;
  border: 1.5px solid var(--ink);
  border-radius: 0.15rem 0.15rem 0.5rem 0.5rem;
}

.trust__icon--person::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.04rem;
  width: 0.3rem;
  height: 0.3rem;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.trust__icon--person::after {
  content: "";
  position: absolute;
  left: 0.14rem;
  right: 0.14rem;
  bottom: 0.08rem;
  height: 0.36rem;
  border: 1.5px solid var(--ink);
  border-bottom: 0;
  border-radius: 0.4rem 0.4rem 0 0;
}

.quote {
  position: relative;
  background: #fff;
  border: 1px solid rgba(21, 21, 21, 0.07);
  border-radius: 1.4rem;
  box-shadow: 0 16px 36px rgba(21, 21, 21, 0.045);
  padding: 0.875rem;
  animation: from-right 0.6s ease 0.16s both;
}

@supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .quote {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.quote h2 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.quote__form,
.fields,
.field {
  display: grid;
  gap: 0.5rem;
}

.fields--bike {
  grid-template-columns: 1fr 1fr;
}

.field--year {
  grid-column: 1 / -1;
}

.bike-label {
  margin: 0.05rem 0 0;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(218, 218, 214, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field {
  gap: 0.16rem;
  min-width: 0;
}

.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.field:focus-within label {
  color: var(--brand);
  font-weight: 700;
}

.field__control {
  position: relative;
}

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  height: 44px;
  padding: 0.4rem 0.7rem;
  border: 1px solid #E8E8E3;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field select {
  appearance: none;
  padding-right: 2rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 0.95rem) 50%, calc(100% - 0.65rem) 50%;
  background-size: 0.3rem 0.3rem, 0.3rem 0.3rem;
  background-repeat: no-repeat;
}

.field input:hover,
.field select:hover {
  border-color: #B5B5B0;
}

.field input:focus-visible,
.field select:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(235, 0, 41, 0.16);
}

.field.is-valid input,
.field.is-valid select {
  border-color: #0B6A38;
  padding-right: 2.4rem;
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: #C62828;
}

.field.is-invalid input:focus-visible,
.field.is-invalid select:focus-visible {
  border-color: #C62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.16);
}

.field.is-valid select {
  padding-right: 3.1rem;
}

.field.is-valid input[type="date"] {
  padding-right: 3.5rem;
}

.field input:autofill,
.field input:-webkit-autofill,
.field select:autofill,
.field select:-webkit-autofill {
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 99999s ease-out;
}

.field.is-valid input:autofill,
.field.is-valid input:-webkit-autofill,
.field.is-valid select:autofill,
.field.is-valid select:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.field input:focus-visible:autofill,
.field input:focus-visible:-webkit-autofill,
.field select:focus-visible:autofill,
.field select:focus-visible:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset, 0 0 0 3px rgba(235, 0, 41, 0.16);
  -webkit-box-shadow: 0 0 0 1000px #fff inset, 0 0 0 3px rgba(235, 0, 41, 0.16);
}

.field.is-invalid input:focus-visible:autofill,
.field.is-invalid input:focus-visible:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset, 0 0 0 3px rgba(198, 40, 40, 0.16);
  -webkit-box-shadow: 0 0 0 1000px #fff inset, 0 0 0 3px rgba(198, 40, 40, 0.16);
}

.field__control--affix {
  display: flex;
  align-items: stretch;
  height: 44px;
  border: 1px solid #E8E8E3;
  border-radius: 0.7rem;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field__control--affix:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(235, 0, 41, 0.16);
}

.field.is-valid .field__control--affix {
  border-color: #0B6A38;
}

.field.is-invalid .field__control--affix {
  border-color: #C62828;
}

.field.is-invalid .field__control--affix:focus-within {
  border-color: #C62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.16);
}

.field.is-valid .field__control--affix input {
  padding-right: 2.4rem;
}

.field__control--affix input {
  border: 0;
  border-radius: 0;
  min-width: 0;
  height: 100%;
}

.field__control--affix input:focus-visible {
  box-shadow: none;
  outline: none;
}

.affix {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0 0.65rem 0 0.5rem;
  background: #FAFAF8;
  border-right: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.affix__flag {
  display: block;
  width: 20px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.field__icon {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  color: #0B6A38;
  opacity: 0;
  transform: translateY(-50%);
  pointer-events: none;
  background: none;
  border: 0;
  border-radius: 0;
}

.field.is-valid .field__icon {
  opacity: 1;
}

.field__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.field:has(select) .field__icon {
  right: 1.75rem;
}

.field:has(input[type="date"]) .field__icon {
  right: 2.15rem;
}

.field:not(.is-valid) .field__valid-text {
  display: none;
}

.field__error {
  margin: 0;
  min-height: 1.05em;
  color: #C62828;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

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

.consent {
  display: grid;
  gap: 0.2rem;
  margin-top: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.consent__label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.consent.is-invalid .consent__label input {
  border-color: #C62828;
  outline: 2px solid #C62828;
  outline-offset: 1px;
}

.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  min-width: 1.15rem;
  min-height: 1.15rem;
  margin-top: 0.05rem;
  border: 1.5px solid #8A8A8A;
  border-radius: 0.2rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.78rem 0.78rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #EB0029;
}

.consent input[type="checkbox"]:checked {
  background-color: #EB0029;
  border-color: #EB0029;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
  box-shadow: none;
}

.cta {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  background: var(--brand-hover);
  transform: translateY(-2px);
}

.cta:active {
  background: var(--brand-active);
  transform: scale(0.98);
}

.how {
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
  padding: 0.35rem 0 1.75rem;
}

.how__intro {
  margin-bottom: 1rem;
}

.how h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  letter-spacing: -0.04em;
  font-weight: 800;
}

.process-video {
  display: none;
}

.how__track {
  position: relative;
}

.how__line {
  display: none;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  align-content: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.step.is-inview {
  opacity: 1;
  transform: none;
}

.step:nth-child(2).is-inview { transition-delay: 0.08s; }
.step:nth-child(3).is-inview { transition-delay: 0.16s; }

.step__media {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.step__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.step h3 {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  background: #151515;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 1.5rem 1.5rem 0 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: min(100% - 1.5rem, var(--max));
  margin: 0 auto;
  padding: 1.25rem 0 1.4rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  max-width: 42rem;
  font-size: 0.75rem;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand);
}

@keyframes header-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes from-right {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: none; }
}

@keyframes rider-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@keyframes dash-drift {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -48; }
}

@keyframes draw-line {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

@media (min-width: 430px) {
  .fields--bike {
    grid-template-columns: 1fr 1fr minmax(4.6rem, 5.6rem);
  }

  .field--year {
    grid-column: auto;
  }
}

@media (min-width: 768px) {
  .hero__scene {
    grid-template-areas:
      "copy"
      "form"
      "trust"
      "visual";
  }

  .fields--pair {
    grid-template-columns: 1fr 1fr;
  }

  .quote__form,
  .fields {
    gap: 0.6rem;
  }

  .how__track,
  .steps {
    display: none;
  }

  .process-video {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    object-fit: unset;
  }

  .riders {
    width: 100%;
    min-height: 0;
    height: clamp(20rem, 25vw, 22.5rem);
  }

  .riders__slot,
  .riders__picture {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
    padding: 1.15rem 0 1.3rem;
  }

  .site-footer p {
    max-width: 38rem;
  }

  .site-footer__links {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .site-header {
    padding: 1.1rem 1.5rem 0;
  }

  .site-header__bar {
    width: min(100%, var(--max));
    margin: 0 auto;
    min-height: 4.6rem;
    padding: 1rem 1.85rem;
    border-radius: 1.25rem;
    box-shadow: 0 10px 28px rgba(235, 0, 41, 0.16);
  }

  .logo-insu {
    height: 2.35rem;
    max-width: none;
  }

  .site-header__partner {
    gap: 0.65rem;
  }

  .site-header__partner p {
    font-size: 0.82rem;
  }

  .logo-banorte {
    height: 1.25rem;
  }

  .hero {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .hero__scene {
    grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 28rem);
    grid-template-areas:
      "copy form"
      "visual form";
    gap: 0.55rem 1.35rem;
    align-items: start;
    padding: 1.1rem 1.15rem 0.85rem 1.35rem;
    overflow: visible;
  }

  .hero__scene::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--surface-soft);
    border-radius: 2rem;
    z-index: 0;
  }

  .scene-route {
    display: block;
    position: absolute;
    inset: 8% 16% 10% 2%;
    width: auto;
    height: auto;
    pointer-events: none;
    z-index: 0;
  }

  .scene-route__line {
    stroke: var(--brand);
    stroke-width: 1.25;
    stroke-linecap: round;
    fill: none;
    opacity: 0.55;
    stroke-dasharray: 7 12;
    animation: dash-drift 18s linear infinite;
  }

  .scene-route__line--soft {
    opacity: 0.22;
    animation-duration: 24s;
    animation-direction: reverse;
  }

  .hero__copy,
  .riders,
  .quote {
    position: relative;
    z-index: 1;
  }

  .trust {
    position: absolute;
    left: 1.35rem;
    right: 29.75rem;
    bottom: 0.85rem;
    z-index: 2;
    grid-area: unset;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    pointer-events: none;
  }

  .trust li {
    pointer-events: auto;
    flex: 0 1 auto;
    min-height: 32px;
    padding: 0.28rem 0.5rem;
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(21, 21, 21, 0.08);
    box-shadow: 0 4px 10px rgba(21, 21, 21, 0.05);
    white-space: nowrap;
  }

  @supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
    .trust li {
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
  }

  .hero h1 {
    font-size: clamp(2.4rem, 3.4vw, 3.4rem);
  }

  .quote {
    margin-top: 0.1rem;
    padding: 1.25rem;
    align-self: start;
  }

  @supports ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
    .quote {
      background: rgba(255, 255, 255, 0.82);
    }
  }

  .quote h2 {
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
  }

  .quote__form,
  .fields {
    gap: 0.6rem;
  }

  .cta {
    font-size: 0.95rem;
    min-height: 46px;
  }

  .field--cp {
    max-width: 9.25rem;
  }

  .fields--bike {
    grid-template-columns: 1fr 1fr minmax(5rem, 5.75rem);
  }

  .riders {
    min-height: 0;
    height: clamp(20rem, 25vw, 22.5rem);
    padding-bottom: 2.6rem;
    box-sizing: border-box;
  }

  .riders__slot,
  .riders__picture {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }
}

@media (min-width: 1440px) {
  .hero h1 {
    font-size: 3.55rem;
  }

  .trust li {
    font-size: 0.78rem;
    padding: 0.32rem 0.65rem;
    min-height: 36px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .trust li:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 767px) {
  .hero__copy { order: 1; }
  .riders { order: 2; }
  .quote { order: 3; }
  .trust { order: 4; }

  .riders {
    margin: 0.1rem 0 0.25rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero__copy { order: 1; }
  .quote { order: 3; }
  .trust { order: 4; }
  .riders { order: 5; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .step,
  .quote,
  .hero h1,
  .lede,
  .eyebrow,
  .riders,
  .trust li,
  .site-header {
    opacity: 1 !important;
    transform: none !important;
  }

  .cta:hover,
  .cta:active,
  .trust li:hover {
    transform: none;
  }
}
