/*
 * css/raaghu_vs_replit.css
 * Raaghu vs Replit comparison landing page
 *
 * Accent tokens (--rvr-replit-orange, --rvr-replit-orange-light) live in home.css
 */

main {
  overflow-x: clip;
}

/* ── Section header ──────────────────────────────────────────── */

.rvr-section-header {
  max-width: 640px;
  margin: 0 auto calc(var(--home-section-header-gap) - 16px);
  text-align: center;
}

.rvr-section-title {
  margin-bottom: 16px;
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.rvr-vs .rvr-section-header {
  max-width: min(920px, 100%);
  box-sizing: border-box;
}

.rvr-section-title--single-line {
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: break-word;
}

@media (min-width: 1100px) {
  .rvr-section-title--single-line {
    white-space: nowrap;
  }
}

.rvr-section-subtitle {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Hero ────────────────────────────────────────────────────── */

.rvr-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--border-primary) 40%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--border-primary) 40%, transparent) 1px,
      transparent 1px
    ),
    var(--gradient-hero);
  background-size: 48px 48px, 48px 48px, auto;
}

.rvr-hero::before,
.rvr-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
}

.rvr-hero::before {
  top: -8%;
  right: -4%;
  width: min(52vw, 640px);
  height: min(68vh, 720px);
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--fabric-blue) 16%, transparent) 0%,
    transparent 72%
  );
}

.rvr-hero::after {
  bottom: -6%;
  right: 8%;
  width: min(40vw, 480px);
  height: min(44vh, 480px);
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--brand-primary) 10%, transparent) 0%,
    transparent 70%
  );
}

.rvr-hero__inner {
  position: relative;
  margin-top: 30px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding: var(--home-hero-space-top) var(--layout-gutter) var(--home-section-gap-tight);
}

.rvr-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: none;
  width: 100%;
}

.rvr-hero__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--border-radius);
}

.rvr-hero__badge.hero-badge-beam {
  border: none;
  color: inherit;
  background-color: transparent;
  box-shadow: none;
}

.rvr-hero__badge-icon-wrap {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  overflow: visible;
  border: none;
  box-shadow: none;
  background: transparent;
}

.rvr-hero__badge-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  overflow: visible;
  border: none;
  outline: none;
}

.rvr-hero__badge-icon__spark {
  transform-box: fill-box;
  transform-origin: center;
}

.rvr-hero__badge-copy {
  font-size: var(--fs-caption);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.rvr-hero__title {
  margin-bottom: 16px;
  font-size: var(--fs-hero-title);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  overflow-wrap: break-word;
}

.rvr-hero__title--animated {
  overflow: hidden;
}

.rvr-hero__title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  font-size: 1em;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(16px);
  animation: rvr-hero-title-rise 0.6s ease-out forwards;
}

.rvr-hero__title-part--lead {
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
  background: none;
}

.rvr-hero__title-part--gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.rvr-hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.rvr-hero__title-line:nth-child(2) { animation-delay: 0.3s; }

@media (min-width: 1600px) {
  .rvr-hero__title {
    font-size: clamp(var(--fontsize-5xl), 3.2vw, var(--fontsize-6xl));
  }
}

@media (min-width: 2200px) {
  .rvr-hero__title {
    font-size: clamp(var(--fontsize-6xl), 2.8vw, var(--fontsize-7xl));
  }
}

@keyframes rvr-hero-title-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rvr-hero__title-line {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.rvr-hero__description {
  max-width: none;
  margin-bottom: 22px;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text-secondary);
  overflow-wrap: break-word;
}

.rvr-hero__checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  list-style: none;
}

.rvr-hero__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-secondary);
  overflow-wrap: break-word;
}

.rvr-hero__check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0;
  color: var(--brand-primary);
}

.rvr-hero__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  max-width: 100%;
}

