/* RankByLeo ? Navigation + Hero (clean rebuild)
   Solid sky blue + white. No gradients.
*/

:root {
  --rbl-sky: #58a6d6;
  --rbl-sky-deep: #006bbd;
  --rbl-sky-soft: #e7f3fb;
  --rbl-sky-mist: #fff8e7;
  --rbl-cream: #fff8e7;
  --rbl-sun: #de7941;
  --rbl-sun-deep: #c45f2c;
  --rbl-ink: #0f172a;
  --rbl-ink-soft: #334155;
  --rbl-ink-muted: #64748b;
  --rbl-line: #d7e8f4;
  --rbl-shell: 1360px;
  --rbl-gutter: clamp(1.35rem, 4.2vw, 2.75rem);
}

/* ===================== Navigation ? sticky + frosted glass ===================== */
.rbl-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  padding: 0.85rem var(--rbl-gutter, clamp(1.35rem, 4.2vw, 2.75rem));
  pointer-events: none;
  background: transparent;
  transform: none !important;
  opacity: 1 !important;
  transition: padding 0.25s ease, background 0.25s ease;
}

/* Keep sticky visible ? never hide on scroll */
.rbl-header.is-hidden {
  transform: none !important;
  opacity: 1 !important;
  pointer-events: none;
}

body.admin-bar .rbl-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .rbl-header {
    top: 46px;
  }
}

.rbl-header__bar {
  pointer-events: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: calc(var(--rbl-shell) + 2.2rem);
  margin: 0 auto;
  padding: 0.55rem 0.6rem 0.55rem 1.1rem;
  overflow: visible;
  background: #ffffff;
  border: 1px solid #d7e8f4;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.rbl-header.is-scrolled {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.rbl-header.is-scrolled .rbl-header__bar {
  background: #ffffff;
  border-color: #bae6fd;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .rbl-header__bar,
  .rbl-header.is-scrolled .rbl-header__bar {
    background: #ffffff;
  }
}

.rbl-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
}

.rbl-brand img {
  display: block;
  height: 30px;
  width: auto;
}

.rbl-nav {
  display: flex;
  justify-self: center;
  justify-content: center;
}

.rbl-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-nav__list > li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rbl-nav__list > li + li {
  margin-top: 0;
}

.rbl-nav__item--has-sub {
  position: relative;
}

.rbl-nav__sub-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #0f172a;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
}

.rbl-nav__chevron {
  display: none;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.rbl-nav__item--home-mobile {
  display: none;
}

.rbl-nav__sub-toggle:hover,
.rbl-nav__item--has-sub.is-open > .rbl-nav__sub-toggle {
  color: var(--rbl-sky-deep);
  background: var(--rbl-sky-mist);
}

.rbl-nav__sub {
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 0;
  z-index: 60;
  display: none;
  min-width: 14rem;
  margin: 0;
  padding: 0.55rem 0.45rem 0.45rem;
  list-style: none;
  background: #ffffff;
  border: 1px solid #d7e8f4;
  border-radius: 0.9rem;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  pointer-events: auto;
}

/* Invisible bridge so cursor can move from toggle → menu without losing hover */
.rbl-nav__sub::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.85rem;
  height: 0.85rem;
}

.rbl-nav__item--has-sub.is-open > .rbl-nav__sub,
.rbl-nav__item--has-sub:hover > .rbl-nav__sub,
.rbl-nav__item--has-sub:focus-within > .rbl-nav__sub {
  display: grid;
  gap: 0.15rem;
}

.rbl-nav__sub a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.rbl-nav__sub a:hover {
  background: #f4fafd;
  color: #006bbd;
}

.rbl-nav__list a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #0f172a;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.rbl-nav__list a:hover,
.rbl-nav__list a:focus-visible {
  color: var(--rbl-sky-deep);
  background: var(--rbl-sky-mist);
}

.rbl-header__end {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.55rem;
}

.rbl-header__social {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-header__social li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rbl-header__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  color: #006bbd;
  background: #e7f3fb;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rbl-header__social a:hover {
  color: #ffffff;
  background: #006bbd;
  border-color: #006bbd;
  transform: translateY(-1px);
}

.rbl-header__social--mobile {
  display: none;
}

.rbl-header__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a2f 0%, #ff4f00 48%, #e63d00 100%);
  color: #ffffff;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  box-shadow:
    0 8px 22px rgba(255, 79, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rbl-header__cta:hover {
  background: linear-gradient(135deg, #ff8a45 0%, #ff5a12 55%, #f04500 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow:
    0 12px 28px rgba(255, 79, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.rbl-burger {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.rbl-burger span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--rbl-ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.rbl-nav__cta-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .rbl-nav__list a {
    padding: 0.5rem 0.7rem;
    font-size: 0.88rem;
  }
}

.rbl-nav-backdrop {
  display: none;
}

@media (max-width: 900px) {
  .rbl-header,
  .rbl-header__bar {
    overflow: visible;
  }

  .rbl-header__bar {
    grid-template-columns: 1fr auto;
  }

  .rbl-burger {
    display: block;
  }

  .rbl-header__end {
    display: none;
  }

  .rbl-header__cta {
    display: none;
  }

  .rbl-header__social--mobile {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid #e2eef6;
    gap: 0.45rem;
  }

  .rbl-header__social--mobile a {
    width: 2.4rem;
    height: 2.4rem;
  }

  .rbl-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: min(86vw, 22rem);
    height: 100%;
    height: 100dvh;
    margin: 0;
    padding: 5.25rem 1.15rem 1.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    border: none;
    border-left: 1px solid #d7e8f4;
    border-radius: 0;
    box-shadow: -20px 0 48px rgba(15, 23, 42, 0.2);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  .rbl-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  /* Backdrop must sit BELOW the bar (nav lives inside the bar).
     Otherwise the dim layer covers the sidebar and blocks clicks. */
  .rbl-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(3, 18, 38, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  body.nav-open .rbl-nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.nav-open .rbl-header__bar {
    z-index: 2;
  }

  body.nav-open {
    overflow: hidden;
  }

  .rbl-burger {
    position: relative;
    z-index: 3;
  }

  .rbl-burger[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .rbl-burger[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    opacity: 0;
  }

  /* If only two bars, cross the second into X */
  .rbl-burger[aria-expanded="true"] span:not(.sr-only):last-of-type {
    transform: translateY(-6px) rotate(-45deg);
    opacity: 1;
  }

  .rbl-nav__list {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    width: 100%;
  }

  .rbl-nav__item--home-mobile {
    display: list-item;
  }

  .rbl-nav__list > li {
    width: 100%;
  }

  .rbl-nav__list a {
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    font-size: 1.02rem;
  }

  .rbl-nav__item--has-sub {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0.15rem 0;
    padding: 0.2rem;
    border-radius: 1rem;
    background: transparent;
    transition: background 0.2s ease;
  }

  .rbl-nav__item--has-sub.is-open {
    background: #f4fafd;
    border: 1px solid #d7e8f4;
  }

  .rbl-nav__sub-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    font-size: 1.02rem;
  }

  .rbl-nav__chevron {
    display: inline-block;
    margin-left: 0.5rem;
    flex-shrink: 0;
  }

  .rbl-nav__item--has-sub.is-open > .rbl-nav__sub-toggle .rbl-nav__chevron {
    transform: rotate(225deg);
    opacity: 1;
  }

  .rbl-nav__sub {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0 0 0.35rem;
    padding: 0.25rem 0.35rem 0.45rem 0.75rem;
    border: 0;
    border-left: 3px solid #58a6d6;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 0.15rem;
  }

  .rbl-nav__sub::before {
    display: none;
  }

  .rbl-nav__item--has-sub.is-open > .rbl-nav__sub {
    display: grid;
  }

  .rbl-nav__item--has-sub:hover > .rbl-nav__sub {
    display: none;
  }

  .rbl-nav__item--has-sub.is-open:hover > .rbl-nav__sub {
    display: grid;
  }

  .rbl-nav__sub li {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .rbl-nav__sub a {
    width: 100%;
    box-sizing: border-box;
    padding: 0.72rem 0.85rem;
    border-radius: 0.7rem;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 650;
    white-space: normal;
    line-height: 1.35;
  }

  .rbl-nav__sub a:hover,
  .rbl-nav__sub a:focus-visible {
    background: #ffffff;
    color: #006bbd;
  }

  .rbl-nav__cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: auto;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    background: var(--rbl-sky);
    color: #ffffff;
    font-family: var(--font-ui, sans-serif);
    font-weight: 700;
    text-decoration: none;
  }
}

/* ===================== Hero ? First Page style cutout ===================== */
.rbl-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  background: #006bbd;
  padding: clamp(2rem, 4vw, 3.25rem) var(--rbl-gutter, clamp(1.35rem, 4.2vw, 2.75rem)) 0;
  color: #ffffff;
  isolation: isolate;
}

.rbl-hero::before {
  display: none;
}

/* Animated grid, rings, beams, dots + soft orbs */
.rbl-hero__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
}

.rbl-hero__grid {
  position: absolute;
  inset: -8%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 72% 68% at 42% 45%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 42% 45%, #000 20%, transparent 78%);
  animation: rblHeroGridDrift 36s linear infinite;
}

.rbl-hero__beam {
  position: absolute;
  width: 140%;
  height: 42%;
  left: -20%;
  top: 18%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 38%,
    rgba(123, 188, 224, 0.18) 50%,
    rgba(255, 255, 255, 0.06) 62%,
    transparent 100%
  );
  transform: rotate(-12deg);
  filter: blur(1px);
  opacity: 0.85;
  animation: rblHeroBeamSweep 12s ease-in-out infinite;
}

.rbl-hero__ring {
  position: absolute;
  right: -4%;
  top: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.rbl-hero__ring--lg {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  opacity: 0.55;
  animation: rblHeroRingPulse 10s ease-in-out infinite;
}

.rbl-hero__ring--md {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  right: 4%;
  border-color: rgba(255, 248, 231, 0.18);
  opacity: 0.45;
  animation: rblHeroRingPulse 10s ease-in-out infinite 0.6s;
}

.rbl-hero__ring--sm {
  width: min(26vw, 240px);
  height: min(26vw, 240px);
  right: 12%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.22);
  opacity: 0.4;
  animation: rblHeroRingSpin 48s linear infinite;
}

.rbl-hero__dots {
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: 0.45;
  animation: rblHeroDotsPulse 7s ease-in-out infinite;
}

.rbl-hero__dots--drift {
  background-image: radial-gradient(rgba(255, 248, 231, 0.35) 1.35px, transparent 1.45px);
  background-size: 34px 34px;
  opacity: 0.28;
  mix-blend-mode: normal;
  animation: rblHeroDotsDrift 28s linear infinite;
}

.rbl-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}

.rbl-hero__orb--a {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  top: -12%;
  right: 8%;
  background: radial-gradient(circle, rgba(88, 166, 214, 0.55) 0%, transparent 68%);
  animation: rblHeroOrbFloat 11s ease-in-out infinite;
}

.rbl-hero__orb--b {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  left: -6%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(222, 121, 65, 0.28) 0%, transparent 70%);
  animation: rblHeroOrbFloat 14s ease-in-out infinite reverse;
}

.rbl-hero__orb--c {
  width: min(22vw, 180px);
  height: min(22vw, 180px);
  left: 38%;
  top: 6%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 72%);
  opacity: 0.4;
  filter: blur(4px);
  animation: rblHeroOrbFloat 16s ease-in-out infinite 1.2s;
}

.rbl-hero__arcs {
  position: absolute;
  inset: 0;
}

.rbl-hero__arcs i {
  position: absolute;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.rbl-hero__arcs i:nth-child(1) {
  width: 180px;
  height: 180px;
  left: 6%;
  top: 14%;
  transform: rotate(18deg);
  animation: rblHeroArcFloat 9s ease-in-out infinite;
}

.rbl-hero__arcs i:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 18%;
  bottom: 22%;
  border-color: rgba(255, 248, 231, 0.16);
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-28deg);
  animation: rblHeroArcFloat 11s ease-in-out infinite reverse;
}

.rbl-hero__arcs i:nth-child(3) {
  width: 90px;
  height: 90px;
  right: 28%;
  top: 12%;
  border-width: 1px;
  transform: rotate(52deg);
  opacity: 0.7;
  animation: rblHeroArcFloat 13s ease-in-out infinite 0.8s;
}

.rbl-hero__sparkles {
  position: absolute;
  inset: 0;
}

.rbl-hero__sparkles i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.55);
  animation: rblHeroSpark 4.8s ease-in-out infinite;
}

.rbl-hero__sparkles i:nth-child(1) { left: 12%; top: 22%; animation-delay: 0s; }
.rbl-hero__sparkles i:nth-child(2) { left: 28%; top: 58%; animation-delay: 0.7s; width: 4px; height: 4px; }
.rbl-hero__sparkles i:nth-child(3) { left: 46%; top: 18%; animation-delay: 1.2s; }
.rbl-hero__sparkles i:nth-child(4) { left: 62%; top: 42%; animation-delay: 0.4s; width: 3px; height: 3px; }
.rbl-hero__sparkles i:nth-child(5) { left: 74%; top: 16%; animation-delay: 1.8s; }
.rbl-hero__sparkles i:nth-child(6) { left: 18%; top: 72%; animation-delay: 2.2s; width: 4px; height: 4px; }
.rbl-hero__sparkles i:nth-child(7) { left: 88%; top: 62%; animation-delay: 1.1s; }
.rbl-hero__sparkles i:nth-child(8) { left: 54%; top: 78%; animation-delay: 2.6s; width: 3px; height: 3px; }
.rbl-hero__sparkles i:nth-child(9) { left: 8%; top: 44%; animation-delay: 1.5s; width: 3px; height: 3px; }
.rbl-hero__sparkles i:nth-child(10) { left: 36%; top: 34%; animation-delay: 2.9s; width: 4px; height: 4px; }
.rbl-hero__sparkles i:nth-child(11) { left: 70%; top: 72%; animation-delay: 0.9s; }
.rbl-hero__sparkles i:nth-child(12) { left: 92%; top: 28%; animation-delay: 3.2s; width: 3px; height: 3px; }

@keyframes rblHeroDotsDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-34px, -34px, 0); }
}

@keyframes rblHeroDotsPulse {
  0%, 100% { opacity: 0.32; }
  50% { opacity: 0.55; }
}

@keyframes rblHeroOrbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(2%, 3%, 0) scale(1.08); }
}

@keyframes rblHeroSpark {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  40% { opacity: 1; transform: scale(1.15); }
  70% { opacity: 0.45; transform: scale(0.9); }
}

@keyframes rblHeroGridDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-56px, -56px, 0); }
}

@keyframes rblHeroBeamSweep {
  0%, 100% { opacity: 0.55; transform: rotate(-12deg) translateX(-2%); }
  50% { opacity: 0.95; transform: rotate(-12deg) translateX(3%); }
}

@keyframes rblHeroRingPulse {
  0%, 100% { opacity: 0.35; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateY(-50%) scale(1.03); }
}

@keyframes rblHeroRingSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes rblHeroArcFloat {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .rbl-hero__dots,
  .rbl-hero__dots--drift,
  .rbl-hero__orb,
  .rbl-hero__sparkles i,
  .rbl-hero__grid,
  .rbl-hero__beam,
  .rbl-hero__ring,
  .rbl-hero__arcs i {
    animation: none !important;
  }

  .rbl-hero__dots {
    opacity: 0.4;
  }

  .rbl-hero__dots--drift {
    opacity: 0.22;
  }
}

@media (max-width: 780px) {
  .rbl-hero__ring--lg { opacity: 0.35; }
  .rbl-hero__ring--md,
  .rbl-hero__ring--sm { opacity: 0.28; }
  .rbl-hero__arcs { opacity: 0.55; }
  .rbl-hero__beam { opacity: 0.55; }
}

.rbl-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  /* Stable split: copy never collapses under Leo across monitor widths */
  grid-template-columns: minmax(min(100%, 28rem), 1fr) minmax(18rem, 0.92fr);
  align-items: end;
  gap: clamp(1rem, 2.2vw, 2rem);
  flex: 1 1 auto;
  width: 100%;
  max-width: var(--rbl-shell);
  margin: 0 auto;
  min-height: calc(100svh - 6.5rem);
  min-height: calc(100dvh - 6.5rem);
  padding-bottom: 0;
}

.rbl-hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: min(38rem, 100%);
  padding-right: clamp(0.75rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  align-self: center;
  text-align: left;
}

.rbl-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.48rem 1rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #ffffff;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.rbl-hero__eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #de7941;
  box-shadow: 0 0 0 4px rgba(222, 121, 65, 0.28);
}