.rvr-hero__actions .btn {
  min-height: 0;
  padding: 7px 15px;
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.rvr-hero__actions .btn--primary {
  padding: 7px 17px;
  font-weight: 600;
}

.rvr-hero__actions .btn--outline,
.rvr-hero__actions .btn--hero-demo {
  padding: 7px 13px;
  font-weight: 500;
}

.rvr-hero__actions .btn__icon {
  width: 16px;
  height: 16px;
}

.rvr-hero__marketplace {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
}

.rvr-hero__marketplace img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Hero workflow visual */

.rvr-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.rvr-hero__visual-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1240 / 700;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 901px) {
  .rvr-hero__inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: center;
    gap: clamp(24px, 3vw, 40px);
  }

  .rvr-hero__visual-image {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-inline: 0;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .rvr-hero__inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: clamp(20px, 2.5vw, 32px);
  }

  .rvr-hero__content {
    max-width: none;
  }

  .rvr-hero__visual-image {
    width: 100%;
    min-height: 0;
    margin-inline: 0;
  }
}

@media (min-width: 1281px) {
  .rvr-hero__visual-image {
    width: 100%;
    min-height: 0;
    margin-inline: 0;
  }
}

@media (min-width: 1600px) {
  .rvr-hero__inner {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }

  .rvr-hero__visual-image {
    width: 100%;
    min-height: 0;
    margin-inline: 0;
  }
}

@media (min-width: 2200px) {
  .rvr-hero__visual-image {
    width: 100%;
    min-height: 0;
    margin-inline: 0;
  }
}

@media (max-width: 1024px) {
  .rvr-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .rvr-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
  }

  .rvr-hero__badge {
    align-self: center;
    margin-bottom: 24px;
  }

  .rvr-hero__title {
    margin-bottom: 16px;
  }

  .rvr-hero__title-line {
    margin-inline: auto;
    font-size: 1em;
  }

  .rvr-hero__description {
    max-width: 100%;
    margin-bottom: 28px;
    margin-inline: auto;
  }

  .rvr-hero__checklist {
    align-items: stretch;
    width: fit-content;
    max-width: min(100%, 520px);
    margin-inline: auto;
    margin-bottom: 28px;
    text-align: left;
  }

  .rvr-hero__checklist li {
    justify-content: flex-start;
    text-align: left;
  }

  .rvr-hero__actions {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .rvr-hero__actions::-webkit-scrollbar {
    display: none;
  }

  .rvr-hero__actions .btn {
    flex-shrink: 0;
    width: auto;
    padding: 7px 15px;
    font-size: var(--fs-sm);
  }

  .rvr-hero__actions .btn--primary {
    padding: 7px 17px;
  }

  .rvr-hero__actions .btn--outline,
  .rvr-hero__actions .btn--hero-demo {
    padding: 7px 13px;
  }

  .rvr-hero__marketplace {
    justify-content: center;
    margin-inline: auto;
  }

  .rvr-hero__visual {
    width: 100%;
    max-width: min(100%, 720px);
    margin-inline: auto;
    padding-top: 0;
  }

  .rvr-hero__visual-image {
    width: 100%;
    min-height: 0;
    margin-inline: auto;
  }
}

.rvr-flow-diagram {
  --rvr-flow-gap: 8px;
  --rvr-flow-fabric-size: 68px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  column-gap: var(--rvr-flow-gap);
  padding-right: calc(var(--rvr-flow-fabric-size) + 6px);
}

.rvr-flow-diagram__track {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: auto auto auto;
  row-gap: 0;
  margin-bottom: 12px;
}

.rvr-flow-diagram__steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rvr-flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.rvr-flow-step:not(:last-child) .rvr-flow-step__card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + var(--rvr-flow-gap) / 2);
  width: 6px;
  height: 6px;
  border: none;
  border-right: 2px solid var(--fabric-blue);
  border-bottom: 2px solid var(--fabric-blue);
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0.65;
  pointer-events: none;
}

.rvr-flow-step__card {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 128px;
  padding: 10px 8px 8px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 85%, var(--fabric-blue) 10%);
  border-radius: var(--border-radius);
  background-color: var(--bg-card);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--fabric-blue) 10%, transparent);
  box-sizing: border-box;
}

.rvr-flow-diagram__drops {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: end;
  height: 18px;
  margin-top: 2px;
}

.rvr-flow-diagram__drops .rvr-flow-step__drop {
  justify-self: center;
}

.rvr-flow-step__drop {
  display: block;
  flex-shrink: 0;
  width: 2px;
  height: 12px;
  background: linear-gradient(180deg, var(--fabric-blue-light), var(--fabric-blue));
  position: relative;
}

.rvr-flow-step__drop::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--fabric-blue);
}

.rvr-flow-step__label {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-size: var(--fs-caption);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: var(--text-primary);
}

.rvr-flow-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  color: var(--fabric-blue);
  border-radius: var(--border-radius);
  background-color: color-mix(in srgb, var(--fabric-blue) 10%, var(--bg-secondary));
}

.rvr-flow-step__icon svg {
  width: 22px;
  height: 22px;
}

.rvr-flow-step__num {
  font-weight: 700;
  color: var(--fabric-blue);
}

.rvr-flow-step__sub {
  display: block;
  margin-top: 1px;
  font-size: var(--fs-micro);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-muted);
}

.rvr-flow-diagram__bridge {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 0;
}

.rvr-flow-diagram__line {
  display: block;
  width: 100%;
  height: 5px;
  border-radius: var(--border-radius);
  background: linear-gradient(90deg, var(--fabric-blue-light) 0%, var(--fabric-blue) 45%, var(--brand-primary) 100%);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--fabric-blue) 24%, transparent);
}

.rvr-flow-diagram__bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  align-items: stretch;
  column-gap: var(--rvr-flow-gap);
}

.rvr-flow-product--span-2:nth-child(1) {
  grid-column: 1 / 3;
}

.rvr-flow-product--span-2:nth-child(2) {
  grid-column: 3 / 5;
}

.rvr-flow-product--span-2:nth-child(3) {
  grid-column: 5 / 7;
}

.rvr-flow-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 14px 12px;
  border: 1px solid color-mix(in srgb, var(--border-primary) 90%, var(--fabric-blue) 8%);
  border-radius: var(--border-radius);
  background-color: var(--bg-card);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--text-primary) 5%, transparent);
}

.rvr-flow-product__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: var(--border-radius);
}

.rvr-flow-product__icon--spec {
  background-color: color-mix(in srgb, var(--ai-cyan) 12%, var(--bg-secondary));
}

.rvr-flow-product__icon--platform {
  background-color: color-mix(in srgb, var(--brand-primary) 12%, var(--bg-secondary));
}

.rvr-flow-product__icon--meta {
  background-color: color-mix(in srgb, var(--governance-green) 12%, var(--bg-secondary));
}

.rvr-flow-product__icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.rvr-flow-product__title {
  margin-bottom: 3px;
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.rvr-flow-product__subtitle {
  margin-bottom: 8px;
  font-size: var(--fs-caption);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fabric-blue);
}

.rvr-flow-product__desc {
  margin: 0;
  flex: 1;
  font-size: var(--fs-micro);
  line-height: 1.5;
  color: var(--text-secondary);
}

.rvr-flow-diagram__fabric {
  position: absolute;
  right: -97px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--rvr-flow-fabric-size);
  height: 100%;
  padding-bottom: 0;
}

.rvr-flow-fabric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rvr-flow-fabric__pedestal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rvr-flow-fabric__disc {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 2px solid color-mix(in srgb, var(--fabric-blue) 22%, var(--border-primary));
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    color-mix(in srgb, var(--fabric-blue) 10%, var(--bg-secondary)) 100%
  );
  box-shadow: 0 6px 20px color-mix(in srgb, var(--fabric-blue) 22%, transparent);
}

.rvr-flow-fabric__disc img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.rvr-flow-fabric__base {
  width: 58px;
  height: 12px;
  margin-top: -5px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  background: linear-gradient(180deg, var(--fabric-blue-light), var(--fabric-blue));
  box-shadow: 0 4px 10px color-mix(in srgb, var(--fabric-blue) 28%, transparent);
}

.rvr-flow-fabric__base--lower {
  width: 76px;
  height: 10px;
  margin-top: -2px;
  opacity: 0.8;
}

.rvr-flow-fabric__label {
  margin: 0;
  font-size: var(--fs-caption);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--text-primary);
}

@media (min-width: 1200px) {
  .rvr-hero__content {
    max-width: 460px;
  }

  .rvr-flow-diagram {
    grid-template-columns: repeat(6, minmax(104px, 1fr));
    --rvr-flow-gap: 10px;
    padding-right: calc(var(--rvr-flow-fabric-size) + 8px);
  }

  .rvr-flow-step__card {
    min-height: 124px;
    padding: 12px 10px 10px;
  }

  .rvr-flow-product {
    padding: 16px 14px;
  }
}