.rbl-hero h1 {
  margin: 0 0 1.25rem;
  max-width: 22ch;
  color: #ffffff;
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(2.45rem, 5.4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-align: left;
  text-wrap: balance;
}

.rbl-hero h1 em {
  font-style: normal;
  color: #fff8e7;
}

.rbl-hero__lead {
  margin: 0 0 1.85rem;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.68;
  text-align: left;
}

.rbl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-bottom: 0;
}

.rbl-hero__actions .rbl-btn {
  min-height: 56px;
  padding: 0 1.75rem;
  font-size: 1.05rem;
}

.rbl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.6rem;
  border-radius: 0.55rem;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rbl-btn--solid {
  background: #ff5a12;
  color: #ffffff;
  border: 1.5px solid #ff5a12;
  box-shadow: 0 12px 28px rgba(255, 77, 0, 0.4);
}

.rbl-btn--solid:hover {
  background: #e84700;
  border-color: #e84700;
  color: #ffffff;
  transform: translateY(-1px);
}

.rbl-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.rbl-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
}

.rbl-btn--line {
  background: #ffffff;
  color: var(--rbl-ink);
  border: 1.5px solid #cbd5e1;
}

.rbl-btn--line:hover {
  border-color: var(--rbl-sky);
  color: var(--rbl-sky-deep);
}

.rbl-hero__trust {
  margin: 0;
  padding: 0.9rem 0 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0, 40, 90, 0.16);
  overflow: hidden;
}

.rbl-hero__trust p {
  margin: 0 0 0.7rem;
  padding-right: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rbl-hero__trust-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 90%, transparent);
}

.rbl-hero__trust-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0 0.55rem 0 0;
  width: max-content;
  will-change: transform;
  animation: rblHeroTrustScroll 32s linear infinite;
}

.rbl-hero__trust-marquee:hover .rbl-hero__trust-track {
  animation-play-state: paused;
}

.rbl-hero__trust-track li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0.4rem 0.7rem;
  min-width: 5.6rem;
  height: 2.75rem;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 0.6rem;
  box-shadow: 0 2px 8px rgba(0, 40, 90, 0.12);
}

.rbl-hero__trust-track img {
  display: block;
  width: auto;
  max-width: 5.4rem;
  height: 1.7rem;
  object-fit: contain;
  filter: contrast(1.2) saturate(1.15);
}

/* Legacy class kept for safety */
.rbl-hero__trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-hero__trust-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.35rem 0.55rem;
  min-width: 4.5rem;
  height: 2.4rem;
  list-style: none;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0.55rem;
}

.rbl-hero__trust-logos img {
  display: block;
  width: auto;
  max-width: 4.6rem;
  height: 1.5rem;
  object-fit: contain;
  filter: contrast(1.2) saturate(1.15);
}

.rbl-hero__trust-logos img.is-invert,
.rbl-hero__trust-track img.is-invert {
  filter: none;
}

@keyframes rblHeroTrustScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .rbl-hero__trust-track {
    animation: none;
  }

  .rbl-hero__trust-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Media column — cutout portrait (scale with column, no fixed transform) */
.rbl-hero__media {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  min-width: 0;
  margin-right: calc(-1 * var(--rbl-gutter, 2rem));
  margin-bottom: 0;
  padding-bottom: 0;
  overflow: visible;
  pointer-events: none;
  isolation: isolate;
}

.rbl-hero__portrait {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 520px);
  max-height: 100%;
}

.rbl-hero__portrait img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78svh, 720px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 40px rgba(0, 40, 80, 0.28));
}

.rbl-hero__portrait--mascot {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
  padding-bottom: 0;
  margin: 0;
  overflow: visible;
}

.rbl-hero__portrait--mascot .rbl-sticker--hero {
  display: block;
  /* Fill media column height — same visual weight on every monitor */
  width: auto;
  max-width: min(100%, 42vw, 720px);
  height: auto;
  max-height: min(86svh, calc(100dvh - 5.5rem));
  object-fit: contain;
  object-position: bottom right;
  margin: 0 -2% 0 0;
  transform: none;
  transform-origin: bottom right;
  animation: none;
  filter: drop-shadow(0 18px 36px rgba(0, 40, 80, 0.32));
  pointer-events: none;
}

.rbl-hero__portrait--mascot .rbl-hero__badge {
  /* Namecard — left of Leo torso, anchored from figure right (Leo is right-aligned) */
  left: auto;
  right: clamp(34%, 38%, 42%);
  bottom: 16%;
  transform: none;
  transform-origin: right bottom;
  pointer-events: auto;
}

/* ---------- Hero AI marquee — locked to raised finger landmark ---------- */
.rbl-hero {
  /* Must match .rbl-sticker--hero max-height so finger % stays true */
  --rbl-leo-h: min(86svh, calc(100dvh - 5.5rem));
  /* Finger tip band on leo-3d.png (fraction of figure height from bottom) */
  --rbl-finger-y: 0.70;
  --rbl-marquee-half: 2.6rem;
}

.rbl-ai-marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  /* Strip center sits on the pointing fingertip */
  bottom: calc(var(--rbl-leo-h) * var(--rbl-finger-y) - var(--rbl-marquee-half));
  z-index: 1;
  pointer-events: none;
}

.rbl-ai-marquee__viewport {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
  border-block: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 28px rgba(0, 40, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
  /* Fade under copy so logos never fight the headline */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.35) 22%,
    #000 38%,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 8%,
    rgba(0, 0, 0, 0.35) 22%,
    #000 38%,
    #000 100%
  );
}

.rbl-ai-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: rblAiMarqueeX 36s linear infinite;
  will-change: transform;
}

.rbl-ai-marquee__list {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 2.05rem 0;
}

.rbl-ai-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  padding: 0 1.65rem;
  color: #c5ced8;
  white-space: nowrap;
}

.rbl-ai-marquee__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  color: #c5ced8;
}

.rbl-ai-marquee__logo img,
.rbl-ai-marquee__logo svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rbl-ai-marquee__logo img {
  /* black CDN SVGs → light grey */
  filter: brightness(0) invert(0.82);
  opacity: 0.92;
}

.rbl-ai-marquee__logo svg {
  fill: currentColor;
  color: #c5ced8;
}