/* ── VS comparison (spacing aligned with home .products) ─────── */

.rvr-vs {
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-top: calc(var(--home-section-gap-split) - 8px);
  padding-bottom: calc(var(--home-section-gap-split) - 8px);
  padding-inline: var(--layout-gutter);
}

.rvr-vs__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  max-width: var(--layout-content);
  margin-inline: auto;
}

.rvr-vs__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 24px 24px;
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius);
  background-color: var(--bg-primary);
  overflow: hidden;
}

.rvr-vs__card--raaghu {
  border-color: color-mix(in srgb, var(--fabric-blue) 22%, var(--border-primary));
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--fabric-blue) 9%, var(--bg-primary)) 0%,
    var(--bg-primary) 52%
  );
}

.rvr-vs__card--replit {
  border-color: color-mix(in srgb, var(--rvr-replit-orange) 28%, var(--border-primary));
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--rvr-replit-orange) 10%, var(--bg-primary)) 0%,
    var(--bg-primary) 52%
  );
}

.rvr-vs__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.rvr-vs__logo {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.rvr-vs__logo--replit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rvr-replit-orange);
}

.rvr-vs__logo--replit svg {
  width: 28px;
  height: 28px;
}

.rvr-vs__brand {
  margin: 0 0 2px;
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.rvr-vs__card--raaghu .rvr-vs__brand {
  color: var(--fabric-blue);
}

.rvr-vs__card--replit .rvr-vs__brand {
  color: var(--rvr-replit-orange);
}

.rvr-vs__approach {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.4;
  color: var(--text-secondary);
}

.rvr-vs__pipeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  flex: 1;
  margin-bottom: 24px;
}

.rvr-vs__pipeline--compact {
  justify-content: center;
  gap: 8px;
}

.rvr-vs__pipeline-step {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.rvr-vs__pipeline--compact .rvr-vs__pipeline-step {
  flex: 0 1 auto;
  min-width: 72px;
}

.rvr-vs__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  color: var(--fabric-blue);
  border: 1px solid color-mix(in srgb, var(--border-primary) 80%, var(--fabric-blue) 12%);
  border-radius: var(--border-radius);
  background-color: var(--bg-primary);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--fabric-blue) 10%, transparent);
}

.rvr-vs__card--replit .rvr-vs__step-icon {
  color: var(--rvr-replit-orange);
  border-color: color-mix(in srgb, var(--border-primary) 80%, var(--rvr-replit-orange) 12%);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--rvr-replit-orange) 10%, transparent);
}

.rvr-vs__step-icon svg,
.rvr-vs__step-icon-svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.rvr-vs__step-icon--fabric {
  color: inherit;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--governance-green) 12%, transparent);
}

.rvr-vs__step-icon--fabric img,
.rvr-vs__step-icon--fabric .rvr-vs__step-icon-svg {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.rvr-vs__step-label {
  margin: 0;
  font-size: var(--fs-caption);
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  color: var(--text-primary);
}

.rvr-vs__step-label span {
  display: block;
  margin-top: 1px;
  font-size: var(--fs-micro);
  font-weight: 500;
  color: var(--text-muted);
}

.rvr-vs__chev {
  flex-shrink: 0;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 52px; /* match .rvr-vs__step-icon so chevron centers with the icon box */
  margin-top: 0;
  opacity: 0.45;
}

.rvr-vs__chev::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(-45deg);
}

.rvr-vs__summary {
  margin: 0;
  margin-top: auto;
  padding: 12px 14px;
  font-size: var(--fs-caption);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  overflow: hidden;
  overflow-wrap: anywhere;
  border-radius: var(--border-radius);
}

.rvr-vs__card--raaghu .rvr-vs__summary {
  color: var(--fabric-blue);
  background-color: color-mix(in srgb, var(--fabric-blue) 10%, var(--bg-primary));
}

.rvr-vs__card--replit .rvr-vs__summary {
  color: var(--rvr-replit-orange);
  background-color: color-mix(in srgb, var(--rvr-replit-orange) 12%, var(--bg-primary));
}

.rvr-vs__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

.rvr-vs__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-on-brand);
  border: none;
  border-radius: 50%;
  background-color: var(--text-primary);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--text-primary) 25%, transparent);
}

/* ── Feature grid ────────────────────────────────────────────── */

.rvr-features {
  background-color: var(--bg-secondary);
  padding-top: var(--home-section-gap-split);
  padding-bottom: var(--home-section-gap-tight);
}

.rvr-features__inner {
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
}

.rvr-features .rvr-section-header {
  margin-bottom: 56px;
}

.rvr-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 20px;
  max-width: var(--layout-content);
  margin-inline: auto;
}

.rvr-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius);
  background-color: var(--bg-primary);
  box-sizing: border-box;
}

.rvr-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--fabric-blue);
  border-radius: var(--border-radius);
  background-color: color-mix(in srgb, var(--fabric-blue) 7%, var(--bg-secondary));
}

.rvr-feature-card__icon--fabric {
  color: inherit;
}

.rvr-feature-card__svg,
.rvr-feature-card__icon svg,
.rvr-feature-card__icon img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  object-fit: contain;
}

.rvr-feature-card__body {
  min-width: 0;
}

.rvr-feature-card__title {
  margin: 0 0 6px;
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
}

.rvr-feature-card__text {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── Detailed comparison ─────────────────────────────────────── */

.rvr-detail {
  position: relative;
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-top: var(--home-section-gap-tight);
  padding-bottom: var(--home-section-gap-split);
  padding-inline: var(--layout-gutter);
  overflow: hidden;
}

.rvr-detail::before,
.rvr-detail::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
}

.rvr-detail::before {
  top: 18%;
  left: 6%;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--brand-primary) 14%, transparent) 0%,
    transparent 72%
  );
}

.rvr-detail::after {
  top: 22%;
  right: 4%;
  width: min(38vw, 380px);
  height: min(38vw, 380px);
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--fabric-blue) 12%, transparent) 0%,
    transparent 72%
  );
}

.rvr-detail .rvr-section-header {
  position: relative;
  z-index: 1;
}

.rvr-detail__grid-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--layout-content);
  margin-inline: auto;
}

.rvr-detail__vs {
  position: absolute;
  top: 36px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.rvr-detail__vs-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-on-brand);
  border-radius: 50%;
  background-color: var(--governance-green);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--governance-green) 28%, transparent);
}

.rvr-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rvr-detail__column {
  padding: 36px 32px 32px;
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius);
  background-color: var(--bg-primary);
  box-shadow: 0 4px 24px color-mix(in srgb, var(--text-primary) 4%, transparent);
}

.rvr-detail__column--raaghu {
  border-color: color-mix(in srgb, var(--fabric-blue) 14%, var(--border-primary));
}

.rvr-detail__column--replit {
  border-color: color-mix(in srgb, var(--rvr-replit-orange) 18%, var(--border-primary));
}

.rvr-detail__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 0;
  border-bottom: none;
}

.rvr-detail__header img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.rvr-detail__logo--replit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--rvr-replit-orange);
}

.rvr-detail__logo--replit svg {
  width: 28px;
  height: 28px;
}

.rvr-detail__header h3 {
  margin: 0;
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

.rvr-detail__column--raaghu .rvr-detail__header h3 {
  color: var(--fabric-blue);
}

.rvr-detail__column--replit .rvr-detail__header h3 {
  color: var(--rvr-replit-orange);
}

.rvr-detail__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rvr-detail__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rvr-detail__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.rvr-detail__icon--check {
  color: var(--governance-green);
}

.rvr-detail__icon--cross {
  color: var(--rvr-replit-orange);
}

.rvr-detail__item-copy {
  min-width: 0;
}

.rvr-detail__item-title {
  display: block;
  margin-bottom: 4px;
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
}

.rvr-detail__item-desc {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--text-muted);
}

/* ── Journey timeline ────────────────────────────────────────── */

.rvr-journey {
  background-color: var(--bg-primary);
  padding-top: var(--home-section-gap-split);
  padding-bottom: var(--home-section-gap-tight);
}

.rvr-journey__inner {
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-inline: var(--layout-gutter);
}

.rvr-journey .rvr-section-header {
  margin-bottom: 56px;
}

.rvr-journey__track {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--layout-content);
  margin-inline: auto;
}

.rvr-journey__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  text-align: center;
}