.rbl-ai-marquee__name {
  font-family: var(--font-ui, sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #c5ced8;
}

@keyframes rblAiMarqueeX {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .rbl-ai-marquee__track {
    animation: none;
  }
}

@media (max-width: 900px) {
  .rbl-ai-marquee {
    top: auto;
    bottom: 0;
  }

  .rbl-ai-marquee__viewport {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .rbl-ai-marquee__list {
    padding: 1.5rem 0;
  }

  .rbl-ai-marquee__item {
    gap: 0.65rem;
    padding: 0 1.2rem;
  }

  .rbl-ai-marquee__logo {
    width: 2.35rem;
    height: 2.35rem;
    flex-basis: 2.35rem;
  }

  .rbl-ai-marquee__name {
    font-size: 1.1rem;
  }
}

/* Mid desktops: keep same composition ratio as ultrawide */
@media (min-width: 901px) and (max-width: 1280px) {
  .rbl-hero {
    --rbl-leo-h: min(82svh, calc(100dvh - 5.75rem));
  }

  .rbl-hero__inner {
    grid-template-columns: minmax(min(100%, 24rem), 1.05fr) minmax(16rem, 0.95fr);
    gap: clamp(0.75rem, 1.8vw, 1.5rem);
  }

  .rbl-hero h1 {
    font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  }

  .rbl-hero__portrait--mascot .rbl-sticker--hero {
    max-width: min(100%, 48vw, 560px);
    max-height: min(82svh, calc(100dvh - 5.75rem));
  }
}

@media (min-width: 1281px) {
  .rbl-hero__portrait--mascot .rbl-sticker--hero {
    max-width: min(100%, 40vw, 720px);
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .rbl-hero {
    --rbl-leo-h: min(78svh, calc(100dvh - 4.5rem));
    --rbl-marquee-half: 2.1rem;
  }

  .rbl-hero__portrait--mascot .rbl-sticker--hero {
    max-height: min(78svh, calc(100dvh - 4.5rem));
  }

  .rbl-hero__copy {
    padding-bottom: clamp(1.25rem, 3vw, 2rem);
  }

  .rbl-ai-marquee__list {
    padding: 1.35rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rbl-hero__portrait--mascot .rbl-sticker--hero {
    animation: none;
  }
}

.why-leo__photo--mascot {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #e7f3fb 0%, #ffffff 70%);
  border-radius: 1.25rem;
  min-height: 320px;
}

.why-leo__photo--mascot .rbl-sticker--about {
  width: min(88%, 360px);
  height: auto;
}

.why-leo__photo--cutout {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 78%, rgba(0, 107, 189, 0.12), transparent 70%),
    linear-gradient(180deg, #f3f9fd 0%, #ffffff 100%);
  border: 1px solid #d7e8f4;
  border-radius: 1.35rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
  padding: 1.5rem 1.1rem 0;
}

.why-leo__photo--cutout img {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.18));
}

@media (max-width: 980px) {
  .why-leo__photo--cutout {
    height: auto;
    min-height: 320px;
    max-width: 22rem;
    margin-inline: auto;
  }

  .why-leo__photo--cutout img {
    height: auto;
    max-height: 420px;
  }
}

.rbl-hero__badge {
  position: absolute;
  left: 4%;
  bottom: 18%;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  min-width: 10.5rem;
  padding: 0.7rem 0.95rem;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.55rem;
  color: #ffffff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.rbl-hero__badge strong {
  font-family: var(--font-ui, sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.rbl-hero__badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Legacy photo/card hooks (unused in new hero) */
.rbl-hero__photo,
.rbl-hero__card,
.rbl-hero__caption,
.rbl-hero__sticker {
  display: none;
}

/* ===================== Shared infographic bits ===================== */
.rbl-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--rbl-sky-soft);
  color: var(--rbl-sky-deep);
  flex: 0 0 auto;
}

.rbl-ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rbl-ico--solid {
  background: var(--rbl-sky);
  color: #ffffff;
}

.rbl-figcap {
  margin: 0.75rem 0 0;
  color: var(--rbl-ink-muted);
  font-size: 0.82rem;
}

/* ---------- Problem section (upgraded) ---------- */
.rbl-problem {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.rbl-problem__inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.rbl-problem__head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}

.rbl-problem__copy h2 {
  margin: 0 0 1rem;
  max-width: 16ch;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.rbl-problem__copy .lead {
  margin: 0;
  max-width: 42ch;
  color: var(--rbl-ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.rbl-infograph {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0.65rem;
}

.rbl-infograph__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 0.95rem 1.05rem;
  background: #ffffff;
  border: 1px solid var(--rbl-line, #e2e8f0);
  border-radius: 1.25rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.rbl-infograph__panel--now {
  background: linear-gradient(160deg, #f0f9ff 0%, #ffffff 55%, #e0f2fe 100%);
  border-color: #7dd3fc;
}

.rbl-infograph__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--rbl-ink-muted, #64748b);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.rbl-infograph__panel--now .rbl-infograph__badge {
  background: #0ea5e9;
  color: #fff;
}

.rbl-infograph__panel strong {
  display: block;
  color: var(--rbl-ink, #0f172a);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.rbl-infograph__panel > p {
  margin: 0;
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.86rem;
  line-height: 1.55;
}

.rbl-infograph__flow {
  position: relative;
  display: grid;
  place-items: center;
  color: #0ea5e9;
  align-self: center;
}

.rbl-infograph__pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.45);
  animation: rblPulseRing 1.8s ease-out infinite;
}

.rbl-infograph__path {
  stroke-dasharray: 6 6;
  animation: rblDashMove 1s linear infinite;
}

@keyframes rblPulseRing {
  0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.45); transform: scale(1); }
  70% { box-shadow: 0 0 0 14px rgba(14, 165, 233, 0); transform: scale(1.05); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); transform: scale(1); }
}

@keyframes rblDashMove {
  to { stroke-dashoffset: -12; }
}

@keyframes rblRailRun {
  0% { left: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@keyframes rblFloatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Mini SERP mock */
.rbl-serp {
  position: relative;
  margin: 0.15rem 0 0.35rem;
  padding: 0.7rem;
  border-radius: 0.9rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.rbl-serp__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
}

.rbl-serp__bar i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.rbl-serp__row {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.rbl-serp__row b {
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 800;
}

.rbl-serp__row span {
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #cbd5e1, #e2e8f0);
}

.rbl-serp__row.is-top span {
  background: linear-gradient(90deg, #38bdf8, #bae6fd);
}

.rbl-serp__click {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.35rem;
  color: #0284c7;
  font-size: 0.72rem;
  font-weight: 800;
  animation: rblFloatY 2s ease-in-out infinite;
}

/* Multi-channel hub */
.rbl-channels {
  position: relative;
  min-height: 9.5rem;
  margin: 0.1rem 0 0.25rem;
  padding: 0.4rem 0.2rem 0.2rem;
}

.rbl-channels__hub {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #0ea5e9, #0284c7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  transform: translateX(-50%);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35);
}

.rbl-channels__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.rbl-channels__lines path {
  fill: none;
  stroke: #7dd3fc;
  stroke-width: 1.6;
  stroke-dasharray: 4 4;
  opacity: 0.85;
}

.rbl-channels__dot {
  fill: #0284c7;
}

.rbl-channels__nodes {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.15rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-channels__nodes li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #bae6fd;
  color: #0f172a;
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.rbl-channels__nodes li + li {
  margin-top: 0;
}

.rbl-channels__nodes i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #0ea5e9;
}

.rbl-channels__nodes .is-ai i { background: #38bdf8; }
.rbl-channels__nodes .is-chat i { background: #10b981; }
.rbl-channels__nodes .is-gem i { background: #8b5cf6; }
.rbl-channels__nodes .is-px i { background: #f59e0b; }

.rbl-journey {
  position: relative;
  padding: clamp(1.5rem, 3.2vw, 2.1rem);
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(14, 165, 233, 0.1), transparent 58%),
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(255, 122, 47, 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid #d7e8f4;
  border-radius: 1.6rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 40px rgba(15, 23, 42, 0.07);
}

.rbl-journey__head {
  display: block;
  margin-bottom: 1.45rem;
  max-width: 40rem;
}

.rbl-journey__mascot {
  display: none;
}

.rbl-journey__eyebrow {
  margin: 0 0 0.4rem;
  color: #de7941;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rbl-journey__head h3 {
  margin: 0;
  color: var(--rbl-ink, #0f172a);
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.rbl-journey__lead {
  margin: 0.55rem 0 0;
  max-width: 38rem;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.65;
}

.rbl-journey__track {
  position: relative;
}

.rbl-journey__rail {
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #bae6fd 0%, #38bdf8 40%, #0284c7 100%);
  opacity: 0.85;
}

.rbl-journey__runner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 999px;
  background: #fff;
  border: 2.5px solid #0284c7;
  box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.16);
  animation: rblRailRun 4.8s ease-in-out infinite;
}

.rbl-journey__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-journey__steps > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  margin: 0;
  padding: 1.05rem 0.95rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.15rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rbl-journey__steps > li:hover {
  transform: translateY(-4px);
  border-color: #7dd3fc;
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.14);
}

.rbl-journey__steps > li + li {
  margin-top: 0;
}

.rbl-journey__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0ea5e9;
  color: #0369a1;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.rbl-journey__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.7rem;
  border-radius: 0.75rem;
  background: #eef8ff;
  border: 1px solid #d7eefb;
  color: #0284c7;
}

.rbl-journey__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rbl-journey__icon--solid {
  background: linear-gradient(145deg, #38bdf8, #0284c7);
  border-color: transparent;
  color: #ffffff;
}

.rbl-journey__steps > li.is-end {
  background: linear-gradient(165deg, #e0f2fe 0%, #f0f9ff 45%, #ffffff 100%);
  border-color: #7dd3fc;
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.12);
}

.rbl-journey__steps > li.is-end .rbl-journey__num {
  background: linear-gradient(140deg, #38bdf8 0%, #0284c7 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}

.rbl-journey__steps h3 {
  margin: 0 0 0.35rem;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  min-height: 0;
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.rbl-journey__steps > li > p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.45;
}

.rbl-journey__preview {
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 3.4rem;
  margin-top: auto;
  padding-top: 1rem;
}

.rbl-journey__result {
  display: none;
}

.rbl-journey__foot {
  display: none;
}

.rbl-journey__note {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #e2eef8;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.rbl-journey__mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: 0.28rem;
  width: 100%;
  margin: 0;
}

.rbl-journey__mini > span {
  display: block;
  height: 0.4rem;
  border-radius: 999px;
  background: #cbd5e1;
}

.rbl-journey__mini > span:nth-child(1) { width: 78%; background: #38bdf8; }
.rbl-journey__mini > span:nth-child(2) { width: 62%; }
.rbl-journey__mini > span:nth-child(3) { width: 48%; }

.rbl-journey__mini--ai {
  gap: 0.35rem;
  padding: 0.5rem 0.55rem;
  border-radius: 0.65rem;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
}

.rbl-journey__mini--ai > span {
  width: auto;
  height: auto;
  padding: 0.12rem 0.4rem;
  border-radius: 0.35rem;
  background: #0ea5e9;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.rbl-journey__mini--ai > b {
  display: block;
  width: 100%;
  height: 0.28rem;
  border-radius: 999px;
  background: #bae6fd;
}

.rbl-journey__mini--chat {
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.rbl-journey__mini--chat i {
  display: block;
  width: 72%;
  height: 0.95rem;
  border-radius: 0.55rem 0.55rem 0.55rem 0.2rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.rbl-journey__mini--chat i:last-child {
  width: 58%;
  margin-left: auto;
  border-radius: 0.55rem 0.55rem 0.2rem 0.55rem;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.rbl-journey__mini--stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.rbl-journey__mini--ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 2rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a2f 0%, #ff4f00 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(255, 79, 0, 0.28);
}

.rbl-insight {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1.5px solid #d7e8f4;
  border-radius: 1.5rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.rbl-insight--v2 {
  gap: 0;
  padding: 0;
}

/* ---------- Insight v3: clearer contrast + flow ---------- */
.rbl-insight--v3 {
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.rbl-insight--v3 .rbl-insight__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.85fr);
  align-items: end;
  gap: 1.25rem 2rem;
  margin-bottom: 1.15rem;
  padding: 0;
  background: none;
  border: 0;
}

.rbl-insight--v3 .rbl-insight__head-copy .section-eyebrow {
  margin: 0 0 0.5rem;
}

.rbl-insight--v3 .rbl-insight__head-copy h3 {
  margin: 0 0 0.6rem;
  color: #0f172a;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.rbl-insight--v3 .rbl-insight__head-copy > p {
  margin: 0;
  max-width: 40rem;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.65;
}

.rbl-insight__chain {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.rbl-insight__chain-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.rbl-insight__chain-node.is-gap {
  background: #e7f3fb;
  color: #006bbd;
  border: 1.5px solid #9ec9e6;
}

.rbl-insight__chain-node.is-blind {
  background: #ffe8d9;
  color: #c45f2c;
  border: 1.5px solid #ffc7a3;
}

.rbl-insight__chain-node.is-loss {
  background: #0f172a;
  color: #ffffff;
  border: 1.5px solid #0f172a;
}

.rbl-insight__chain-arrow {
  width: 1.1rem;
  height: 2px;
  background: #94a3b8;
  position: relative;
}

.rbl-insight__chain-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #94a3b8;
  border-top: 2px solid #94a3b8;
  transform: translateY(-50%) rotate(45deg);
}

.rbl-insight--v3 .rbl-insight__steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.15fr);
  align-items: stretch;
  gap: 0.75rem;
}

.rbl-insight--v3 .rbl-insight__step {
  gap: 0.95rem;
  padding: 1.35rem 1.2rem 1.4rem;
  border: 1.5px solid #d7e8f4;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.rbl-insight--v3 .rbl-insight__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 107, 189, 0.1);
  border-color: #9ec9e6;
}

.rbl-insight--v3 .rbl-insight__step--warn {
  background: linear-gradient(180deg, #fffaf5 0%, #ffffff 70%);
  border-color: #ffd7bf;
}

.rbl-insight--v3 .rbl-insight__step--warn:hover {
  border-color: #ffb380;
  box-shadow: 0 18px 36px rgba(222, 121, 65, 0.12);
}

.rbl-insight--v3 .rbl-insight__step--fix {
  background: linear-gradient(165deg, #e7f3fb 0%, #ffffff 42%);
  border-color: #58a6d6;
  box-shadow: 0 16px 34px rgba(0, 107, 189, 0.12);
}

.rbl-insight--v3 .rbl-insight__step--fix:hover {
  border-color: #006bbd;
}

.rbl-insight__step-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.rbl-insight--v3 .rbl-insight__step-num {
  width: 2.55rem;
  height: 2.55rem;
  background: #006bbd;
  color: #ffffff;
  font-size: 0.84rem;
  box-shadow: 0 8px 18px rgba(0, 107, 189, 0.28);
}

.rbl-insight--v3 .rbl-insight__step--warn .rbl-insight__step-num {
  background: linear-gradient(135deg, #ff7a2f 0%, #e63d00 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(230, 61, 0, 0.28);
}

.rbl-insight--v3 .rbl-insight__step--fix .rbl-insight__step-num {
  background: #0f172a;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.28);
}

.rbl-insight--v3 .rbl-insight__step-label {
  margin: 0;
  font-size: 1.08rem;
}

.rbl-insight--v3 .rbl-insight__step ul {
  gap: 0.7rem;
}

.rbl-insight--v3 .rbl-insight__step li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  background: #f8fbfe;
  border: 1px solid #e2eef6;
  border-radius: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.rbl-insight--v3 .rbl-insight__step li:hover {
  background: #ffffff;
  border-color: #9ec9e6;
}

.rbl-insight--v3 .rbl-insight__step--warn li {
  background: #fff8f3;
  border-color: #ffe0cc;
}

.rbl-insight--v3 .rbl-insight__step--fix li {
  background: rgba(255, 255, 255, 0.92);
  border-color: #cfe4f5;
}

.rbl-insight__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  margin-top: 0.1rem;
  border-radius: 0.5rem;
  background: #dbeafe;
  color: #006bbd;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

.rbl-insight__ico--warn {
  background: #ffe8d9;
  color: #e63d00;
}

.rbl-insight__ico--ok {
  background: #006bbd;
  color: #ffffff;
}

.rbl-insight--v3 .rbl-insight__step strong {
  font-size: 0.95rem;
}

.rbl-insight--v3 .rbl-insight__step span {
  font-size: 0.86rem;
}

.rbl-insight__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  align-self: center;
}

.rbl-insight__connector span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #9ec9e6, #58a6d6);
  position: relative;
  border-radius: 999px;
}

.rbl-insight__connector span::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #58a6d6;
  border-top: 2px solid #58a6d6;
  transform: translateY(-50%) rotate(45deg);
}

.rbl-insight__connector--fix span {
  background: linear-gradient(90deg, #ffb380, #006bbd);
}

.rbl-insight__connector--fix span::after {
  border-color: #006bbd;
}

.rbl-insight__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-top: 1.15rem;
  padding: 1.05rem 1.2rem;
  border-radius: 1.1rem;
  background: linear-gradient(120deg, #0f172a 0%, #006bbd 100%);
  color: #ffffff;
}

.rbl-insight__foot p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.rbl-insight__foot .rbl-btn--solid {
  background: linear-gradient(135deg, #ff7a2f 0%, #ff4f00 55%, #e63d00 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 10px 22px rgba(255, 79, 0, 0.35);
}

@media (max-width: 980px) {
  .rbl-insight--v3 .rbl-insight__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rbl-insight__chain {
    justify-content: flex-start;
  }

  .rbl-insight--v3 .rbl-insight__steps {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .rbl-insight__connector {
    width: 100%;
    height: 1.1rem;
  }

  .rbl-insight__connector span {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #9ec9e6, #58a6d6);
    margin-inline: auto;
  }

  .rbl-insight__connector span::after {
    right: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(50%) rotate(135deg);
  }
}

.rbl-insight__head {
  padding: 1.35rem 1.4rem 1.15rem;
  background: linear-gradient(120deg, #eef6fc 0%, #fff7f2 100%);
  border-bottom: 1px solid #e2eef8;
}

.rbl-insight__head .section-eyebrow {
  margin: 0 0 0.45rem;
}

.rbl-insight__head h3 {
  margin: 0 0 0.55rem;
  color: #0f172a;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.rbl-insight__head > p {
  margin: 0;
  max-width: 42rem;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.rbl-insight__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.rbl-insight__step {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1.25rem 1.15rem 1.35rem;
  border-right: 1px solid #e2eef8;
  background: #ffffff;
}

.rbl-insight__step:last-child {
  border-right: 0;
}

.rbl-insight__step--warn {
  background: #fffaf5;
}

.rbl-insight__step--fix {
  background: #f7fbfe;
}

.rbl-insight__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: #e7f3fb;
  color: #006bbd;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
}

.rbl-insight__step--warn .rbl-insight__step-num {
  background: #ffe8d9;
  color: #e63d00;
}

.rbl-insight__step--fix .rbl-insight__step-num {
  background: #006bbd;
  color: #ffffff;
}

.rbl-insight__step-label {
  margin: 0;
  color: #0f172a;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-insight__step ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.rbl-insight__step li {
  margin: 0;
  padding: 0.75rem 0.85rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
}

.rbl-insight__step--fix li {
  border-color: #cfe4f5;
  background: #ffffff;
}

.rbl-insight__step strong {
  display: block;
  margin: 0 0 0.2rem;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.rbl-insight__step span {
  display: block;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .rbl-insight__steps {
    grid-template-columns: 1fr;
  }

  .rbl-insight__step {
    border-right: 0;
    border-bottom: 1px solid #e2eef8;
  }

  .rbl-insight__step:last-child {
    border-bottom: 0;
  }
}

.rbl-insight--clear {
  grid-template-columns: 1fr;
}

.rbl-insight__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: linear-gradient(120deg, #eef6fc 0%, #fff4ec 100%);
  border-bottom: 1px solid #e2eef8;
}

.rbl-insight__banner-copy {
  min-width: 0;
}

.rbl-insight__banner .rbl-insight__label {
  margin: 0 0 0.35rem;
  color: #de7941;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rbl-insight__banner h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.rbl-sticker--insight-banner {
  width: 5.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.12));
}

.rbl-insight__flow {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.2fr;
  gap: 0;
}

.rbl-insight__col {
  position: relative;
  padding: 1.15rem;
  border-right: 1px solid #e2eef8;
}

.rbl-insight__col:last-child {
  border-right: 0;
}

.rbl-insight__col-label {
  margin: 0 0 0.85rem;
  color: #006bbd;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rbl-insight__col--problem {
  background: #f8fbfe;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.rbl-insight__col--result {
  background: #fff8f1;
}

.rbl-insight__col--fix {
  background: #ffffff;
}

.rbl-gap-card {
  padding: 0.95rem 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.rbl-gap-card__top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.rbl-sticker--gap {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
}

.rbl-gap-card__tag {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rbl-gap-card__tag.is-bad {
  background: #fee2e2;
  color: #b91c1c;
}

.rbl-gap-card__tag.is-warn {
  background: #ffedd5;
  color: #c2410c;
}

.rbl-gap-card strong {
  display: block;
  margin: 0 0 0.3rem;
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.rbl-gap-card p {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.5;
}

.rbl-gap-result {
  position: relative;
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  min-height: 100%;
  border-radius: 1rem;
  background: #ffffff;
  border: 1.5px solid #fed7aa;
  box-shadow: 0 8px 20px rgba(222, 121, 65, 0.08);
}

.rbl-gap-result__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rbl-gap-result__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.2rem;
  height: 1.85rem;
  padding: 0 0.55rem;
  border-radius: 0.5rem;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.78rem;
  font-weight: 800;
}

.rbl-gap-result__badge.is-ai {
  background: #ede9fe;
  color: #6d28d9;
}

.rbl-gap-result__row p {
  margin: 0;
  color: #7c2d12;
  font-size: 0.95rem;
  font-weight: 700;
}

.rbl-gap-result__end {
  margin: 0.25rem 0 0 !important;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  background: #fff1e8;
  color: #9a3412 !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  text-align: center;
}

.rbl-sticker--gap-result {
  position: absolute;
  right: 0.4rem;
  bottom: 3.4rem;
  width: 3.6rem;
  opacity: 0.95;
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.12));
}

.rbl-insight__fixes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.rbl-insight__fixes li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  margin: 0;
  padding: 0.7rem 0.8rem;
  background: #eef6fc;
  border: 1px solid #cfe4f5;
  border-radius: 0.85rem;
}

.rbl-insight__fixes em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #006bbd;
  color: #fff;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 800;
}

.rbl-insight__fixes strong {
  display: block;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.rbl-insight__fixes span {
  display: block;
  margin-top: 0.12rem;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.35;
}

.rbl-insight__fix-mascot {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.65rem;
}

.rbl-sticker--insight-fix {
  width: 4.5rem;
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.12));
}

/* legacy insight pieces kept for other pages */
.rbl-insight--light {
  background: #ffffff;
}

.rbl-insight__media {
  min-height: 260px;
  padding: clamp(1.15rem, 2.5vw, 1.6rem);
  background: #f4f9fd;
  border-right: 1px solid #e2eef8;
}

.rbl-gap-cards {
  display: grid;
  gap: 0.75rem;
  height: 100%;
  align-content: center;
}

.rbl-gap-viz {
  display: none;
}

.rbl-insight__body {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: #ffffff;
  color: #0f172a;
}

.rbl-insight__label {
  margin: 0 0 0.55rem;
  color: #de7941;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rbl-insight__body h3 {
  margin: 0 0 0.75rem;
  color: #0f172a;
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.rbl-insight__body > p {
  margin: 0 0 1rem;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.7;
}

.rbl-insight__need {
  margin: 0 0 0.55rem !important;
  color: #005291 !important;
  font-size: 0.88rem !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.rbl-insight__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 24rem;
}

.rbl-insight__chips li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 2.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.7rem;
  background: #eef6fc;
  border: 1px solid #cfe4f5;
  color: #005291;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.rbl-insight__chips li + li {
  margin-top: 0;
}

@media (max-width: 980px) {
  .rbl-insight__flow {
    grid-template-columns: 1fr;
  }

  .rbl-insight__col {
    border-right: 0;
    border-bottom: 1px solid #e2eef8;
  }

  .rbl-insight__col:last-child {
    border-bottom: 0;
  }

  .rbl-insight__banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 980px) {
  .rbl-problem__head,
  .rbl-insight {
    grid-template-columns: 1fr;
  }

  .rbl-journey__rail {
    display: none;
  }

  .rbl-journey__steps {
    grid-template-columns: 1fr 1fr;
  }

  .rbl-journey__head {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .rbl-infograph {
    grid-template-columns: 1fr;
  }

  .rbl-infograph__flow {
    transform: rotate(90deg);
    margin: 0.15rem 0;
  }

  .rbl-journey__steps {
    grid-template-columns: 1fr;
  }

  .rbl-problem__copy h2 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rbl-infograph__pulse,
  .rbl-infograph__path,
  .rbl-serp__click,
  .rbl-journey__runner {
    animation: none;
  }
}

/* ---------- SEO + GEO system (vivid) ---------- */
.rbl-geo {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.rbl-geo__inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.rbl-geo__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: none;
}

.rbl-geo__head-copy {
  max-width: 42rem;
}

.rbl-geo__head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.rbl-geo__head p {
  margin: 0;
  color: var(--rbl-ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.rbl-geo__head-mascot {
  flex: 0 0 auto;
  width: clamp(6rem, 14vw, 8.5rem);
  filter: drop-shadow(0 12px 24px rgba(14, 165, 233, 0.2));
}

.rbl-geo__stage {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    radial-gradient(ellipse 55% 60% at 78% 45%, rgba(14, 165, 233, 0.12), transparent 60%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.98) 100%);
  border: 1px solid rgba(186, 230, 253, 0.85);
  border-radius: 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.rbl-geo__map-eyebrow {
  margin: 0 0 0.45rem;
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rbl-geo__stage-copy h3 {
  margin: 0 0 0.55rem;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.rbl-geo__stage-copy p {
  margin: 0 0 1rem;
  color: var(--rbl-ink-soft);
  line-height: 1.7;
}

.rbl-geo__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-geo__signals li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #bae6fd;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}

.rbl-geo__signals li + li {
  margin-top: 0;
}

.rbl-geo__signals i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #0ea5e9;
}

.rbl-geo__signals .is-ai { background: #38bdf8; }
.rbl-geo__signals .is-chat { background: #10b981; }
.rbl-geo__signals .is-gem { background: #8b5cf6; }
.rbl-geo__signals .is-px { background: #f59e0b; }

.rbl-geo__orbit {
  position: relative;
  min-height: 320px;
  aspect-ratio: 520 / 340;
  overflow: hidden;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.08), transparent 55%),
    #ffffff;
  border: 1px solid var(--rbl-line);
}

.rbl-geo__orbit-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.rbl-geo__orbit-rings span {
  position: absolute;
  border: 1px dashed rgba(125, 211, 252, 0.7);
  border-radius: 999px;
  animation: rblOrbitSpin 18s linear infinite;
}

.rbl-geo__orbit-rings span:nth-child(1) {
  width: 42%;
  aspect-ratio: 1;
  animation-duration: 14s;
}

.rbl-geo__orbit-rings span:nth-child(2) {
  width: 64%;
  aspect-ratio: 1;
  animation-direction: reverse;
  animation-duration: 22s;
}

.rbl-geo__orbit-rings span:nth-child(3) {
  width: 86%;
  aspect-ratio: 1;
  animation-duration: 28s;
  opacity: 0.55;
}

.rbl-geo__arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rbl-geo__arc {
  fill: none;
  stroke: #7dd3fc;
  stroke-width: 2;
  stroke-dasharray: 8 8;
  opacity: 0.55;
}

.rbl-geo__stage.is-visible .rbl-geo__arc,
.rbl-geo__stage.is-animated .rbl-geo__arc {
  animation: rblDashMove 1.1s linear infinite;
}

.rbl-geo__pulse-dot {
  fill: #0284c7;
}

.rbl-geo__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #0ea5e9, #0284c7);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 8px rgba(14, 165, 233, 0.16),
    0 14px 30px rgba(2, 132, 199, 0.35);
  animation: rblHubPulse 2.4s ease-in-out infinite;
}

.rbl-geo__hub strong {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.rbl-geo__hub span {
  margin-top: 0.15rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.rbl-geo__node {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.rbl-geo__stage.is-visible .rbl-geo__node,
.rbl-geo__stage.is-animated .rbl-geo__node {
  opacity: 1;
  transform: scale(1);
}

.rbl-geo__node:nth-of-type(1) { transition-delay: 0.15s; }
.rbl-geo__node--g { top: 18%; left: 8%; transition-delay: 0.1s; }
.rbl-geo__node--ai { top: 6%; left: 28%; transition-delay: 0.2s; }
.rbl-geo__node--chat { top: 10%; right: 12%; transition-delay: 0.3s; }
.rbl-geo__node--gem { top: 38%; right: 4%; transition-delay: 0.4s; }
.rbl-geo__node--px { bottom: 14%; right: 8%; transition-delay: 0.5s; }

.rbl-geo__node b {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: #0ea5e9;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
}

.rbl-geo__node--ai b { background: #38bdf8; color: #0f172a; }
.rbl-geo__node--chat b { background: #10b981; }
.rbl-geo__node--gem b { background: #8b5cf6; }
.rbl-geo__node--px b { background: #f59e0b; color: #0f172a; }

.rbl-geo__node span {
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.rbl-geo__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rbl-geo__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--rbl-line);
  border-radius: 1.4rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rbl-geo__card:hover {
  transform: translateY(-4px);
  border-color: #bae6fd;
  box-shadow: 0 20px 44px rgba(14, 165, 233, 0.12);
}

.rbl-geo__card-viz {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  min-height: 180px;
  padding: 1.1rem 1.15rem 1rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(125, 211, 252, 0.35), transparent 45%),
    linear-gradient(160deg, #e0f2fe 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
}

.rbl-geo__card-viz--geo {
  background:
    radial-gradient(circle at 15% 30%, rgba(167, 139, 250, 0.22), transparent 45%),
    linear-gradient(160deg, #eff6ff 0%, #f8fafc 100%);
}

.rbl-geo__card-step {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 2.2rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.rbl-geo__stack {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 6.5rem;
  padding-right: 0.25rem;
}

.rbl-geo__stack i {
  display: block;
  flex: 1;
  height: var(--h, 50%);
  border-radius: 0.45rem 0.45rem 0.2rem 0.2rem;
  background: linear-gradient(180deg, #38bdf8, #bae6fd);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.rbl-geo__pair.is-visible .rbl-geo__stack i:nth-child(1) { transition-delay: 0.05s; transform: scaleY(1); }
.rbl-geo__pair.is-visible .rbl-geo__stack i:nth-child(2) { transition-delay: 0.15s; transform: scaleY(1); }
.rbl-geo__pair.is-visible .rbl-geo__stack i:nth-child(3) { transition-delay: 0.25s; transform: scaleY(1); }
.rbl-geo__pair.is-visible .rbl-geo__stack i:nth-child(4) { transition-delay: 0.35s; transform: scaleY(1); }

.rbl-geo__bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-content: flex-end;
  min-height: 6.5rem;
}

.rbl-geo__bubbles span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #c4b5fd;
  color: #5b21b6;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(91, 33, 182, 0.08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.rbl-geo__pair.is-visible .rbl-geo__bubbles span {
  opacity: 1;
  transform: translateY(0);
}

.rbl-geo__pair.is-visible .rbl-geo__bubbles span:nth-child(1) { transition-delay: 0.1s; }
.rbl-geo__pair.is-visible .rbl-geo__bubbles span:nth-child(2) { transition-delay: 0.2s; }
.rbl-geo__pair.is-visible .rbl-geo__bubbles span:nth-child(3) { transition-delay: 0.3s; }
.rbl-geo__pair.is-visible .rbl-geo__bubbles span:nth-child(4) { transition-delay: 0.4s; }

.rbl-geo__card-viz-label {
  margin: 0;
  color: #0284c7;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rbl-geo__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: 1.35rem 1.35rem 1.5rem;
}

.rbl-geo__chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--rbl-sky-soft);
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rbl-geo__card--geo .rbl-geo__chip {
  background: #ede9fe;
  color: #5b21b6;
}

.rbl-geo__card-body h3 {
  margin: 0;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.rbl-geo__card-body > p {
  margin: 0;
  color: var(--rbl-ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.rbl-geo__card-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
}

.rbl-geo__card-body li {
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--rbl-line);
  color: var(--rbl-ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.rbl-geo__card-body li + li {
  margin-top: 0;
}

.rbl-geo__system {
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: #ffffff;
  border: 1px solid var(--rbl-line);
  border-radius: 1.5rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.rbl-geo__system-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.1rem;
}

.rbl-geo__system-head h3 {
  margin: 0 0 0.25rem;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.rbl-geo__system-head p {
  margin: 0;
  color: var(--rbl-ink-muted);
  font-size: 0.92rem;
}

.rbl-geo__system-mascot {
  width: 5.25rem;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.12));
}

.rbl-geo__layers {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.rbl-geo__layer-bar {
  position: relative;
  height: 2.35rem;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #f1f5f9;
}

.rbl-geo__layer-bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #bae6fd, #0ea5e9);
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.rbl-geo__layer-bar:nth-child(2)::before {
  background: linear-gradient(90deg, #93c5fd, #0284c7);
}

.rbl-geo__layer-bar:nth-child(3)::before {
  background: linear-gradient(90deg, #7dd3fc, #0369a1);
}

.rbl-geo__system.is-visible .rbl-geo__layer-bar::before,
.rbl-geo__system.is-animated .rbl-geo__layer-bar::before {
  width: var(--w, 50%);
}

.rbl-geo__layer-bar span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 0.9rem;
  color: #0f172a;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
}

.rbl-geo__pillars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-geo__pillars::before {
  content: "";
  position: absolute;
  top: 1.55rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #bae6fd 0%, #0ea5e9 50%, #0284c7 100%);
  opacity: 0.7;
}

.rbl-geo__pillars > li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 1.2rem 1.15rem 1.3rem;
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
  border: 1px solid var(--rbl-line);
  border-radius: 1.15rem;
}

.rbl-geo__pillars > li + li {
  margin-top: 0;
}

.rbl-geo__pillar-num {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.15rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #bae6fd;
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rbl-geo__pillars h4 {
  margin: 0;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-geo__pillars p {
  margin: 0;
  color: var(--rbl-ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.rbl-geo__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.rbl-geo__tags span {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--rbl-sky-mist);
  color: var(--rbl-sky-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.rbl-geo__pillars > li:last-child {
  background: linear-gradient(165deg, #e0f2fe 0%, #f0f9ff 55%, #ffffff 100%);
  border-color: #7dd3fc;
}

@keyframes rblOrbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes rblHubPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.16), 0 14px 30px rgba(2, 132, 199, 0.35); }
  50% { box-shadow: 0 0 0 14px rgba(14, 165, 233, 0.08), 0 16px 34px rgba(2, 132, 199, 0.4); }
}

@media (max-width: 980px) {
  .rbl-geo__stage,
  .rbl-geo__pair,
  .rbl-geo__pillars {
    grid-template-columns: 1fr;
  }

  .rbl-geo__pillars::before {
    display: none;
  }

  .rbl-geo__orbit {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .rbl-geo__head-mascot,
  .rbl-geo__system-mascot {
    display: none;
  }

  .rbl-geo__node span {
    display: none;
  }

  .rbl-geo__node {
    padding: 0.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rbl-geo__orbit-rings span,
  .rbl-geo__hub,
  .rbl-geo__arc {
    animation: none !important;
  }

  .rbl-geo__node,
  .rbl-geo__stack i,
  .rbl-geo__bubbles span {
    opacity: 1;
    transform: none;
  }

  .rbl-geo__layer-bar::before {
    width: var(--w, 50%);
    transition: none;
  }
}

/* ---------- SEO + GEO system end ---------- */

/* ---------- Flow (search journey) ---------- */
.rbl-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
  margin: 2rem 0 1.25rem;
}

.rbl-flow__step {
  position: relative;
  padding: 1.25rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--rbl-line);
  border-radius: 1.1rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.rbl-flow__step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid #bae6fd;
  border-right: 2px solid #bae6fd;
  transform: translateY(-50%) rotate(45deg);
}

.rbl-flow__step:last-child::after {
  display: none;
}

.rbl-flow__num {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--rbl-sky);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.rbl-flow__step h3 {
  margin: 0.65rem 0 0.35rem;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-flow__step p {
  margin: 0;
  color: var(--rbl-ink-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.rbl-flow__step.is-accent {
  background: var(--rbl-sky-mist);
  border-color: #bae6fd;
}

/* ---------- Layer stack (SEO ? Content ? GEO) ---------- */
.rbl-stack {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  margin: 2rem 0 0.5rem;
}

.rbl-stack__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.35rem;
  background: #ffffff;
  border: 1.5px solid var(--rbl-line);
  border-radius: 1rem;
}

.rbl-stack__row--1 {
  width: 100%;
  background: var(--rbl-sky-mist);
  border-color: #bae6fd;
}

.rbl-stack__row--2 {
  width: min(100%, 86%);
}

.rbl-stack__row--3 {
  width: min(100%, 72%);
  background: var(--rbl-sky);
  border-color: var(--rbl-sky);
}

.rbl-stack__row--3 h3,
.rbl-stack__row--3 p {
  color: #ffffff;
}

.rbl-stack__row--3 .rbl-stack__badge {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.rbl-stack__badge {
  flex: 0 0 auto;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--rbl-sky-soft);
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rbl-stack__row h3 {
  margin: 0 0 0.2rem;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-stack__row p {
  margin: 0;
  color: var(--rbl-ink-soft);
  font-size: 0.88rem;
}

.rbl-stack__note {
  margin: 0.9rem 0 0;
  text-align: center;
  color: var(--rbl-ink-muted);
  font-size: 0.82rem;
}

/* ---------- Trend chart card ---------- */
.rbl-chart {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 1.5rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid var(--rbl-line);
  border-radius: 1.35rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.rbl-chart h3 {
  margin: 0 0 0.55rem;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.rbl-chart p {
  margin: 0 0 0.9rem;
  color: var(--rbl-ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.rbl-chart__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-chart__legend li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--rbl-ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.rbl-chart__legend i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--rbl-sky);
}

.rbl-chart__legend li:nth-child(2) i {
  background: #bae6fd;
}

.rbl-chart__plot svg {
  display: block;
  width: 100%;
  height: auto;
}

.rbl-chart__plot {
  min-height: 240px;
}

.rbl-grow {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 220px;
  height: 100%;
  padding: 0.35rem 0.25rem 0;
}

.rbl-grow__grid {
  position: absolute;
  inset: 0 0 1.75rem 0;
  background-image: repeating-linear-gradient(
    to top,
    transparent 0,
    transparent calc(25% - 1px),
    #e2e8f0 calc(25% - 1px),
    #e2e8f0 25%
  );
  opacity: 0.9;
  pointer-events: none;
}

.rbl-grow__bars {
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 1.75rem;
  top: 0.35rem;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: clamp(0.55rem, 2vw, 1.1rem);
  padding: 0 0.4rem;
}

.rbl-grow__bar {
  display: block;
  width: 100%;
  height: var(--h, 40%);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #7dd3fc 0%, #bae6fd 100%);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.rbl-chart.is-visible .rbl-grow__bar,
.rbl-chart.is-animated .rbl-grow__bar {
  transform: scaleY(1);
}

.rbl-grow__line {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: calc(100% - 1.75rem);
  overflow: visible;
}

.rbl-grow__path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.1s ease 0.35s;
}

.rbl-grow__dots {
  opacity: 0;
  transition: opacity 0.4s ease 1.1s;
}

.rbl-chart.is-visible .rbl-grow__path,
.rbl-chart.is-animated .rbl-grow__path {
  stroke-dashoffset: 0;
}

.rbl-chart.is-visible .rbl-grow__dots,
.rbl-chart.is-animated .rbl-grow__dots {
  opacity: 1;
}

.rbl-grow__labels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.55rem, 2vw, 1.1rem);
  padding: 0.45rem 0.4rem 0;
  color: #64748b;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .rbl-grow__bar {
    transform: scaleY(1);
    transition: none;
  }

  .rbl-grow__path {
    stroke-dashoffset: 0;
    transition: none;
  }

  .rbl-grow__dots {
    opacity: 1;
    transition: none;
  }
}


/* ---------- Ladder (packages scope) ---------- */
.rbl-ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 2rem;
}

.rbl-ladder__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: 1.15rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--rbl-line);
  border-radius: 1.1rem;
}

.rbl-ladder__bar {
  height: 8px;
  border-radius: 999px;
  background: var(--rbl-sky-soft);
  overflow: hidden;
}

.rbl-ladder__bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--rbl-sky);
}

.rbl-ladder__item strong {
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-ladder__item span {
  color: var(--rbl-ink-muted);
  font-size: 0.86rem;
}

/* ---------- Pipeline (add-on workflow) ---------- */
.section--addon {
  position: relative;
  overflow: hidden;
}

.addon {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding: 0.5rem 0 1rem;
}

.addon__copy h2 {
  max-width: 18ch;
  margin: 0 0 0.85rem;
  color: var(--rbl-ink, #0f172a);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.addon__price {
  margin: 0 0 1rem;
  color: var(--rbl-sky-deep, #006bbd);
  font-family: var(--font-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.addon__price span {
  margin: 0 0.35rem;
  opacity: 0.7;
}

.addon__lead {
  max-width: 38rem;
  margin: 0 0 1.35rem;
  color: var(--rbl-ink-soft, #334155);
  font-size: 1rem;
  line-height: 1.7;
}

.addon__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.addon__features li {
  position: relative;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--rbl-ink-soft, #334155);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.addon__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--rbl-ink, #0f172a);
}

.addon__visual {
  position: relative;
}

.rbl-pipeline {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid rgba(215, 232, 244, 0.95);
  border-radius: 1.5rem;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.07),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
}

.rbl-pipeline__row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 4.1rem;
  padding: 0.85rem 1.05rem;
  background: #f3f6f9;
  border-radius: 1rem;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rbl-pipeline__row.is-active {
  background: linear-gradient(120deg, #38bdf8 0%, #0ea5e9 45%, #0284c7 100%);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
  transform: translateY(-1px);
}

.rbl-pipeline__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: transparent;
  color: #94a3b8;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.rbl-pipeline__row.is-active .rbl-pipeline__dot {
  background: #ffffff;
  color: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
  position: relative;
}

.rbl-pipeline__row.is-active .rbl-pipeline__dot::after {
  content: "";
  position: absolute;
  inset: 0.42rem;
  border-radius: 50%;
  background: #0ea5e9;
}

.rbl-pipeline__text {
  min-width: 0;
}

.rbl-pipeline__text strong {
  display: block;
  color: var(--rbl-ink, #0f172a);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.rbl-pipeline__text em {
  display: block;
  margin-top: 0.18rem;
  color: #94a3b8;
  font-style: normal;
  font-size: 0.86rem;
  line-height: 1.4;
}

.rbl-pipeline__row.is-active .rbl-pipeline__text strong,
.rbl-pipeline__row.is-active .rbl-pipeline__text em {
  color: #ffffff;
}

.rbl-pipeline__row.is-active .rbl-pipeline__text em {
  opacity: 0.92;
}

@media (max-width: 980px) {
  .addon {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .addon__copy h2 {
    max-width: none;
  }

  .addon__visual {
    order: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rbl-pipeline__row,
  .rbl-pipeline__dot {
    transition: none;
  }
}

/* ---------- Timeline (monthly process) ---------- */
.rbl-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0 1rem;
  list-style: none;
  padding: 0;
}

.rbl-timeline::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #bae6fd;
}

.rbl-timeline li {
  position: relative;
  text-align: center;
}

.rbl-timeline__dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--rbl-sky);
  color: #ffffff;
  font-family: var(--font-ui, sans-serif);
  font-weight: 800;
}

.rbl-timeline h3 {
  margin: 0 0 0.35rem;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-timeline p {
  margin: 0;
  color: var(--rbl-ink-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.rbl-loop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--rbl-sky-soft);
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- Photo band ---------- */
.rbl-band {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: clamp(280px, 34vw, 400px);
  display: flex;
  align-items: center;
}

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

.rbl-band__wash {
  position: absolute;
  inset: 0;
  background: #0284c7;
  opacity: 0.78;
}

.rbl-band__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--rbl-shell);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
}

.rbl-band__copy p.rbl-band__eyebrow {
  margin: 0 0 0.6rem;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.rbl-band__copy h2 {
  margin: 0 0 0.85rem;
  max-width: 22ch;
  color: #ffffff;
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.rbl-band__copy > p:not(.rbl-band__eyebrow) {
  margin: 0 0 1.35rem;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.rbl-band__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-band__stats li {
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.9rem;
}

.rbl-band__stats strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-band__stats span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

/* ---------- Photo gallery ---------- */
.rbl-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.rbl-gallery figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--rbl-line);
  background: var(--rbl-sky-mist);
}

.rbl-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ---------- Signals dashboard ---------- */
.rbl-signals {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 3vw, 1.75rem);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.rbl-signals__inner {
  position: relative;
  z-index: 1;
  max-width: var(--rbl-shell);
  margin: 0 auto;
}

.rbl-signals__head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.rbl-signals__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rbl-signals__eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rbl-sky);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}

.rbl-signals__head h2 {
  margin: 0;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.rbl-signals__intro {
  margin: 0;
  color: var(--rbl-ink-soft);
  font-size: 0.98rem;
  line-height: 1.7;
}

.rbl-signals__board {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.rbl-panel {
  padding: clamp(1.25rem, 2.6vw, 1.85rem);
  background: #ffffff;
  border: 1px solid var(--rbl-line);
  border-radius: 1.4rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.rbl-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.rbl-panel__head h3 {
  margin: 0 0 0.3rem;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.rbl-panel__head p {
  margin: 0;
  color: var(--rbl-ink-muted);
  font-size: 0.88rem;
}

.rbl-pill {
  flex: 0 0 auto;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--rbl-sky-soft);
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.rbl-plot svg {
  display: block;
  width: 100%;
  height: auto;
}

.rbl-plot__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
}

.rbl-plot__legend li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--rbl-ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.rbl-plot__legend i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--rbl-sky);
}

.rbl-plot__legend li:nth-child(2) i {
  background: #bae6fd;
}

.rbl-signals__list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-signal {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.15rem;
  background: #ffffff;
  border: 1px solid var(--rbl-line);
  border-radius: 1.15rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rbl-signal:hover {
  transform: translateY(-2px);
  border-color: #bae6fd;
}

.rbl-signal__value {
  display: block;
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.rbl-signal__value small {
  margin-left: 0.15rem;
  font-size: 0.6em;
  font-weight: 700;
}

.rbl-signal__label {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--rbl-ink);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-signal__desc {
  display: block;
  color: var(--rbl-ink-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.rbl-signal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.rbl-signal__tags span {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--rbl-sky-mist);
  border: 1px solid #e0f2fe;
  color: var(--rbl-sky-deep);
  font-size: 0.72rem;
  font-weight: 700;
}

.rbl-signals__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.25rem clamp(1.25rem, 3vw, 1.85rem);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 45%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.25);
}

.rbl-signals__cta strong {
  display: block;
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.rbl-signals__cta span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.rbl-signals__cta .rbl-btn {
  background: #ffffff;
  color: var(--rbl-sky-deep);
  border: 0;
  box-shadow: 0 10px 22px rgba(2, 39, 61, 0.18);
}

.rbl-signals__cta .rbl-btn:hover {
  background: #f0f9ff;
  color: #0369a1;
}

@media (max-width: 980px) {
  .rbl-signals__head,
  .rbl-signals__board {
    grid-template-columns: 1fr;
  }

  .rbl-signals__head {
    align-items: start;
  }
}

/* ---------- Case card media ---------- */
.rbl-case-media {
  margin: -0.35rem 0 1.1rem;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--rbl-sky-mist);
  border: 1px solid var(--rbl-line);
}

.rbl-case-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ---------- Service icon row ---------- */
.rbl-service-icon {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0 0.35rem;
}

.rbl-service-icon span {
  color: var(--rbl-sky-deep);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .rbl-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .rbl-flow__step::after {
    display: none;
  }

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

  .rbl-timeline::before {
    display: none;
  }
}

@media (max-width: 780px) {
  .rbl-chart,
  .rbl-ladder,
  .rbl-gallery {
    grid-template-columns: 1fr;
  }

  .rbl-flow,
  .rbl-timeline {
    grid-template-columns: 1fr;
  }

  .rbl-stack__row--2,
  .rbl-stack__row--3 {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .rbl-hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding:
      clamp(5.25rem, 18vw, 6.25rem)
      clamp(1.1rem, 4.5vw, 1.5rem)
      0;
    justify-content: flex-start;
    overflow: hidden;
  }

  .rbl-hero__fx {
    opacity: 0.85;
  }

  .rbl-hero__ring--lg {
    width: min(78vw, 340px);
    height: min(78vw, 340px);
    right: -28%;
    top: 62%;
  }

  .rbl-hero__ring--md,
  .rbl-hero__ring--sm {
    opacity: 0.22;
  }

  .rbl-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    gap: 0.85rem;
  }

  .rbl-hero__copy {
    order: 0;
    flex: 0 0 auto;
    align-self: stretch;
    align-items: stretch;
    padding-bottom: 0;
    text-align: left;
  }

  .rbl-hero__eyebrow {
    margin-bottom: 0.85rem;
    padding: 0.38rem 0.75rem;
    font-size: 0.74rem;
    max-width: 100%;
  }

  .rbl-hero h1 {
    max-width: none;
    margin: 0 0 0.85rem;
    font-size: clamp(1.95rem, 8.2vw, 2.55rem);
    line-height: 1.16;
    letter-spacing: -0.03em;
  }

  .rbl-hero__lead {
    max-width: none;
    margin: 0 0 1.2rem;
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .rbl-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.65rem;
    margin: 0;
  }

  .rbl-hero__actions .rbl-btn {
    width: 100%;
    min-height: 48px;
    padding-inline: 1.15rem;
    font-size: 0.95rem;
  }

  .rbl-hero__media {
    order: 1;
    flex: 1 1 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    height: auto;
    margin: 0.35rem 0 0;
  }

  .rbl-hero__portrait {
    width: min(78%, 300px);
  }

  .rbl-hero__portrait--mascot {
    width: min(100%, 480px);
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
  }

  .rbl-hero__portrait--mascot .rbl-sticker--hero {
    width: 100%;
    max-width: 480px;
    max-height: min(58svh, 520px);
    margin: 0;
    transform: none;
    transform-origin: bottom center;
    animation: none;
  }

  .rbl-hero__portrait img {
    max-height: min(48svh, 380px);
  }

  .rbl-hero__badge {
    left: auto;
    right: 28%;
    bottom: 12%;
    transform: none;
    text-align: left;
    min-width: 9.5rem;
    padding: 0.55rem 0.75rem;
  }

  .rbl-hero__portrait--mascot .rbl-hero__badge {
    left: auto;
    right: 30%;
    bottom: 14%;
    transform: none;
    transform-origin: right bottom;
  }

  .rbl-hero__badge strong {
    font-size: 0.88rem;
  }

  .rbl-hero__badge span {
    font-size: 0.72rem;
  }
}

@media (max-width: 900px) and (max-height: 720px) {
  .rbl-hero {
    min-height: auto;
    padding-bottom: 0.5rem;
  }

  .rbl-hero__lead {
    margin-bottom: 0.9rem;
  }

  .rbl-hero__media {
    flex: 0 0 auto;
  }

  .rbl-hero__portrait--mascot .rbl-sticker--hero,
  .rbl-hero__portrait img {
    max-height: min(48svh, 330px);
  }
}

@media (max-width: 900px) and (min-height: 780px) {
  .rbl-hero__portrait--mascot .rbl-sticker--hero,
  .rbl-hero__portrait img {
    max-height: min(66svh, 510px);
  }
}

/* ===================== Insights hub ===================== */
.rbl-insights-head {
  padding-top: clamp(5.5rem, 9vw, 7rem);
  padding-bottom: 1.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafd 100%) !important;
  border-bottom: 1px solid var(--rbl-line, #d7e8f4);
}

.rbl-insights-head h1 {
  margin: 0 0 0.75rem;
  color: var(--rbl-ink, #0f172a);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.rbl-insights-head .lead {
  max-width: 40rem;
  margin: 0;
  color: var(--rbl-ink-soft, #334155);
  line-height: 1.7;
}

.rbl-insights-head__count {
  margin: 0.9rem 0 0;
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.9rem;
  font-weight: 600;
}

.rbl-insights {
  padding-top: 1.75rem;
}

.rbl-insights__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.15rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.rbl-insights__search {
  display: flex;
  align-items: center;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 420px;
  background: #ffffff;
  border: 1px solid var(--rbl-line, #e2e8f0);
  border-radius: 999px;
  overflow: hidden;
}

.rbl-insights__search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.75rem 0.2rem 0.75rem 1.1rem;
  font: inherit;
  color: var(--rbl-ink, #0f172a);
}

.rbl-insights__search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--rbl-sky-deep, #0284c7);
  cursor: pointer;
}

.rbl-insights__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.rbl-insights__filter select {
  min-height: 44px;
  padding: 0 2rem 0 0.95rem;
  border: 1px solid var(--rbl-line, #e2e8f0);
  border-radius: 999px;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230284c7' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.9rem center;
  appearance: none;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rbl-ink, #0f172a);
  cursor: pointer;
}

.rbl-insights__views {
  display: inline-flex;
  padding: 0.2rem;
  background: #f1f5f9;
  border-radius: 999px;
}

.rbl-insights__views button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--rbl-ink-muted, #64748b);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.rbl-insights__views button.is-active {
  background: #ffffff;
  color: var(--rbl-sky-deep, #0284c7);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.rbl-insights__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
}

.rbl-insights__tabs a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--rbl-line, #e2e8f0);
  color: var(--rbl-ink-soft, #334155);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rbl-insights__tabs a em {
  font-style: normal;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.75rem;
}

.rbl-insights__tabs a.is-active,
.rbl-insights__tabs a:hover {
  background: var(--rbl-sky-soft, #e0f2fe);
  border-color: #7dd3fc;
  color: var(--rbl-sky-deep, #0284c7);
}

.rbl-insights__tabs a.is-active em {
  background: #ffffff;
  color: var(--rbl-sky-deep, #0284c7);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.blog-view--list {
  grid-template-columns: 1fr;
}

.blog-card {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--rbl-line, #e2e8f0);
  border-radius: 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: #bae6fd;
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.12);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-view--list .blog-card__link {
  flex-direction: row;
  align-items: stretch;
}

.blog-card__cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e0f2fe;
}

.blog-view--list .blog-card__cover {
  flex: 0 0 min(38%, 280px);
  aspect-ratio: auto;
  min-height: 180px;
}

.blog-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__cover img {
  transform: scale(1.04);
}

.blog-card__badge {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rbl-sky-deep, #0284c7);
  font-size: 0.72rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem 1.3rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card__title {
  margin: 0;
  color: var(--rbl-ink, #0f172a);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.blog-card__excerpt {
  margin: 0;
  color: var(--rbl-ink-soft, #334155);
  font-size: 0.92rem;
  line-height: 1.6;
}

.blog-card__more {
  margin-top: auto;
  padding-top: 0.35rem;
  color: var(--rbl-sky-deep, #0284c7);
  font-size: 0.9rem;
  font-weight: 700;
}

.rbl-insights__empty {
  padding: 3rem 1.5rem;
  text-align: center;
  background: #ffffff;
  border: 1px dashed #bae6fd;
  border-radius: 1.25rem;
}

.rbl-insights__empty h2 {
  margin: 0 0 0.5rem;
}

.rbl-insights__empty p {
  margin: 0 0 1.25rem;
  color: var(--rbl-ink-muted, #64748b);
}

/* Single post cover + floating card */
.single-post {
  background: #f7fafc;
}

.single-post__hero {
  position: relative;
  padding: 0;
  overflow: visible;
}

.single-post__cover {
  position: relative;
  height: clamp(240px, 38vw, 420px);
  overflow: hidden;
}

.single-post__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}

.single-post__cover-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.45) 100%),
    linear-gradient(120deg, rgba(14, 165, 233, 0.22), transparent 55%);
}

.single-post__card-wrap {
  position: relative;
  z-index: 2;
  margin-top: clamp(-4.5rem, -8vw, -5.5rem);
  padding-bottom: 0.5rem;
}

.single-post__card {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 1.85rem);
  background: #ffffff;
  border: 1px solid rgba(215, 232, 244, 0.95);
  border-radius: 1.35rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.single-post__card .breadcrumbs {
  margin: 0 0 0.85rem;
}

.single-post__kicker {
  margin: 0 0 0.65rem;
  color: var(--rbl-sky-deep, #006bbd);
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.single-post__kicker a {
  color: inherit;
  text-decoration: none;
}

.single-post__kicker a:hover {
  text-decoration: underline;
}

.single-post__kicker span {
  margin: 0 0.35rem;
  opacity: 0.7;
}

.single-post__title {
  margin: 0 0 0.85rem;
  color: var(--rbl-ink, #0f172a);
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.single-post__meta a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.single-post__meta a:hover {
  color: var(--rbl-sky-deep, #006bbd);
}

.single-post__body.container.narrow {
  max-width: 46rem;
  background: transparent;
}

.single-post__body > *:first-child {
  margin-top: 0;
}

.single-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 0 0.5rem;
}

.single-post__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #e7f3fb;
  color: #005291;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.single-post__tag:hover {
  background: #d7eefb;
}

.single-post__footer.container.narrow {
  max-width: 46rem;
}

.single-post__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(215, 232, 244, 0.95);
}

.single-post__share-label {
  margin-right: 0.25rem;
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.single-post__share-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 999px;
  background: #f0f9ff;
  color: #0369a1;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.single-post__share-btn:hover {
  background: #e0f2fe;
  border-color: rgba(14, 165, 233, 0.45);
  color: #0c4a6e;
}

.single-post__share-btn.is-copied {
  background: #ecfdf5;
  border-color: rgba(16, 185, 129, 0.45);
  color: #047857;
}

.post-toc {
  margin: 0 0 1.75rem;
  padding: 1rem 1.15rem 1.05rem;
  border: 1px solid rgba(215, 232, 244, 0.95);
  border-radius: 1rem;
  background: #ffffff;
}

.post-toc__title {
  margin: 0 0 0.55rem;
  color: var(--rbl-ink, #0f172a);
  font-size: 0.92rem;
  font-weight: 800;
}

.post-toc__list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--rbl-ink-soft, #334155);
}

.post-toc__list li + li {
  margin-top: 0.35rem;
}

.post-toc__list a {
  color: var(--rbl-sky-deep, #006bbd);
  text-decoration: none;
  font-weight: 600;
}

.post-toc__list a:hover {
  text-decoration: underline;
}

.single-post__body .post-faq {
  margin: 1.25rem 0 0.5rem;
}

.single-post__body .post-cta {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--rbl-sky, #0ea5e9);
  background: #f0f9ff;
  border-radius: 0 0.75rem 0.75rem 0;
  color: var(--rbl-ink-soft, #334155);
  font-weight: 600;
}

.single-post__body .post-cta a {
  color: var(--rbl-sky-deep, #006bbd);
  font-weight: 800;
}

.section--related .section-lead {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  color: var(--rbl-ink-muted, #64748b);
  font-size: 1rem;
  line-height: 1.6;
}

.breadcrumbs {
  margin: 0 0 1.15rem;
}

.breadcrumbs--v2 {
  display: inline-flex;
  max-width: 100%;
  padding: 0.4rem 0.75rem;
  background: #ffffff;
  border: 1px solid #d7e8f4;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.breadcrumbs__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #64748b;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.breadcrumbs__sep {
  display: inline-flex;
  align-items: center;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  user-select: none;
}

.breadcrumbs__sep span {
  display: block;
  transform: translateY(-0.5px);
}

.breadcrumbs__num {
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
}

.breadcrumbs__link {
  color: #006bbd;
  text-decoration: none;
  transition: color 0.15s ease;
}

.breadcrumbs__link:hover,
.breadcrumbs__link:focus-visible {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs__current,
.breadcrumbs__item [aria-current="page"] {
  display: block;
  overflow: hidden;
  max-width: min(42vw, 16rem);
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs__item a {
  color: #006bbd;
  text-decoration: none;
}

.rbl-insights-head .breadcrumbs,
.single-post__card .breadcrumbs {
  margin-bottom: 1.25rem;
}

.section--related {
  background: #ffffff;
  border-top: 1px solid var(--rbl-line, #d7e8f4);
}

@media (max-width: 720px) {
  .single-post__card {
    border-radius: 1.1rem;
  }

  .single-post__cover {
    height: 220px;
  }
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .blog-grid,
  .blog-view--list {
    grid-template-columns: 1fr;
  }

  .blog-view--list .blog-card__link {
    flex-direction: column;
  }

  .blog-view--list .blog-card__cover {
    flex-basis: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .rbl-insights__views span {
    display: none;
  }
}

/* ===================== About Leo page ===================== */
.rbl-about-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: clamp(5.5rem, 10vw, 7.5rem) 0 clamp(3rem, 6vw, 4rem);
}

.rbl-about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rbl-about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rbl-about-hero__bg span {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(2, 132, 199, 0.94) 0%, rgba(14, 165, 233, 0.82) 55%, rgba(3, 105, 161, 0.92) 100%);
}

.rbl-about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.rbl-about-hero .section-eyebrow,
.rbl-about-hero h1,
.rbl-about-hero .lead,
.rbl-about-hero a {
  color: #ffffff !important;
}

.rbl-about-hero .section-eyebrow::before {
  background: #ffffff !important;
}

.rbl-about-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.rbl-about-hero h1 em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72em;
}

.rbl-about-hero .lead {
  margin: 0 0 1.5rem;
  opacity: 0.92;
}

.rbl-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rbl-about-hero .rbl-btn--solid {
  background: #ffffff !important;
  color: #0284c7 !important;
}

.rbl-about-hero .rbl-btn--line {
  background: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.rbl-about-intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.rbl-about-intro__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 78%, rgba(0, 107, 189, 0.1), transparent 70%),
    linear-gradient(180deg, #f3f9fd 0%, #ffffff 100%);
  border: 1px solid #bae6fd;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
}

.rbl-about-intro__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 24px rgba(15, 23, 42, 0.16));
}

.rbl-about-intro__photo figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.2rem 1.2rem;
  background: #ffffff;
}

.rbl-about-intro__photo strong {
  color: var(--rbl-ink, #0f172a);
  font-size: 1rem;
  font-weight: 800;
}

.rbl-about-intro__photo span {
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.85rem;
}

.rbl-about-intro__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.rbl-about-intro__copy p {
  color: var(--rbl-ink-soft, #334155);
  line-height: 1.75;
}

.rbl-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.rbl-about-stats li {
  margin: 0;
  padding: 0.95rem 1rem;
  background: #ffffff;
  border: 1px solid var(--rbl-line, #e2e8f0);
  border-radius: 1rem;
}

.rbl-about-stats li + li {
  margin-top: 0;
}

.rbl-about-stats strong {
  display: block;
  color: var(--rbl-sky-deep, #0284c7);
  font-size: 0.98rem;
  font-weight: 800;
}

.rbl-about-stats span {
  display: block;
  margin-top: 0.2rem;
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.82rem;
}

.rbl-about-belief {
  text-align: center;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.rbl-about-belief h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.rbl-about-diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.rbl-about-diff__grid article {
  padding: 1.35rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--rbl-line, #e2e8f0);
  border-radius: 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.rbl-about-diff__grid h3 {
  margin: 0.75rem 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-about-diff__grid p {
  margin: 0;
  color: var(--rbl-ink-soft, #334155);
  line-height: 1.65;
}

.rbl-about-exp__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.rbl-about-exp__list li {
  margin: 0;
  padding: 1.2rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--rbl-line, #e2e8f0);
  border-radius: 1.15rem;
}

.rbl-about-exp__list li + li {
  margin-top: 0;
}

.rbl-about-exp__list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--rbl-ink, #0f172a);
  font-size: 1.02rem;
  font-weight: 800;
}

.rbl-about-exp__list span {
  color: var(--rbl-ink-soft, #334155);
  font-size: 0.92rem;
  line-height: 1.6;
}

.rbl-about-teaser-cta {
  margin-top: 1.5rem;
}

@media (max-width: 980px) {
  .rbl-about-intro__grid,
  .rbl-about-diff__grid,
  .rbl-about-exp__list,
  .rbl-about-stats {
    grid-template-columns: 1fr;
  }
}

/* ===================== FAQ accordion ===================== */
.rbl-faq-wrap {
  max-width: min(100%, 68rem);
}

.rbl-faq-wrap .section-head--center {
  text-align: center;
  margin-bottom: 1.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.rbl-faq {
  display: grid;
  gap: 0.55rem;
}

.rbl-faq--cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.15rem;
  align-items: start;
}

.rbl-faq__col {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.rbl-faq__item {
  border: 1px solid var(--rbl-line, #e2e8f0);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rbl-faq__item[open] {
  border-color: #7dd3fc;
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.1);
  background: linear-gradient(160deg, #ffffff 0%, #f0f9ff 100%);
}

.rbl-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-ui, sans-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rbl-ink, #0f172a);
}

.rbl-faq__item summary::-webkit-details-marker {
  display: none;
}

.rbl-faq__item summary i {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--rbl-sky-soft, #e0f2fe);
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}

.rbl-faq__item summary i::before,
.rbl-faq__item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--rbl-sky-deep, #0284c7);
  border-radius: 2px;
}

.rbl-faq__item summary i::before {
  width: 0.55rem;
  height: 2px;
  transform: translate(-50%, -50%);
}

.rbl-faq__item summary i::after {
  width: 2px;
  height: 0.55rem;
  transform: translate(-50%, -50%);
}

.rbl-faq__item[open] summary i {
  background: var(--rbl-sky, #0ea5e9);
  transform: rotate(180deg);
}

.rbl-faq__item[open] summary i::before,
.rbl-faq__item[open] summary i::after {
  background: #ffffff;
}

.rbl-faq__item[open] summary i::after {
  opacity: 0;
}

.rbl-faq__answer {
  padding: 0 1.2rem 1.15rem;
}

.rbl-faq__answer p {
  margin: 0;
  color: var(--rbl-ink-soft, #334155);
  font-size: 0.95rem;
  line-height: 1.7;
}

.rbl-faq__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 55%, #fff7ed 100%);
  border: 1.5px solid #d7e8f4;
  border-radius: 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.rbl-faq__contact-copy {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.rbl-faq__contact p {
  margin: 0 0 0.45rem;
  color: var(--rbl-ink-soft, #334155);
}

.rbl-faq__contact .btn {
  margin-top: 0.65rem;
}

@media (max-width: 860px) {
  .rbl-faq--cols {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

/* ---------- Live Signals bento (features-8 inspired) ---------- */
.rbl-signals__lede {
  margin: 0.65rem 0 0;
  max-width: 36rem;
  color: var(--rbl-ink-soft, #475569);
  font-size: 0.98rem;
  line-height: 1.65;
}

.rbl-signals__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.rbl-signals__card {
  position: relative;
  overflow: hidden;
  grid-column: span 6;
  padding: 1.35rem 1.25rem 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rbl-signals__card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.32);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.rbl-signals__card h3 {
  margin: 0 0 0.4rem;
  color: var(--rbl-ink, #0f172a);
  font-family: var(--font-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rbl-signals__card > p,
.rbl-signals__compound-copy > p,
.rbl-signals__trust-copy > p {
  margin: 0;
  color: var(--rbl-ink-soft, #475569);
  font-size: 0.92rem;
  line-height: 1.6;
}

.rbl-signals__card--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  text-align: center;
  color: #e8f2ff;
  background: linear-gradient(145deg, #0b1c33 0%, #123056 55%, #0c4a6e 100%);
  border-color: transparent;
  box-shadow: 0 22px 50px rgba(11, 28, 51, 0.28);
}

.rbl-signals__card--hero h3 {
  color: #fff;
  font-size: 1.55rem;
}

.rbl-signals__card--hero > p {
  color: rgba(186, 230, 253, 0.85);
}

.rbl-signals__card--hero .metric__tags {
  justify-content: center;
}

.rbl-signals__hero-viz {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14rem;
  height: 6rem;
  margin-bottom: 0.85rem;
}

.rbl-signals__hero-viz svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(14, 165, 233, 0.28);
}

.rbl-signals__big {
  position: relative;
  z-index: 1;
  font-family: var(--font-display, sans-serif);
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(120deg, #fff 30%, #7dd3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rbl-signals__ring {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 7.5rem;
  height: 7.5rem;
  margin: 0.35rem auto 1.1rem;
  color: #0284c7;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
}

.rbl-signals__ring::before {
  content: "";
  position: absolute;
  inset: -0.55rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  pointer-events: none;
}

.rbl-signals__ring span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #64748b;
}

.rbl-signals__card--radar,
.rbl-signals__card--spark {
  text-align: center;
}

.rbl-signals__spark {
  margin: 0 0 1rem;
}

.rbl-signals__spark svg {
  display: block;
  width: 100%;
  height: auto;
}

.rbl-signals__card--compound,
.rbl-signals__card--trust {
  display: grid;
  gap: 1rem;
}

.rbl-signals__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.15rem;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 0 0 6px #f8fafc;
}

.rbl-signals__compound-copy .rbl-chart__legend {
  margin-top: 1rem;
}

.rbl-signals__compound-viz {
  position: relative;
  margin: 0.25rem 0 -0.35rem;
  padding: 1.35rem 0.85rem 0.65rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem 0.9rem 0 0;
  border-bottom: 0;
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.rbl-signals__compound-viz svg {
  display: block;
  width: 100%;
  height: auto;
}

.rbl-signals__window-dots {
  position: absolute;
  top: 0.55rem;
  left: 0.7rem;
  display: flex;
  gap: 0.28rem;
}

.rbl-signals__window-dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #e2e8f0;
}

.rbl-signals__compound-viz .rbl-figcap {
  margin: 0.35rem 0 0;
  text-align: left;
  font-size: 0.72rem;
}

.rbl-signals__people {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  padding: 1rem 0;
}

.rbl-signals__people::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 50%;
  width: 1px;
  background: #e2e8f0;
  transform: translateX(-50%);
}

.rbl-signals__people-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: calc(50% + 0.9rem);
}

.rbl-signals__people-row--end {
  margin-left: auto;
  justify-content: flex-end;
}

.rbl-signals__people-row span {
  padding: 0.28rem 0.55rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.45rem;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
}

.rbl-signals__people-row i {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #e2e8f0;
  background:
    linear-gradient(135deg, #bae6fd, #0ea5e9);
}

.rbl-signals__people-row:nth-child(2) i {
  width: 2.25rem;
  height: 2.25rem;
  background: linear-gradient(135deg, #e0f2fe, #0284c7);
}

.rbl-signals__people-row:nth-child(3) i {
  background: linear-gradient(135deg, #f0f9ff, #38bdf8);
}

@media (min-width: 640px) {
  .rbl-signals__card--radar,
  .rbl-signals__card--spark {
    grid-column: span 3;
  }

  .rbl-signals__card--compound,
  .rbl-signals__card--trust {
    grid-template-columns: 1fr 1.15fr;
    align-items: stretch;
  }
}

@media (min-width: 1024px) {
  .rbl-signals__card--hero,
  .rbl-signals__card--radar,
  .rbl-signals__card--spark {
    grid-column: span 2;
  }

  .rbl-signals__card--compound,
  .rbl-signals__card--trust {
    grid-column: span 3;
  }
}

@media (max-width: 639px) {
  .rbl-signals__card--compound,
  .rbl-signals__card--trust {
    grid-template-columns: 1fr;
  }

  .rbl-signals__compound-viz {
    border-radius: 0.9rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
  }
}

/* ---------- Brand stickers / Leo mascot ---------- */
.rbl-sticker {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  pointer-events: none;
  user-select: none;
}

.rbl-hero__sticker {
  position: absolute;
  right: -0.35rem;
  bottom: 4.5rem;
  z-index: 3;
  width: clamp(7.5rem, 18vw, 10.5rem);
  filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.18));
  animation: rblStickerFloat 4.5s ease-in-out infinite;
}

.rbl-signals__head {
  align-items: center;
}

.rbl-signals__mascot {
  justify-self: end;
  width: clamp(8rem, 16vw, 11rem);
  filter: drop-shadow(0 10px 20px rgba(14, 165, 233, 0.18));
}

.rbl-signals__lede {
  margin: 0.65rem 0 0;
}

.rbl-sticker--journey {
  width: 5.5rem;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.12));
}

.rbl-insight__body {
  position: relative;
  padding-right: clamp(5.5rem, 12vw, 7rem);
}

.rbl-insight__mascot {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 4.75rem;
  opacity: 0.95;
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.2));
}

.rbl-faq__head {
  position: relative;
  padding-top: 0.5rem;
}

.rbl-faq__mascot {
  display: none;
}

.rbl-faq__contact-mascot {
  display: none;
}

.cta-copy {
  position: relative;
}

.cta-mascot {
  width: clamp(6.5rem, 14vw, 8.5rem);
  margin: 0 0 0.85rem;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.25));
}

@keyframes rblStickerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 980px) {
  .rbl-signals__head {
    grid-template-columns: 1fr;
  }

  .rbl-signals__mascot {
    justify-self: start;
    width: 7.5rem;
  }

  .rbl-hero__sticker {
    right: 0;
    bottom: 3.5rem;
    width: 7rem;
  }
}

@media (max-width: 640px) {
  .rbl-faq__contact {
    flex-direction: column;
    text-align: center;
  }

  .rbl-faq__contact-copy {
    text-align: center;
  }

  .rbl-journey__mascot {
    display: none;
  }

  .rbl-insight__mascot {
    width: 3.75rem;
  }

  .rbl-hero__sticker {
    display: none;
  }
}

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

/* ---------- Testimonials / Voices ? horizontal marquee ---------- */
section.rbl-voices.rbl-voices--marquee {
  position: relative;
  overflow: hidden;
}

section.rbl-voices .section-head--center {
  margin-bottom: 1.85rem;
}

section.rbl-voices .rbl-voices__marquee {
  display: block !important;
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0.5rem 0 0.75rem !important;
  overflow: hidden !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

section.rbl-voices .rbl-voices__track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 1rem !important;
  width: max-content !important;
  max-width: none !important;
  will-change: transform;
  animation: rblVoicesScrollX var(--rbl-voice-duration, 48s) linear infinite;
}

section.rbl-voices .rbl-voices__marquee:hover .rbl-voices__track {
  animation-play-state: paused;
}

section.rbl-voices article.rbl-voice {
  display: flex !important;
  flex-direction: column !important;
  flex: 0 0 auto !important;
  box-sizing: border-box !important;
  width: 22rem !important;
  max-width: 78vw !important;
  margin: 0 !important;
  padding: 1.35rem 1.3rem 1.4rem !important;
  background: #ffffff !important;
  border: 1.5px solid #d7e8f4 !important;
  border-radius: 1.25rem !important;
  box-shadow: 0 12px 28px rgba(0, 107, 189, 0.1) !important;
}

section.rbl-voices .rbl-voice__head {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin: 0 0 0.95rem !important;
}

section.rbl-voices .rbl-voice__head img {
  display: block !important;
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  border-radius: 999px !important;
  object-fit: cover !important;
  background: #e7f3fb !important;
  flex-shrink: 0 !important;
}

section.rbl-voices .rbl-voice__head strong {
  display: block !important;
  margin: 0 !important;
  color: #0f172a !important;
  font-family: "Plus Jakarta Sans", "Noto Sans TC", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

section.rbl-voices .rbl-voice__head span {
  display: block !important;
  margin-top: 0.15rem !important;
  color: #64748b !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
}

section.rbl-voices .rbl-voice__quote,
section.rbl-voices article.rbl-voice > p {
  margin: 0 !important;
  color: #334155 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.65 !important;
}

@keyframes rblVoicesScrollX {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 640px) {
  section.rbl-voices article.rbl-voice {
    width: 18.5rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  section.rbl-voices .rbl-voices__marquee {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
    mask-image: none;
  }

  section.rbl-voices .rbl-voices__track {
    animation: none !important;
    padding-inline: 1rem;
  }

  section.rbl-voices .rbl-voices__track article.rbl-voice:nth-child(n + 10) {
    display: none !important;
  }

  section.rbl-voices article.rbl-voice {
    scroll-snap-align: start;
  }
}



/* ===================== Free Diagnosis landing ===================== */
.rbl-diag-hero {
  position: relative;
  overflow: hidden;
  background: #006bbd;
  color: #ffffff;
  padding: clamp(5.5rem, 10vw, 7.25rem) 0 clamp(3rem, 5vw, 4rem);
}

.rbl-diag-hero__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.rbl-diag-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.rbl-diag-hero .breadcrumbs__item,
.rbl-diag-hero .breadcrumbs__num,
.rbl-diag-hero .breadcrumbs__item a,
.rbl-diag-hero .breadcrumbs__item [aria-current="page"] {
  color: rgba(255, 255, 255, 0.88) !important;
}

.rbl-diag-hero__eyebrow {
  display: inline-flex;
  margin: 0.85rem 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.rbl-diag-hero h1 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.rbl-diag-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.rbl-diag-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rbl-diag-hero .rbl-btn--solid {
  background: linear-gradient(135deg, #ff6a1a 0%, #ff4d00 55%, #e63d00 100%);
  border: 0;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 77, 0, 0.45);
}

.rbl-diag-hero .rbl-btn--solid:hover {
  background: linear-gradient(135deg, #ff7a33 0%, #ff5a12 100%);
  box-shadow: 0 14px 34px rgba(255, 77, 0, 0.55);
}

.rbl-diag-hero .rbl-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

.rbl-diag-value__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.rbl-diag-value__grid article {
  padding: 1.25rem 1.2rem;
  background: #ffffff;
  border: 1px solid var(--rbl-line, #d7e8f4);
  border-radius: 1.1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.rbl-diag-value__grid span {
  display: block;
  margin-bottom: 0.55rem;
  color: #006bbd;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
}

.rbl-diag-value__grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.rbl-diag-value__grid p {
  margin: 0;
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.95rem;
  line-height: 1.6;
}

.rbl-diag-steps {
  background: linear-gradient(180deg, #ffffff 0%, #f4fafd 100%) !important;
}

.rbl-diag-steps__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.rbl-diag-steps__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  border-top: 1px solid #bae6fd;
}

.rbl-diag-steps__list li {
  padding: 1rem 0;
  border-bottom: 1px solid #bae6fd;
}

.rbl-diag-steps__list strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--rbl-ink, #0f172a);
  font-size: 1.02rem;
}

.rbl-diag-steps__list span {
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.95rem;
  line-height: 1.6;
}

.rbl-diag-note {
  padding: 1.35rem 1.25rem;
  background: #fff8e7;
  border: 1px solid #f3dfb8;
  border-radius: 1.15rem;
}

.rbl-diag-note h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.rbl-diag-note ul {
  margin: 0 0 0.85rem;
  padding-left: 1.1rem;
  color: var(--rbl-ink-soft, #334155);
}

.rbl-diag-note li + li {
  margin-top: 0.35rem;
}

.rbl-diag-note p {
  margin: 0;
  color: var(--rbl-ink-muted, #64748b);
  font-size: 0.92rem;
  line-height: 1.6;
}

.rbl-diag-book {
  background: #ffffff !important;
}

.rbl-diag-book__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.rbl-diag-book__bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.rbl-diag-book__bullets li {
  position: relative;
  padding-left: 1.15rem;
  margin: 0 0 0.55rem;
  color: var(--rbl-ink-soft, #334155);
  font-weight: 600;
}

.rbl-diag-book__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #006bbd;
}

.contact-form--light {
  background: #ffffff;
  border: 1px solid var(--rbl-line, #d7e8f4);
  border-radius: 1.25rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  color: var(--rbl-ink, #0f172a);
}

.contact-form--light h3 {
  margin: 0;
  color: var(--rbl-ink, #0f172a);
  font-size: 1.2rem;
}

.contact-form--light .contact-form__lead,
.contact-form--light .contact-form__foot {
  color: var(--rbl-ink-soft, #64748b);
}

.contact-form--light .contact-form__perks li {
  background: #f0f9ff;
  border-color: #cfe8f8;
  color: #0369a1;
}

.contact-form--light label span,
.contact-form--light .contact-form__goals legend {
  color: var(--rbl-ink-soft, #334155);
}

.contact-form--light input,
.contact-form--light textarea {
  border: 1px solid #d7e8f4;
  background: #f8fcff;
  color: var(--rbl-ink, #0f172a);
}

.contact-form--light .contact-form__chip {
  background: #f8fcff;
  border-color: #cfe8f8;
  color: #0f172a;
}

.contact-form--light .contact-form__chip:hover {
  background: #e8f6fe;
  border-color: #9fd0ee;
}

.contact-form--light .contact-form__chip.is-active {
  background: #0369a1;
  border-color: #0369a1;
  color: #fff;
}

.contact-form--light .form-status.is-success {
  color: #0f766e;
}

.contact-form--light .form-status.is-error {
  color: #b91c1c;
}

@media (max-width: 980px) {
  .rbl-diag-value__grid,
  .rbl-diag-steps__grid,
  .rbl-diag-book__grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== Contact page (conversion-first) ===================== */
.rbl-contact-hero {
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  min-height: calc(100svh - 0.5rem);
  min-height: calc(100dvh - 0.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5.75rem, 11vw, 7.25rem) 0 clamp(2.75rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 70% 55% at 88% 18%, rgba(14, 165, 233, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 45% at 8% 88%, rgba(255, 122, 47, 0.08), transparent 55%),
    linear-gradient(180deg, #eef7fc 0%, #f7fbfe 42%, #ffffff 100%);
}

.rbl-contact-hero__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 107, 189, 0.07) 1px, transparent 1.2px);
  background-size: 22px 22px;
  opacity: 0.75;
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
}

.rbl-contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 24.5rem);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
  width: 100%;
}

.rbl-contact-hero__copy {
  padding-top: 0;
  max-width: 34rem;
}

.rbl-contact-hero__copy .section-eyebrow {
  margin-bottom: 0.85rem;
}

.rbl-contact-hero h1 {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.rbl-contact-hero__lead {
  margin: 0 0 1.25rem;
  max-width: 32rem;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.7;
}

.rbl-contact-scene {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 0 1.45rem;
  max-width: 32rem;
}

.rbl-contact-scene__item {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0.8rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #d7e8f4;
  border-radius: 0.85rem;
  border-top: 3px solid #58a6d6;
}

.rbl-contact-scene__item.is-ai {
  border-top-color: #0ea5e9;
}

.rbl-contact-scene__item.is-next {
  border-top-color: #ff4f00;
}

.rbl-contact-scene__item strong {
  color: #0f172a;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-contact-scene__item span {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.35;
}

.rbl-contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}

.rbl-contact-channels .rbl-btn {
  text-decoration: none;
  min-height: 48px;
}

.rbl-contact-channels__wa,
.rbl-contact-hero .rbl-contact-channels .rbl-btn--solid {
  background: linear-gradient(135deg, #ff7a2f 0%, #ff4f00 55%, #e63d00 100%) !important;
  border: 0 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(255, 79, 0, 0.32) !important;
}

.rbl-contact-channels .rbl-btn--line {
  background: #ffffff !important;
  border: 1.5px solid #9ec9e6 !important;
  color: #006bbd !important;
}

.rbl-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.rbl-contact-social a {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.rbl-contact-social a:hover {
  color: #006bbd;
  border-bottom-color: rgba(0, 107, 189, 0.35);
}

.rbl-contact-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0.95rem 0 0;
  border-top: 1px solid #d7e8f4;
}

.rbl-contact-hero__trust li {
  position: relative;
  padding-left: 1rem;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
}

.rbl-contact-hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #ff4f00;
}

.rbl-contact-hero__form {
  width: 100%;
}

.rbl-contact-hero__form .contact-form--light {
  margin: 0;
  padding: 1.55rem 1.45rem 1.55rem;
  background: #ffffff;
  border: 1px solid #d7e8f4;
  border-radius: 1.35rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 48px rgba(15, 23, 42, 0.1);
}

.rbl-contact-hero__form .contact-form--light .btn--primary,
.rbl-contact-hero__form .contact-form--light button[type="submit"] {
  background: linear-gradient(135deg, #ff7a2f 0%, #ff4f00 55%, #e63d00 100%) !important;
  border: 0 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(255, 79, 0, 0.28) !important;
}

.rbl-contact-value__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
  align-items: stretch;
}

.rbl-contact-value__row article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.55rem;
  min-height: 100%;
  padding: 1.25rem 1.15rem;
  background: #ffffff;
  border: 1px solid #d7e8f4;
  border-radius: 1.1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.rbl-contact-value__row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: #e7f3fb;
  color: #006bbd;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
}

.rbl-contact-value__row h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-contact-value__row p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}

.rbl-contact-process__head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.rbl-contact-process__head h2 {
  margin: 0.35rem 0 0.55rem;
}

.rbl-contact-process__head p {
  margin: 0;
  color: #64748b;
  max-width: 36rem;
}

.rbl-contact-process__note {
  padding: 1rem 1.1rem;
  background: #fff7f2;
  border: 1px solid #ffe0cc;
  border-radius: 1rem;
}

.rbl-contact-process__note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #e63d00;
  font-size: 0.9rem;
  font-weight: 800;
}

.rbl-contact-process__note span {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.5;
}

.rbl-contact-process__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rbl-contact-process__steps li {
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem 1rem;
  background: #ffffff;
  border: 1px solid #d7e8f4;
  border-radius: 1rem;
  border-top: 3px solid #58a6d6;
}

.rbl-contact-process__steps span {
  color: #006bbd;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
}

.rbl-contact-process__steps strong {
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rbl-contact-process__steps p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
}

.rbl-contact-about .rbl-about-intro__photo.why-leo__photo--cutout {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.rbl-contact-about .why-leo__photo--cutout img {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.rbl-contact-about .rbl-about-intro__photo figcaption {
  border-top: 1px solid #e2eef6;
}

@media (max-width: 980px) {
  .rbl-contact-hero__grid,
  .rbl-contact-value__row,
  .rbl-contact-process__head,
  .rbl-contact-process__steps {
    grid-template-columns: 1fr;
  }

  .rbl-contact-hero {
    min-height: 0;
    justify-content: flex-start;
    padding-top: clamp(5rem, 14vw, 6.25rem);
    padding-bottom: 2.25rem;
  }

  .rbl-contact-hero__copy {
    max-width: none;
  }

  .rbl-contact-scene {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .rbl-contact-channels {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rbl-contact-channels .rbl-btn {
    width: 100%;
    justify-content: center;
  }

  .rbl-contact-process__steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .rbl-contact-process__steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Core value cards (homepage) ---------- */
.rbl-values .metrics__board,
.rbl-values__board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.rbl-value-card {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.35rem 1.25rem 1.4rem !important;
  text-align: left;
}

.rbl-value-card .metric__index,
.rbl-value-card .metric__value,
.rbl-value-card .metric__label,
.rbl-value-card .metric__desc,
.rbl-value-card .metric__tags {
  display: none !important;
}

.rbl-value-card__kicker {
  margin: 0;
  color: #de7941;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.metric--primary.rbl-value-card .rbl-value-card__kicker {
  color: rgba(255, 255, 255, 0.82);
}

.rbl-value-card__title {
  margin: 0;
  color: inherit;
  font-family: var(--font-ui, sans-serif);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.rbl-value-card__desc {
  margin: 0;
  color: inherit;
  opacity: 0.88;
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
}

.rbl-value-card__points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.rbl-value-card__points li {
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.rbl-value-card__proof {
  margin: 0.2rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.5;
}

.rbl-value-card__proof strong {
  color: #006bbd;
  font-weight: 800;
}

.rbl-value-card--cta .rbl-value-card__proof,
.metric--cta.rbl-value-card .rbl-value-card__kicker {
  color: #c45f2c;
}

.rbl-value-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.55rem;
  font-weight: 800 !important;
  text-decoration: none;
}

.metric--primary.rbl-value-card {
  color: #ffffff;
}

.metric--primary.rbl-value-card .rbl-value-card__title,
.metric--primary.rbl-value-card .rbl-value-card__desc {
  color: #ffffff;
}

.metric--cta.rbl-value-card {
  color: #0f172a;
}

@media (max-width: 1100px) {
  .rbl-values .metrics__board,
  .rbl-values__board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rbl-values .metrics__board,
  .rbl-values__board {
    grid-template-columns: 1fr;
  }
}

/* ---------- SEO + GEO redesign v2 ---------- */
.rbl-geo--v2 .rbl-geo__head {
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.rbl-geo--v2 .rbl-sticker--geo-head {
  width: clamp(140px, 18vw, 200px);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 70, 140, 0.18));
}

.rbl-geo__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}

.rbl-geo__platforms span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #e7f3fb;
  border: 1px solid #cfe6f5;
  color: #005291;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.84rem;
  font-weight: 700;
}

.rbl-geo__pair--v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rbl-geo--v2 .rbl-geo__pair--v2 .rbl-geo__card {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.35rem 1.3rem 1.4rem;
  background: #ffffff;
  border: 1px solid #d7e8f4;
  border-radius: 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.rbl-geo__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.rbl-geo--v2 .rbl-geo__card-step {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  border-radius: 999px;
  background: #e7f3fb;
  color: #006bbd;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
}

.rbl-geo--v2 .rbl-geo__card--geo .rbl-geo__card-step {
  background: #ffe8d9;
  color: #e63d00;
}

.rbl-geo--v2 .rbl-geo__chip {
  margin: 0;
}

.rbl-geo--v2 .rbl-geo__card h3 {
  margin: 0;
  min-height: 2.6em;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.3;
}

.rbl-geo--v2 .rbl-geo__card > p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.65;
}

.rbl-geo__flow-label {
  margin: 0 !important;
  color: #006bbd !important;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.8rem !important;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.rbl-geo--v2 .rbl-geo__card--geo .rbl-geo__flow-label {
  color: #e63d00 !important;
}

.rbl-geo--v2 .rbl-geo__card ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rbl-geo--v2 .rbl-geo__card li {
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 0.7rem;
  background: #f4fafd;
  border: 1px solid #e2eef6;
  color: #0f172a;
  font-size: 0.86rem;
  font-weight: 700;
}

.rbl-geo--v2 .rbl-geo__card--geo li {
  background: #fff7f2;
  border-color: #ffe0cc;
}

.rbl-geo__system--v2 {
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: #ffffff;
  border: 1px solid #d7e8f4;
  border-radius: 1.35rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.rbl-geo__system--v2 .rbl-geo__system-head {
  margin-bottom: 1.15rem;
}

.rbl-geo__system--v2 .rbl-geo__system-head h3 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.rbl-geo__system--v2 .rbl-geo__system-head p {
  margin: 0;
  color: #64748b;
  max-width: 42rem;
}

.rbl-geo__stack-bars {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}

.rbl-geo__stack-bar {
  display: flex;
  align-items: center;
  width: var(--w, 70%);
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border-radius: 0.7rem;
  color: #ffffff;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.84rem;
  font-weight: 800;
}

.rbl-geo__stack-bar--seo {
  background: linear-gradient(90deg, #7bbce0, #58a6d6);
}

.rbl-geo__stack-bar--content {
  background: linear-gradient(90deg, #58a6d6, #006bbd);
}

.rbl-geo__stack-bar--geo {
  background: linear-gradient(90deg, #ff7a2f, #ff4f00);
}

.rbl-geo__pillars--v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.rbl-geo__pillars--v2 > li {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.55rem;
  min-height: 100%;
  margin: 0;
  padding: 1.15rem 1.05rem 1.2rem;
  background: #f8fbfe;
  border: 1px solid #d7e8f4;
  border-radius: 1.05rem;
}

.rbl-geo__pillars--v2 .rbl-geo__pillar-num {
  color: #006bbd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rbl-geo__pillars--v2 > li:last-child .rbl-geo__pillar-num {
  color: #e63d00;
}

.rbl-geo__pillars--v2 h4 {
  margin: 0;
  min-height: 1.4em;
  font-size: 1.1rem;
  font-weight: 800;
}

.rbl-geo__pillars--v2 p {
  margin: 0;
  min-height: 3.2em;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.55;
}

.rbl-geo__pillars--v2 .rbl-geo__tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.rbl-geo__pillars--v2 .rbl-geo__tags span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.35rem 0.45rem;
  border-radius: 0.55rem;
  background: #ffffff;
  border: 1px solid #e2eef6;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

.rbl-geo__pillars--v2 > li:last-child .rbl-geo__tags span {
  border-color: #ffe0cc;
  background: #fff7f2;
}

.rbl-geo__system-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.rbl-geo--v2 .rbl-geo__system-cta .rbl-btn--solid {
  background: linear-gradient(135deg, #ff7a2f 0%, #ff4f00 55%, #e63d00 100%) !important;
  border: 0 !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(255, 79, 0, 0.32) !important;
}

.rbl-geo--v2 .rbl-geo__system-cta .rbl-btn--line {
  background: #ffffff !important;
  border: 1.5px solid #9ec9e6 !important;
  color: #006bbd !important;
}

@media (max-width: 900px) {
  .rbl-geo__pair--v2,
  .rbl-geo__pillars--v2 {
    grid-template-columns: 1fr;
  }

  .rbl-geo--v2 .rbl-geo__head {
    flex-direction: column;
    text-align: left;
  }
}

/* ---------- Services redesign v2 ---------- */
.rbl-services .section-head--center {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.rbl-services .section-head--center p {
  color: #64748b;
}

.service-grid--v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.service--v2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0 !important;
  overflow: hidden;
  background: #ffffff !important;
  border: 1px solid #d7e8f4 !important;
  border-top: 1px solid #d7e8f4 !important;
  border-radius: 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service--v2:hover {
  transform: translateY(-3px);
  border-color: #9ec9e6 !important;
  box-shadow: 0 16px 36px rgba(0, 107, 189, 0.1);
}

.service--featured {
  border-color: #ffc7a3 !important;
  box-shadow: 0 14px 34px rgba(255, 79, 0, 0.1);
}

.service--v2 .service-card-media {
  margin: 0 !important;
  border-radius: 0;
  aspect-ratio: 16 / 9;
}

.service__body {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto auto;
  gap: 0.65rem;
  flex: 1;
  padding: 1.15rem 1.15rem 1.25rem;
}

.service__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.service__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: #e7f3fb;
  color: #006bbd;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
}

.service--featured .service__num {
  background: #ffe8d9;
  color: #e63d00;
}

.service__label {
  color: #64748b;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service--v2 h3 {
  margin: 0;
  min-height: 0;
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
  line-height: 1.3;
}

.service__goal {
  margin: 0 !important;
  color: #0f172a !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
}

.service__fit {
  margin: 0 !important;
  min-height: 0;
  color: #64748b !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.service__outcome {
  margin: 0.15rem 0 0 !important;
  padding: 0.65rem 0.75rem;
  border-radius: 0.7rem;
  background: #f4fafd;
  border: 1px solid #e2eef6;
  color: #006bbd !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.service--featured .service__outcome {
  background: #fff7f2;
  border-color: #ffe0cc;
  color: #c45f2c !important;
}

.service--v2 ul {
  display: grid;
  gap: 0.4rem;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.service--v2 ul li {
  margin: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  background: #f4fafd;
  border: 1px solid #e2eef6;
  color: #0f172a;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.service--featured ul li {
  background: #fff7f2;
  border-color: #ffe0cc;
}

.service__cta {
  width: 100%;
  margin-top: 0.25rem;
  text-decoration: none;
}

.service--v2 .service__cta.rbl-btn--solid {
  background: linear-gradient(135deg, #ff7a2f 0%, #ff4f00 55%, #e63d00 100%) !important;
  border: 0 !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(255, 79, 0, 0.28) !important;
}

.service--v2 .service__cta.rbl-btn--line {
  background: #ffffff !important;
  border: 1.5px solid #9ec9e6 !important;
  color: #006bbd !important;
}

@media (max-width: 980px) {
  .service-grid--v2 {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }
}

/* ---------- Cases showcase (rbl-cases) ---------- */
.section--cases.rbl-cases {
  position: relative;
  overflow: hidden;
  background: #f4fafd !important;
  border-block: 0 !important;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.rbl-cases__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 8% 12%, rgba(88, 166, 214, 0.18), transparent 58%),
    radial-gradient(ellipse 45% 40% at 92% 78%, rgba(222, 121, 65, 0.12), transparent 55%),
    linear-gradient(180deg, #eef7fc 0%, #f4fafd 42%, #ffffff 100%);
}

.rbl-cases .container {
  position: relative;
  z-index: 1;
}

.rbl-cases__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.rbl-cases__head-copy {
  max-width: 40rem;
}

.rbl-cases__head-copy h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.rbl-cases__head-copy p:not(.section-eyebrow) {
  margin: 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 36rem;
}

.rbl-cases__head-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a2f 0%, #ff4f00 55%, #e63d00 100%);
  color: #fff !important;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 79, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rbl-cases__head-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 79, 0, 0.34);
}

.rbl-cases__showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.rbl-cases__showcase--single {
  grid-template-columns: 1fr;
  max-width: 68rem;
}

.rbl-case {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d7e8f4;
  border-radius: 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.rbl-case:hover {
  transform: translateY(-4px);
  border-color: #9ec9e6;
  box-shadow: 0 18px 40px rgba(0, 107, 189, 0.11);
}

.rbl-case--feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  min-height: 0;
}

.rbl-case--example {
  min-height: 0;
}

.rbl-case__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #e7f3fb;
  isolation: isolate;
}

.rbl-case__visual::after {
  content: none;
}

.rbl-case__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s ease;
}

.rbl-case:hover .rbl-case__visual img {
  transform: scale(1.04);
}

.rbl-case__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem 1.25rem;
}

.rbl-case--feature .rbl-case__body {
  justify-content: center;
  padding: 1.6rem 1.7rem 1.7rem;
  gap: 0.65rem;
}

.rbl-case--example .rbl-case__body {
  flex: 1;
}

.rbl-case__tag {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #e7f3fb;
  color: #006bbd;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.rbl-case h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.rbl-case--feature h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
}

.rbl-case__focus {
  margin: 0;
  color: #de7941;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
}

.rbl-case__blurb {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.5;
}

.rbl-case h3 a {
  color: inherit;
  text-decoration: none;
}

.rbl-case h3 a:hover {
  color: #0284c7;
}

.rbl-case__domain {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.55rem;
  color: #0369a1;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.rbl-case__domain:hover {
  color: #0284c7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rbl-case__visual--shot {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.rbl-case--example .rbl-case__visual {
  aspect-ratio: 1 / 1;
}

.rbl-case--example .rbl-case__visual img {
  min-height: 0;
  flex: 1;
}

.rbl-case--feature .rbl-case__visual {
  min-height: 20rem;
}

.rbl-case--feature .rbl-case__visual img {
  min-height: 0;
  flex: 1;
}

.rbl-cases__more {
  margin-top: 1.5rem;
  text-align: center;
}

.rbl-cases__more-link {
  display: inline-flex;
  align-items: center;
  color: #0369a1;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.rbl-cases__more-link:hover {
  color: #0284c7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rbl-case__journey {
  list-style: none;
  margin: 0.55rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  counter-reset: case-step;
}

.rbl-case__journey li {
  position: relative;
  margin: 0;
  padding: 0.75rem 0.85rem 0.8rem 0.95rem;
  border-radius: 0.85rem;
  background: #f4fafd;
  border: 1px solid #e2eef6;
  border-left: 3px solid #58a6d6;
}

.rbl-case__journey li:last-child {
  border-left-color: #de7941;
  background: linear-gradient(135deg, #fff8f3 0%, #f4fafd 100%);
  border-color: #f5d5c0;
}

.rbl-case__step {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: #006bbd;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rbl-case__step--result {
  color: #c45f2c;
}

.rbl-case__journey p {
  margin: 0;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.55;
}

.rbl-case__journey--compact {
  gap: 0.45rem;
}

.rbl-case__journey--compact li {
  padding: 0.55rem 0.7rem;
}

.rbl-case__journey--compact p {
  font-size: 0.84rem;
  line-height: 1.45;
}

.rbl-case--panel .rbl-case__visual {
  aspect-ratio: 1 / 1;
}

.rbl-case--panel .rbl-case__visual img {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.rbl-case--panel .rbl-case__body {
  flex: 1;
}

@media (max-width: 1100px) {
  .rbl-cases__showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .rbl-case--feature {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .rbl-cases__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .rbl-case--feature {
    grid-template-columns: 1fr;
  }

  .rbl-case--feature .rbl-case__visual {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .rbl-case--feature .rbl-case__visual img {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .rbl-cases__showcase {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }
}

/* ---------- Branding cover media (native 16:9) ---------- */
.service--v2 .service-card-media {
  background: #eef6fc;
  display: block;
  overflow: hidden;
  padding: 0;
  aspect-ratio: 16 / 9;
}

.service--v2 .service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover !important;
  object-position: center;
}

.service--v2 .service-card-media--brand,
.service--featured .service-card-media--brand {
  background: #eef6fc;
  padding: 0;
}

.service--featured .service-card-media {
  background: #fff4ec;
}

.rbl-gallery--brand figure,
.rbl-gallery--illustrations figure {
  background: #eef6fc;
  border-color: #d7e8f4;
  overflow: hidden;
}

.rbl-gallery--brand img,
.rbl-gallery--illustrations img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: center;
  padding: 0 !important;
  background: #eef6fc;
}

.rbl-case__visual {
  background: #0f172a !important;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 !important;
}

.rbl-case__visual::after {
  display: none !important;
}

.rbl-case__browser {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rbl-case__browser span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #64748b;
}

.rbl-case__browser span:nth-child(1) { background: #f87171; }
.rbl-case__browser span:nth-child(2) { background: #fbbf24; }
.rbl-case__browser span:nth-child(3) { background: #34d399; }

.rbl-case__browser em {
  margin-left: 0.55rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-style: normal;
  font-size: 0.72rem;
  font-family: var(--font-ui, sans-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(100%, 16rem);
}

.rbl-case__visual img {
  object-fit: cover !important;
  object-position: top center !important;
  min-height: 0 !important;
  max-height: none !important;
  width: 100%;
  height: 100%;
  flex: 1;
}

.rbl-case--feature .rbl-case__visual {
  min-height: 20rem;
  padding: 0 !important;
}

.rbl-case--panel .rbl-case__visual {
  aspect-ratio: 1 / 1;
  padding: 0 !important;
}

.rbl-case:hover .rbl-case__visual img {
  transform: scale(1.04);
}

/* ===================== Contact hero ?X Space theme ===================== */
.rbl-contact-hero--space {
  background:
    radial-gradient(ellipse 55% 45% at 82% 12%, rgba(0, 107, 189, 0.45), transparent 60%),
    radial-gradient(ellipse 40% 35% at 12% 78%, rgba(222, 121, 65, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(88, 166, 214, 0.12), transparent 50%),
    linear-gradient(165deg, #040b16 0%, #0a1830 42%, #0d2240 100%) !important;
  color: #e8f4fc;
}

.rbl-contact-hero--space .rbl-contact-hero__fx {
  background: none;
  opacity: 1;
  mask-image: none;
  -webkit-mask-image: none;
  overflow: hidden;
}

.rbl-space__stars,
.rbl-space__stars--far {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 8% 18%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1.5px 1.5px at 22% 42%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 36% 12%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1.5px 1.5px at 48% 68%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 62% 28%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 74% 55%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 86% 16%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1.5px 1.5px at 92% 72%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 14% 78%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1.5px 1.5px at 58% 88%, rgba(255, 255, 255, 0.55), transparent);
  background-size: 100% 100%;
  animation: rblSpaceTwinkle 6s ease-in-out infinite;
}

.rbl-space__stars--far {
  opacity: 0.45;
  transform: scale(1.15);
  animation-duration: 9s;
  animation-direction: reverse;
}

.rbl-space__nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.rbl-space__nebula--a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: -8%;
  right: 4%;
  background: radial-gradient(circle, rgba(88, 166, 214, 0.55) 0%, transparent 70%);
}

.rbl-space__nebula--b {
  width: min(42vw, 360px);
  height: min(42vw, 360px);
  bottom: 4%;
  left: -6%;
  background: radial-gradient(circle, rgba(222, 121, 65, 0.28) 0%, transparent 70%);
}

.rbl-space__orbit {
  position: absolute;
  top: 42%;
  right: 18%;
  width: min(38vw, 340px);
  height: min(38vw, 340px);
  border: 1px solid rgba(158, 201, 230, 0.22);
  border-radius: 50%;
  transform: translate(30%, -40%) rotate(18deg);
}

.rbl-space__orbit--2 {
  width: min(28vw, 240px);
  height: min(28vw, 240px);
  border-color: rgba(222, 121, 65, 0.2);
  transform: translate(48%, -22%) rotate(-12deg);
}

.rbl-space__orbit::before,
.rbl-space__orbit--2::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: #58a6d6;
  box-shadow: 0 0 12px rgba(88, 166, 214, 0.8);
  animation: rblSpaceOrbit 14s linear infinite;
}

.rbl-space__orbit--2::before {
  background: #de7941;
  box-shadow: 0 0 12px rgba(222, 121, 65, 0.7);
  animation-duration: 10s;
  animation-direction: reverse;
}

@keyframes rblSpaceTwinkle {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

@keyframes rblSpaceOrbit {
  from { transform: rotate(0deg) translateX(min(19vw, 170px)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(min(19vw, 170px)) rotate(-360deg); }
}

.rbl-contact-hero--space .rbl-space-eyebrow,
.rbl-contact-hero--space .section-eyebrow {
  color: #ffb380 !important;
  background: rgba(255, 122, 47, 0.12);
  border: 1px solid rgba(255, 183, 128, 0.35);
  border-radius: 999px;
  display: inline-flex;
  padding: 0.4rem 0.9rem;
}

.rbl-contact-hero--space .section-eyebrow::before {
  display: none;
}

.rbl-contact-hero--space h1 {
  color: #ffffff !important;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  text-shadow: 0 8px 28px rgba(0, 20, 50, 0.45);
}

.rbl-contact-hero--space .rbl-contact-hero__lead {
  color: rgba(226, 240, 250, 0.88) !important;
  font-size: 1.08rem;
}

.rbl-contact-hero--space .rbl-contact-scene__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(158, 201, 230, 0.28);
  border-top: 3px solid #58a6d6;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rbl-contact-hero--space .rbl-contact-scene__item.is-ai {
  border-top-color: #7dd3fc;
}

.rbl-contact-hero--space .rbl-contact-scene__item.is-next {
  border-top-color: #ff7a2f;
}

.rbl-contact-hero--space .rbl-contact-scene__item strong {
  color: #ffffff;
}

.rbl-contact-hero--space .rbl-contact-scene__item span {
  color: rgba(186, 214, 232, 0.85);
}

.rbl-contact-hero--space .rbl-contact-channels__wa,
.rbl-contact-hero--space .rbl-contact-channels .rbl-btn--solid {
  background: linear-gradient(135deg, #ff7a2f 0%, #ff4f00 55%, #e63d00 100%) !important;
  border: 0 !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(255, 79, 0, 0.35) !important;
}

.rbl-contact-hero--space .rbl-contact-channels__mail,
.rbl-contact-hero--space .rbl-btn--ghost {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(158, 201, 230, 0.45) !important;
  color: #e8f4fc !important;
}

.rbl-contact-hero--space .rbl-contact-social a {
  color: rgba(186, 214, 232, 0.9);
  border-color: rgba(158, 201, 230, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.rbl-contact-hero--space .rbl-contact-social a:hover {
  color: #ffffff;
  border-color: #58a6d6;
  background: rgba(88, 166, 214, 0.15);
}

.rbl-contact-hero--space .rbl-contact-hero__trust {
  color: rgba(186, 214, 232, 0.85);
}

.rbl-contact-hero--space .rbl-contact-hero__trust li::before {
  background: #58a6d6;
}

.rbl-space-dock {
  position: relative;
  padding: 0.35rem;
  border-radius: 1.45rem;
  background:
    linear-gradient(145deg, rgba(88, 166, 214, 0.35), rgba(255, 122, 47, 0.18));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.rbl-space-dock__label {
  position: absolute;
  top: -0.7rem;
  left: 1.2rem;
  z-index: 2;
  margin: 0;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: #0a1830;
  border: 1px solid rgba(158, 201, 230, 0.4);
  color: #7dd3fc;
  font-family: var(--font-ui, sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rbl-contact-hero--space .rbl-contact-hero__form .contact-form--light {
  margin: 0;
  border-radius: 1.25rem;
  border: 0;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .rbl-space__stars,
  .rbl-space__stars--far,
  .rbl-space__orbit::before,
  .rbl-space__orbit--2::before {
    animation: none;
  }
}

@media (max-width: 980px) {
  .rbl-space__orbit,
  .rbl-space__orbit--2 {
    opacity: 0.35;
  }

  .rbl-contact-hero--space {
    padding-top: clamp(5.5rem, 14vw, 6.5rem);
  }
}