.rvr-journey__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 58px;
  margin-inline: auto;
  margin-bottom: 8px;
  border: none;
  border-radius: 0;
  background: transparent;
  animation: rvr-journey-cloud-float 4.8s ease-in-out infinite;
  will-change: transform;
}

.rvr-journey__step:nth-child(1) .rvr-journey__icon {
  animation-delay: 0s;
}

.rvr-journey__step:nth-child(2) .rvr-journey__icon {
  animation-delay: 0.4s;
}

.rvr-journey__step:nth-child(3) .rvr-journey__icon {
  animation-delay: 0.8s;
}

.rvr-journey__step:nth-child(4) .rvr-journey__icon {
  animation-delay: 1.2s;
}

.rvr-journey__step:nth-child(5) .rvr-journey__icon {
  animation-delay: 1.6s;
}

.rvr-journey__step:nth-child(6) .rvr-journey__icon {
  animation-delay: 2s;
}

.rvr-journey__step:nth-child(7) .rvr-journey__icon {
  animation-delay: 2.4s;
}

.rvr-journey__step:nth-child(8) .rvr-journey__icon {
  animation-delay: 2.8s;
}

@keyframes rvr-journey-cloud-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -3px, 0);
  }
}

.rvr-journey__icon--fabric {
  color: inherit;
}

.rvr-journey__icon-svg,
.rvr-journey__icon svg,
.rvr-journey__icon img {
  display: block;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: contain;
}

.rvr-journey__title {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}

.rvr-journey__text {
  margin: 0;
  max-width: 9.5rem;
  font-size: var(--fs-caption);
  line-height: 1.45;
  color: var(--text-secondary);
}

/* ── Benefits bar ────────────────────────────────────────────── */

.rvr-benefits {
  width: 100%;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-top: var(--home-section-gap-tight);
  padding-bottom: var(--home-section-gap-split);
  padding-inline: var(--layout-gutter);
}

.rvr-benefits__bar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: var(--layout-content);
  margin-inline: auto;
  padding: 36px 40px 32px;
  border: 1px solid var(--border-primary);
  border-radius: var(--border-radius);
  background-color: var(--bg-secondary);
}

.rvr-benefits__heading {
  margin: 0;
  font-size: var(--fs-feature-title);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: var(--text-primary);
}

.rvr-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.rvr-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.rvr-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--fabric-blue) 30%, var(--border-primary));
  border-radius: var(--border-radius);
  color: var(--fabric-blue);
  background-color: var(--bg-primary);
}

.rvr-benefits__icon-svg,
.rvr-benefits__icon svg,
.rvr-benefits__icon img {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.rvr-benefits__copy {
  min-width: 0;
}

.rvr-benefits__title {
  margin: 0 0 4px;
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
}

.rvr-benefits__text {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--text-muted);
}

/* Footer CTA — animated icon sized like Meta Clarity CTA */
.cta-banner--rvr {
  padding: 32px var(--layout-gutter) 64px;
}

.cta-banner--rvr .cta-banner__inner {
  gap: 24px 32px;
  padding: 32px 40px;
}

.cta-banner--rvr .cta-banner__visual {
  width: 76px;
  height: 76px;
}

.cta-banner--rvr .cta-banner__icon {
  width: 100px;
  height: 100px;
}

.cta-banner--rvr .cta-banner__title {
  margin-bottom: 8px;
  font-size: var(--fs-card-title);
  line-height: 1.3;
}

.cta-banner--rvr .cta-banner__text {
  max-width: 520px;
  font-size: var(--fs-base);
  line-height: 1.55;
}

.cta-banner--rvr .cta-banner__actions {
  flex-wrap: nowrap;
  gap: 12px;
}

.cta-banner--rvr .cta-banner__actions .btn {
  min-height: 0;
  padding: 7px 15px;
  font-size: var(--fs-sm);
}

.cta-banner--rvr .cta-banner__actions .btn--primary {
  padding: 7px 17px;
  font-weight: 600;
}

.cta-banner--rvr .cta-banner__actions .btn--outline,
.cta-banner--rvr .cta-banner__actions .btn--hero-demo {
  padding: 7px 13px;
  font-weight: 500;
}

.cta-banner--rvr .cta-banner__actions .btn__icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 1280px) {
  .cta-banner--rvr .cta-banner__actions .btn {
    padding: 7px 15px;
    font-size: var(--fs-sm);
  }

  .cta-banner--rvr .cta-banner__actions .btn--primary {
    padding: 7px 17px;
  }

  .cta-banner--rvr .cta-banner__actions .btn--outline,
  .cta-banner--rvr .cta-banner__actions .btn--hero-demo {
    padding: 7px 13px;
  }
}

@media (max-width: 1024px) {
  .cta-banner--rvr {
    padding: 28px var(--layout-gutter) 56px;
  }

  .cta-banner--rvr .cta-banner__inner {
    gap: 20px;
    padding: 28px 32px;
  }

  .cta-banner--rvr .cta-banner__visual {
    width: 96px;
    height: 96px;
  }

  .cta-banner--rvr .cta-banner__icon {
    width: 100px;
    height: 100px;
  }

  .cta-banner--rvr .cta-banner__actions {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .cta-banner--rvr .cta-banner__visual {
    width: 96px;
    height: 96px;
    overflow: visible;
  }

  .cta-banner--rvr .cta-banner__icon {
    width: 96px;
    height: 96px;
  }

  .cta-banner--rvr .cta-banner__actions {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .cta-banner--rvr .cta-banner__actions .btn {
    width: auto;
    flex: 0 1 auto;
    padding: 6px 10px;
    font-size: var(--fs-caption);
  }
}

main:has(> .cta-banner:last-child) + .site-footer {
  margin-top: 0;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .rvr-features .rvr-section-header,
  .rvr-journey .rvr-section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 1100px) {
  .rvr-vs__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rvr-vs__divider {
    padding: 8px 0;
  }

  .rvr-journey__track {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 28px;
  }

  .rvr-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .rvr-features .rvr-section-header,
  .rvr-journey .rvr-section-header {
    margin-bottom: 32px;
  }

  .rvr-hero__inner {
    gap: 28px;
    padding-bottom: var(--home-section-gap-tight);
  }

  .rvr-hero__badge {
    margin-bottom: 20px;
    padding: 7px 14px;
  }

  .rvr-hero__badge-copy {
    font-size: var(--fs-micro);
  }

  .rvr-hero__title {
    font-size: var(--fs-mobile-hero);
  }

  .rvr-hero__title-line {
    font-size: 1em;
  }

  .rvr-hero__description,
  .rvr-hero__checklist li {
    font-size: var(--fs-sm);
  }

  .rvr-hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
  }

  .rvr-hero__actions .btn {
    width: auto;
    flex-shrink: 0;
    justify-content: center;
    padding: 7px 15px;
    font-size: var(--fs-sm);
    white-space: nowrap;
    text-align: center;
  }

  .rvr-hero__actions .btn--primary {
    padding: 7px 17px;
  }

  .rvr-hero__actions .btn--outline,
  .rvr-hero__actions .btn--hero-demo {
    padding: 7px 13px;
  }

  .rvr-hero__marketplace {
    font-size: var(--fs-sm);
  }

  .rvr-hero__visual {
    padding: 0;
  }

  .rvr-flow-diagram {
    display: block;
    padding-right: 0;
  }

  .rvr-flow-diagram__track {
    display: block;
    margin-bottom: 10px;
  }

  .rvr-flow-diagram__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 10px;
    row-gap: 10px;
  }

  .rvr-flow-step:not(:last-child) .rvr-flow-step__card::after {
    display: none;
  }

  .rvr-flow-diagram__drops {
    display: none;
  }

  .rvr-flow-diagram__bridge {
    display: none;
  }

  .rvr-flow-step__card {
    min-height: 112px;
    padding: 10px 8px;
  }

  .rvr-flow-step__label {
    font-size: var(--fs-micro);
  }

  .rvr-flow-diagram__bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .rvr-flow-product--span-2:nth-child(n) {
    grid-column: auto;
  }

  .rvr-flow-diagram__fabric {
    position: static;
    width: auto;
    height: auto;
    align-self: center;
  }

  .rvr-flow-product__title {
    font-size: var(--fs-sm);
  }

  .rvr-flow-product__subtitle {
    font-size: var(--fs-caption);
  }

  .rvr-flow-product__desc {
    font-size: var(--fs-caption);
  }

  .rvr-flow-diagram__fabric {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
  }

  .rvr-vs {
    padding-top: 24px;
  }

  .rvr-vs__card {
    padding: 24px 20px 20px;
  }

  .rvr-vs__head {
    margin-bottom: 22px;
  }

  .rvr-vs__pipeline {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 16px;
    margin-bottom: 20px;
  }

  .rvr-vs__pipeline-step {
    flex: 0 1 calc(33.333% - 12px);
    min-width: 88px;
  }

  .rvr-vs__pipeline--compact .rvr-vs__pipeline-step {
    flex: 0 1 auto;
    min-width: 80px;
  }

  .rvr-vs__chev {
    display: none;
  }

  .rvr-vs__step-icon {
    width: 46px;
    height: 46px;
  }

  .rvr-vs__step-label {
    font-size: var(--fs-micro);
  }

  .rvr-vs__summary {
    font-size: var(--fs-micro);
    padding: 10px 10px;
  }

  .rvr-features__grid,
  .rvr-detail__grid {
    grid-template-columns: 1fr;
  }

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

  .rvr-feature-card {
    padding: 20px;
  }

  .rvr-detail__column {
    padding: 24px 20px;
  }

  .rvr-detail__grid-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .rvr-detail__grid {
    display: contents;
  }

  .rvr-detail__vs {
    position: static;
    order: 1;
    align-self: center;
    margin: 4px 0;
    transform: none;
  }

  .rvr-detail__column--raaghu {
    order: 0;
  }

  .rvr-detail__column--replit {
    order: 2;
  }

  .rvr-journey__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }

  .rvr-benefits__bar {
    padding: 24px 20px;
    gap: 24px;
  }

  .rvr-benefits__heading {
    font-size: var(--fs-base);
  }
}

@media (max-width: 480px) {
  .rvr-section-title {
    font-size: var(--fs-card-title);
  }

  .rvr-section-subtitle {
    font-size: var(--fs-sm);
  }

  .rvr-hero__title {
    font-size: var(--fs-section-title);
    line-height: 1.25;
  }

  .rvr-hero__title-line {
    font-size: 1em;
  }

  .rvr-hero__inner {
    padding-bottom: 40px;
  }

  .rvr-hero__checklist {
    gap: 10px;
    margin-bottom: 24px;
  }

  .rvr-hero__actions {
    gap: 10px;
    margin-bottom: 20px;
  }

  .rvr-hero__marketplace {
    font-size: var(--fs-caption);
  }

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

  .rvr-flow-step__card {
    min-height: 108px;
  }

  .rvr-flow-fabric__disc {
    width: 56px;
    height: 56px;
  }

  .rvr-flow-fabric__disc img {
    width: 34px;
    height: 34px;
  }

  .rvr-vs__card {
    padding: 20px 16px;
  }

  .rvr-vs__brand {
    font-size: var(--fs-base);
  }

  .rvr-vs__approach {
    font-size: var(--fs-sm);
  }

  .rvr-vs__pipeline-step {
    flex: 0 1 calc(50% - 10px);
    min-width: 76px;
  }

  .rvr-vs__step-icon {
    width: 42px;
    height: 42px;
  }

  .rvr-vs__step-icon svg {
    width: 18px;
    height: 18px;
  }

  .rvr-vs__step-label {
    font-size: var(--fs-micro);
  }

  .rvr-vs__summary {
    font-size: var(--fs-micro);
    padding: 10px 10px;
  }

  .rvr-detail__column {
    padding: 20px 16px;
  }

  .rvr-detail__header h3 {
    font-size: var(--fs-base);
  }

  .rvr-detail__item-title {
    font-size: var(--fs-sm);
  }

  .rvr-detail__item-desc {
    font-size: var(--fs-caption);
  }

  .rvr-journey__icon {
    width: 44px;
    height: 46px;
  }

  .rvr-journey__title {
    font-size: var(--fs-caption);
  }

  .rvr-journey__text {
    max-width: none;
    font-size: var(--fs-micro);
  }

  .rvr-benefits__bar {
    padding: 20px 16px;
    gap: 20px;
  }

  .rvr-benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rvr-benefits__heading {
    font-size: var(--fs-base);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rvr-journey__icon {
    animation: none;
  }
}
