/* ==========================================================================
   Resume Refiner site layer
   Shared chrome (header, footer) for every page plus the public pages: home,
   blog, legal, and the jobs board. Ported from the WordPress theme so the
   marketing site and the app share one look.
   ========================================================================== */

:root {
  --rr-navy: #07111f;
  --rr-navy-soft: #0d1b2e;
  --rr-indigo: #6557ee;
  --rr-indigo-deep: #4f46e5;
  --rr-cyan: #23c7d9;
  --rr-green: #16a780;
  --rr-ink: #101828;
  --rr-copy: #526174;
  --rr-line: #dce4ec;
  --rr-paper: #f7f9fc;
  --rr-white: #ffffff;
  --rr-header-height: 72px;
  --rr-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --rr-font-display: 'Space Grotesk', 'Inter', sans-serif;
  --rr-gradient-button: linear-gradient(135deg, #6d5df4, #5146db);
}

.rr-body {
  margin: 0;
  font-family: var(--rr-font);
  overflow-x: hidden;
}

.rr-page-site {
  background: var(--rr-paper);
  color: var(--rr-ink);
}

.rr-site-main {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.rr-container {
  width: min(100% - 3rem, 1220px);
  margin-inline: auto;
}

.rr-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.rr-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 2000;
  padding: 0.65rem 1rem;
  color: var(--rr-ink);
  background: #fff;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
}

.rr-skip-link:focus {
  top: 1rem;
}

/* Low-specificity resets so the ported components render as designed on top
   of the app stylesheet's global element rules. */
:where(.rr-site) :is(h1, h2, h3, h4, h5, h6) {
  margin: 0 0 1rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.2;
}

:where(.rr-site) p {
  margin: 0 0 1rem;
}

:where(.rr-site, .rr-site-header, .rr-site-footer) a,
:where(.rr-site, .rr-site-header, .rr-site-footer) a:hover {
  color: inherit;
}

.rr-site svg,
.rr-site-header svg,
.rr-site-footer svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.rr-site :is(h1, h2, h3, p) {
  text-wrap: pretty;
}

:where(.rr-site, .rr-site-header, .rr-site-footer) :focus-visible {
  outline: 2px solid #8d99ff;
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.rr-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #fff;
  background: rgba(7, 17, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-family: var(--rr-font);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.rr-site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.97);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.28);
}

.rr-header-inner {
  width: min(100% - 2rem, 1220px);
  height: var(--rr-header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.rr-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-family: var(--rr-font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.rr-brand:hover {
  color: #fff;
}

.rr-brand__mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #6d5df4, #3ec8db);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.35);
}

.rr-brand__mark svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: #fff;
}

.rr-nav {
  display: none;
  margin-left: 0.75rem;
}

.rr-menu {
  display: flex;
  gap: clamp(0.9rem, 1.6vw, 1.6rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.rr-menu a {
  position: relative;
  padding: 0.4rem 0;
  color: #aebed2;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.rr-menu a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #8d7dff, #3ec8db);
  content: '';
  transition: width 0.25s ease;
}

.rr-menu a:hover,
.rr-menu a[aria-current='page'] {
  color: #fff;
}

.rr-menu a:hover::after,
.rr-menu a[aria-current='page']::after {
  width: 100%;
}

.rr-header-actions {
  display: none;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.rr-header-signin,
.rr-header-start {
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.rr-header-signin {
  padding: 0.5rem 0.4rem;
  color: #aebed2;
}

.rr-header-signin:hover {
  color: #fff;
}

.rr-header-start {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.95rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.65rem;
  background: var(--rr-gradient-button);
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rr-header-start:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.38);
}

.rr-header-start svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2;
}

.rr-header-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-grid;
  place-items: center;
  color: #aebed2;
  border-radius: 0.65rem;
  font-size: 1.3rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.rr-header-icon:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.rr-header-icon--danger:hover {
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.12);
}

.rr-site-header .nav-plan-chip {
  color: #c7d2fe;
  border-color: rgba(165, 180, 252, 0.35);
  background: rgba(99, 102, 241, 0.16);
}

.rr-site-header .nav-plan-chip:hover {
  color: #fff;
  border-color: rgba(165, 180, 252, 0.6);
  background: rgba(99, 102, 241, 0.28);
}

.rr-site-header .nav-plan-chip--pro {
  color: #fcd34d;
  border-color: rgba(252, 211, 77, 0.35);
  background: rgba(217, 119, 6, 0.16);
}

.rr-nav-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.rr-nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.rr-nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rr-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.rr-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.rr-mobile-menu {
  display: none;
  max-height: calc(100vh - var(--rr-header-height));
  overflow-y: auto;
  padding: 0.5rem 1rem 1.25rem;
  background: var(--rr-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rr-mobile-menu.is-open {
  display: block;
}

.rr-mobile-nav,
.rr-mobile-menu__actions {
  width: min(100%, 1220px);
  margin-inline: auto;
}

.rr-mobile-nav {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.rr-mobile-nav a {
  display: block;
  padding: 0.85rem 0.2rem;
  color: #cdd8e9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-weight: 600;
  text-decoration: none;
}

.rr-mobile-nav a:hover,
.rr-mobile-nav a[aria-current='page'] {
  color: #b3a9ff;
}

.rr-mobile-menu__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.rr-mobile-cta {
  display: flex;
  justify-content: center;
  padding: 0.9rem;
  color: #fff;
  border-radius: 0.8rem;
  background: var(--rr-gradient-button);
  font-weight: 700;
  text-decoration: none;
}

.rr-mobile-cta--quiet {
  color: #cdd8e9;
  border: 1px solid #33445a;
  background: transparent;
}

@media (min-width: 960px) {
  .rr-nav,
  .rr-header-actions {
    display: flex;
  }

  .rr-nav-toggle,
  .rr-mobile-menu,
  .rr-mobile-menu.is-open {
    display: none;
  }
}

@media (min-width: 960px) and (max-width: 1180px) {
  .rr-page-app .rr-header-start {
    display: none;
  }

  .rr-header-inner {
    gap: 0.9rem;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.rr-site-footer {
  padding: 3.25rem 0 1.75rem;
  color: #fff;
  background: #050c16;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--rr-font);
}

.rr-footer-top {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rr-footer-kicker {
  margin: 0 0 0.85rem;
  color: #6bd8e5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rr-footer-intro h2 {
  max-width: 640px;
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: var(--rr-font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.rr-footer-intro p {
  max-width: 56ch;
  margin: 0;
  color: #8ea1b8;
  line-height: 1.7;
}

.rr-footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.rr-footer-cta {
  min-height: 3.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1.5rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  background: var(--rr-gradient-button);
  box-shadow: 0 12px 34px rgba(79, 70, 229, 0.3);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.rr-footer-cta:hover {
  color: #fff;
  transform: translateY(-2px);
}

.rr-footer-cta svg {
  width: 1.1rem;
  height: 1.1rem;
}

.rr-play-badge {
  min-height: 3.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.1rem;
  color: #fff;
  border: 1px solid #33445a;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.rr-play-badge:hover {
  color: #fff;
  border-color: #66d2de;
  transform: translateY(-2px);
}

.rr-site-footer .rr-play-badge svg {
  width: 1.6rem;
  height: 1.6rem;
  stroke: none;
}

.rr-play-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.rr-play-badge small {
  color: #aebed2;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rr-play-badge strong {
  font-size: 0.98rem;
}

.rr-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rr-footer-nav div {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.rr-footer-nav p {
  margin: 0 0 0.35rem;
  color: #5f7390;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rr-footer-nav a {
  width: fit-content;
  color: #aebed2;
  font-size: 0.9rem;
  text-decoration: none;
}

.rr-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.rr-footer-bottom p {
  margin: 0;
  color: #5f7390;
  font-size: 0.85rem;
}

.rr-footer-contact {
  color: #aebed2;
  font-size: 0.88rem;
  text-decoration: none;
}

.rr-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.rr-footer-legal a {
  color: #7f94ad;
  font-size: 0.85rem;
  text-decoration: none;
}

.rr-site-footer .rr-footer-nav a:hover,
.rr-site-footer .rr-footer-contact:hover,
.rr-site-footer .rr-footer-legal a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .rr-footer-top {
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: end;
  }

  .rr-footer-nav {
    grid-template-columns: repeat(3, minmax(0, 13rem));
  }

  .rr-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .rr-footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .rr-footer-cta,
  .rr-play-badge {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Accordion base (styled per page below)
   -------------------------------------------------------------------------- */
.rr-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Editorial pages: shared hero and body
   -------------------------------------------------------------------------- */
.rr-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.25rem) 0 clamp(3.5rem, 6vw, 4.75rem);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(101, 87, 238, 0.3), transparent 38%),
    radial-gradient(circle at 4% 92%, rgba(35, 199, 217, 0.16), transparent 34%),
    linear-gradient(125deg, #07101d 0%, #0a1728 55%, #07111f 100%);
}

.rr-page-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(142, 160, 187, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 160, 187, 0.11) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 62%, #000);
}

.rr-page-hero__inner {
  position: relative;
  z-index: 1;
}

.rr-page-hero .rr-home-overline {
  color: #6bd8e5;
}

.rr-page-hero h1 {
  max-width: 900px;
  margin: 0 0 1.25rem;
  color: #fff;
  font-family: var(--rr-font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.rr-page-hero--article h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.rr-page-hero__lead {
  max-width: 680px;
  margin: 0;
  color: #aebed2;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.rr-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin: 1.5rem 0 0;
  color: #8ea1b8;
  font-size: 0.85rem;
}

.rr-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  color: #aebed2;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.rr-site .rr-back-link:hover {
  color: #fff;
}

.rr-back-link svg {
  width: 1rem;
  height: 1rem;
}

.rr-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.rr-chip {
  padding: 0.38rem 0.72rem;
  color: #d9d5ff;
  border: 1px solid rgba(167, 156, 255, 0.35);
  border-radius: 999px;
  background: rgba(101, 87, 238, 0.16);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.rr-site .rr-chip:hover {
  color: #fff;
  border-color: rgba(167, 156, 255, 0.7);
}

.rr-search-form {
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.4rem 0.4rem 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease;
}

.rr-search-form:focus-within {
  border-color: rgba(107, 216, 229, 0.6);
}

.rr-search-form > svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  color: #8ea1b8;
}

.rr-search-form input {
  min-width: 0;
  flex: 1;
  padding: 0.6rem 0.25rem;
  color: #fff;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
}

.rr-search-form input::placeholder {
  color: #7f94ad;
}

.rr-search-form button {
  flex: none;
  padding: 0.75rem 1.15rem;
  color: #fff;
  border: 0;
  border-radius: 0.7rem;
  background: var(--rr-gradient-button);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.rr-search-form--jobs {
  max-width: 820px;
}

.rr-search-form--jobs input + input {
  padding-left: 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.rr-page-body {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 6.5rem);
  background: var(--rr-paper);
}

.rr-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.rr-filter-chip {
  padding: 0.5rem 0.9rem;
  color: #46566a;
  border: 1px solid var(--rr-line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.rr-site .rr-filter-chip:hover {
  color: var(--rr-indigo-deep);
  border-color: #b5aff4;
}

.rr-site .rr-filter-chip[aria-current='page'] {
  color: #fff;
  border-color: var(--rr-indigo-deep);
  background: var(--rr-indigo-deep);
}

.rr-results-meta {
  margin: 0 0 1.25rem;
  color: #66758a;
  font-size: 0.85rem;
}

.rr-empty-state {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px dashed #cbd5e1;
  border-radius: 1.25rem;
  background: #fff;
  text-align: center;
}

.rr-empty-state h2 {
  color: #172237;
  font-family: var(--rr-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.rr-empty-state p {
  margin: 0;
  color: #66758a;
}

.rr-empty-state a {
  color: var(--rr-indigo-deep);
  font-weight: 700;
}

/* Blog grid */
.rr-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.rr-home-post--featured {
  grid-column: span 2;
}

.rr-post-grid .rr-home-post--featured > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.rr-home-post--featured .rr-home-post__media {
  height: 100%;
  min-height: 300px;
}

.rr-home-post--featured .rr-home-post__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.rr-home-post--featured h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

.rr-home-post--news .rr-home-post__media {
  background: linear-gradient(135deg, #0d2c3f, #1a8ea3);
}

/* Pagination */
.rr-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.rr-pagination ol {
  display: flex;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rr-pagination ol a,
.rr-pagination ol span,
.rr-pagination__gap {
  min-width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  padding: 0 0.5rem;
  color: #46566a;
  border: 1px solid var(--rr-line);
  border-radius: 0.65rem;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.rr-pagination__gap {
  border-color: transparent;
  background: transparent;
}

.rr-pagination ol span[aria-current='page'] {
  color: #fff;
  border-color: var(--rr-indigo-deep);
  background: var(--rr-indigo-deep);
}

.rr-pagination__step {
  padding: 0.65rem 1rem;
  color: var(--rr-indigo-deep);
  border: 1px solid var(--rr-line);
  border-radius: 0.65rem;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.rr-pagination__step.is-disabled {
  color: #a3b0c0;
}

.rr-site .rr-pagination a:hover {
  color: var(--rr-indigo-deep);
  border-color: #b5aff4;
}

/* --------------------------------------------------------------------------
   Article and legal layout
   -------------------------------------------------------------------------- */
.rr-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.rr-article-layout--toc {
  grid-template-columns: 250px minmax(0, 1fr);
}

.rr-article-main {
  min-width: 0;
}

.rr-prose {
  max-width: 740px;
  color: #303d50;
  font-size: 1.05rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.rr-prose > :first-child {
  margin-top: 0;
}

.rr-prose h2 {
  margin: 2.6rem 0 1rem;
  color: var(--rr-ink);
  font-family: var(--rr-font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.rr-prose h3 {
  margin: 2rem 0 0.75rem;
  color: var(--rr-ink);
  font-family: var(--rr-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.rr-prose h4,
.rr-prose h5 {
  margin: 1.75rem 0 0.6rem;
  color: var(--rr-ink);
  font-size: 1.05rem;
}

.rr-prose p {
  margin: 0 0 1.25rem;
}

.rr-prose ul,
.rr-prose ol {
  margin: 0 0 1.5rem;
  padding-left: 1.35rem;
}

.rr-prose li {
  margin: 0.45rem 0;
}

.rr-prose li::marker {
  color: var(--rr-indigo);
}

.rr-site .rr-prose a {
  color: var(--rr-indigo-deep);
  text-decoration: underline;
  text-decoration-color: rgba(79, 70, 229, 0.35);
  text-underline-offset: 3px;
}

.rr-site .rr-prose a:hover {
  text-decoration-color: currentColor;
}

.rr-prose strong,
.rr-prose b {
  color: #172237;
}

.rr-prose blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  color: #253247;
  border-left: 3px solid var(--rr-indigo);
  border-radius: 0 0.9rem 0.9rem 0;
  background: #fff;
  font-family: var(--rr-font-display);
  font-size: 1.15rem;
}

.rr-prose blockquote p:last-child {
  margin-bottom: 0;
}

.rr-prose code {
  padding: 0.15em 0.35em;
  border-radius: 0.35rem;
  background: #eef2f7;
  font-size: 0.9em;
}

.rr-prose pre {
  padding: 1.25rem;
  overflow-x: auto;
  color: #e2e8f0;
  border-radius: 1rem;
  background: var(--rr-navy-soft);
}

.rr-prose pre code {
  padding: 0;
  background: none;
}

.rr-prose table {
  width: 100%;
  display: block;
  margin: 1.5rem 0 2rem;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rr-prose th,
.rr-prose td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--rr-line);
  text-align: left;
  vertical-align: top;
}

.rr-prose th {
  color: var(--rr-ink);
  background: #f0f4f8;
}

.rr-prose hr {
  height: 1px;
  margin: 2.5rem 0;
  border: 0;
  background: var(--rr-line);
}

.rr-prose mark {
  padding: 0 0.15em;
  color: #3d35ab;
  border-radius: 2px;
  background: #e9e7ff;
}

.rr-article-sources {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rr-line);
  font-size: 0.92rem;
}

.rr-article-sources h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.rr-article-aside {
  position: sticky;
  top: calc(var(--rr-header-height) + 1.5rem);
  display: grid;
  gap: 1rem;
}

.rr-aside-card {
  padding: 1.5rem;
  border: 1px solid #dfe6ee;
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 14px 40px rgba(31, 47, 70, 0.055);
}

.rr-aside-card h2 {
  margin: 0 0 0.6rem;
  color: #172237;
  font-family: var(--rr-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.rr-aside-card p {
  margin: 0 0 1.25rem;
  color: #66758a;
  font-size: 0.88rem;
  line-height: 1.65;
}

.rr-aside-card--cta {
  border-color: #5d52df;
  background: linear-gradient(145deg, #5e53df, #4137ae);
  box-shadow: 0 20px 50px rgba(78, 67, 199, 0.24);
}

.rr-aside-card--cta h2 {
  color: #fff;
}

.rr-aside-card--cta p {
  color: #d8d5f9;
}

.rr-aside-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
}

.rr-aside-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.rr-site .rr-aside-card--cta .rr-home-button {
  width: 100%;
  min-height: 3rem;
  color: #3b32a8;
  background: #fff;
  box-shadow: none;
}

.rr-share {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rr-share a {
  padding: 0.5rem 0.85rem;
  color: #46566a;
  border: 1px solid var(--rr-line);
  border-radius: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.rr-site .rr-share a:hover {
  color: var(--rr-indigo-deep);
  border-color: #b5aff4;
}

.rr-related {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
  background: var(--rr-paper);
}

.rr-related .rr-home-section__heading {
  margin-bottom: 2rem;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--rr-line);
}

.rr-related .rr-home-section__heading h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

/* Legal */
.rr-legal-toc {
  position: sticky;
  top: calc(var(--rr-header-height) + 1.5rem);
  padding: 1.25rem;
  border: 1px solid #dfe6ee;
  border-radius: 1rem;
  background: #fff;
}

.rr-legal-toc p {
  margin: 0 0 0.75rem;
  color: #8794a6;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rr-legal-toc ol {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rr-legal-toc a {
  display: block;
  padding: 0.4rem 0.55rem;
  color: #46566a;
  border-radius: 0.5rem;
  font-size: 0.84rem;
  line-height: 1.4;
  text-decoration: none;
}

.rr-site .rr-legal-toc a:hover {
  color: var(--rr-indigo-deep);
  background: #eef2f7;
}

.rr-legal-card {
  max-width: none;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #dfe6ee;
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 18px 50px rgba(36, 52, 74, 0.055);
}

.rr-legal-card section {
  scroll-margin-top: calc(var(--rr-header-height) + 1.5rem);
}

.rr-legal-card section + section {
  margin-top: 0.5rem;
  border-top: 1px solid #edf1f5;
}

.rr-legal-card section h2 {
  margin-top: 1.75rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.rr-legal-card section:first-child h2 {
  margin-top: 0;
}

.rr-legal-switch {
  margin-top: 1.5rem;
}

.rr-legal-switch a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5147cf;
  font-weight: 700;
  text-decoration: none;
}

.rr-site .rr-legal-switch a:hover {
  color: var(--rr-indigo-deep);
}

.rr-legal-switch svg {
  width: 1rem;
  height: 1rem;
}

/* Jobs board */
.rr-jobs-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #d7d3fb;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, #f1efff, #ecfbfd);
}

.rr-jobs-callout strong {
  display: block;
  color: #172237;
  font-family: var(--rr-font-display);
  font-size: 1.1rem;
}

.rr-jobs-callout span {
  color: var(--rr-copy);
  font-size: 0.9rem;
}

.rr-site .rr-jobs-callout .rr-home-button {
  flex: none;
  min-height: 3rem;
}

.rr-job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.rr-job-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid #dfe6ee;
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 14px 40px rgba(31, 47, 70, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rr-job-card:hover {
  border-color: #cdd6e3;
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(31, 47, 70, 0.1);
}

.rr-job-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  color: #8794a6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rr-site .rr-job-card h2 {
  margin: 0 0 0.9rem;
  color: #172237;
  font-family: var(--rr-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.rr-job-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.rr-job-card__facts li {
  padding: 0.3rem 0.6rem;
  color: #46566a;
  border-radius: 999px;
  background: #f0f3f7;
  font-size: 0.75rem;
  font-weight: 600;
}

.rr-job-card__facts li:first-child {
  color: var(--rr-indigo-deep);
  background: #eeecff;
}

.rr-job-card p {
  margin: 0 0 1.25rem;
  color: #66758a;
  font-size: 0.88rem;
  line-height: 1.65;
}

.rr-job-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}

.rr-job-card__actions form {
  margin: 0;
}

.rr-job-button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  color: #253247;
  border: 1px solid #cfd8e3;
  border-radius: 0.7rem;
  background: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rr-site .rr-job-button:hover {
  color: var(--rr-indigo-deep);
  border-color: #b5aff4;
}

.rr-job-button svg {
  width: 0.95rem;
  height: 0.95rem;
}

.rr-job-button--primary {
  color: #fff;
  border-color: transparent;
  background: var(--rr-gradient-button);
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.25);
}

.rr-site .rr-job-button--primary:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Editorial responsive */
@media (max-width: 1080px) {
  .rr-article-layout,
  .rr-article-layout--toc {
    grid-template-columns: 1fr;
  }

  .rr-article-aside,
  .rr-legal-toc {
    position: static;
  }

  .rr-article-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 740px;
  }

  .rr-legal-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .rr-post-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rr-home-post--featured {
    grid-column: 1 / -1;
  }

  .rr-job-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .rr-container {
    width: min(100% - 2rem, 620px);
  }

  .rr-post-grid,
  .rr-article-aside,
  .rr-legal-toc ol {
    grid-template-columns: 1fr;
  }

  .rr-post-grid .rr-home-post--featured > a {
    display: block;
  }

  .rr-home-post--featured .rr-home-post__media {
    min-height: 0;
    height: 210px;
  }

  .rr-jobs-callout {
    flex-direction: column;
    align-items: stretch;
  }

  .rr-search-form--jobs {
    flex-wrap: wrap;
    padding: 0.6rem;
  }

  .rr-search-form--jobs > svg {
    display: none;
  }

  .rr-search-form--jobs input,
  .rr-search-form--jobs input + input {
    flex: 1 1 100%;
    padding: 0.7rem 0.6rem;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .rr-search-form--jobs button {
    flex: 1 1 100%;
    margin-top: 0.3rem;
  }
}

@media (max-width: 520px) {
  .rr-container {
    width: min(100% - 1.35rem, 480px);
  }

  .rr-search-form:not(.rr-search-form--jobs) button {
    padding: 0.75rem 0.85rem;
  }

  .rr-pagination__step {
    display: none;
  }
}

/* ==========================================================================
   Home page (ported from the WordPress front page)
   ========================================================================== */
.rr-site {
  --rr-home-navy: #07111f;
  --rr-home-indigo: #6557ee;
  --rr-home-indigo-deep: #4f46e5;
  --rr-home-ink: #101828;
  --rr-home-copy: #526174;
  --rr-home-paper: #f7f9fc;
}

.rr-target-item--92 { --rr-level: 92%; }
.rr-target-item--84 { --rr-level: 84%; }
.rr-target-item--88 { --rr-level: 88%; }

.rr-home {
    color: var(--rr-home-ink);
    background: var(--rr-home-paper);
}

.rr-home-section {
    position: relative;
    padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.rr-home-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--rr-home-indigo-deep);
    font-family: 'Space Grotesk', var(--rr-font);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1;
    text-transform: uppercase;
}

.rr-home-overline::before {
    width: 1.5rem;
    height: 1px;
    background: currentColor;
    content: '';
}

.rr-home-section__heading {
    max-width: 760px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}

.rr-home-section__heading h2,
.rr-home-compare__copy h2,
.rr-home-everywhere__copy h2,
.rr-home-faq__intro h2,
.rr-home-final h2 {
    color: var(--rr-home-ink);
    font-family: 'Space Grotesk', var(--rr-font);
    font-size: clamp(2.35rem, 5vw, 4.65rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.rr-home-section__heading p,
.rr-home-compare__copy > p,
.rr-home-everywhere__copy > p,
.rr-home-faq__intro p,
.rr-home-final p {
    color: var(--rr-home-copy);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.75;
}

.rr-js [data-rr-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--rr-reveal-delay, 0ms);
}

.rr-js [data-rr-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero */
.rr-home-hero {
    position: relative;
    min-height: calc(100svh - var(--rr-header-height));
    display: grid;
    align-items: center;
    padding: clamp(6rem, 9vw, 9rem) 0 6rem;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 74% 44%, rgba(85, 80, 227, 0.2), transparent 29%),
        linear-gradient(125deg, #07101d 0%, #0a1728 48%, #07111f 100%);
}

.rr-home-grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(142, 160, 187, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(142, 160, 187, 0.11) 1px, transparent 1px);
    background-position: center;
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 53%, #000);
}

.rr-home-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.rr-home-aurora--one {
    width: 48rem;
    height: 48rem;
    top: -30rem;
    left: -12rem;
    background: radial-gradient(circle, rgba(39, 199, 217, 0.2), transparent 66%);
    animation: rr-home-drift 13s ease-in-out infinite alternate;
}

.rr-home-aurora--two {
    width: 52rem;
    height: 52rem;
    right: -24rem;
    bottom: -28rem;
    background: radial-gradient(circle, rgba(101, 87, 238, 0.3), transparent 66%);
    animation: rr-home-drift 16s ease-in-out infinite alternate-reverse;
}

@keyframes rr-home-drift {
    to { transform: translate3d(3rem, 2rem, 0) scale(1.08); }
}

.rr-home-hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.rr-home-hero__copy {
    position: relative;
    z-index: 3;
}

.rr-home-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.6rem;
    padding: 0.62rem 0.9rem;
    color: #cdd8e9;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.rr-home-pill:hover {
    color: #fff;
    border-color: rgba(89, 223, 238, 0.4);
    background: rgba(255, 255, 255, 0.09);
}

.rr-home-pill svg {
    width: 1rem;
    transition: transform 0.25s ease;
}

.rr-home-pill:hover svg { transform: translateX(3px); }

.rr-home-pill__pulse {
    position: relative;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: #2dd4bf;
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.45);
    animation: rr-home-pulse 2s infinite;
}

@keyframes rr-home-pulse {
    70% { box-shadow: 0 0 0 8px rgba(45, 212, 191, 0); }
    100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

.rr-home-hero h1 {
    max-width: 700px;
    margin: 0 0 1.7rem;
    color: #fff;
    font-family: 'Space Grotesk', var(--rr-font);
    font-size: clamp(3.15rem, 5.7vw, 6.3rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.rr-home-hero h1 span {
    color: #968bff;
    background: linear-gradient(100deg, #a79cff 5%, #61dded 94%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rr-home-hero__lead {
    max-width: 620px;
    margin-bottom: 2.15rem;
    color: #aebed2;
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    line-height: 1.72;
}

.rr-home-hero__actions,
.rr-home-final__actions,
.rr-home-everywhere__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.rr-home-button {
    min-height: 3.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.rr-home-button > svg {
    width: 1.15rem;
    height: 1.15rem;
    transition: transform 0.25s ease;
}

.rr-home-button:hover > svg { transform: translateX(4px); }

.rr-home-button--primary {
    color: #fff;
    background: linear-gradient(135deg, #6d5df4, #5146db);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 34px rgba(79, 70, 229, 0.37), inset 0 1px rgba(255, 255, 255, 0.22);
}

.rr-home-button--primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(79, 70, 229, 0.46), inset 0 1px rgba(255, 255, 255, 0.25);
}

.rr-home-button--quiet {
    color: #e1e8f2;
    background: transparent;
}

.rr-home-button--quiet:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.rr-home-button__play {
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
}

.rr-home-button__play svg { width: 0.9rem; }

.rr-home-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.15rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.rr-home-proof li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #7f94ad;
    font-size: 0.76rem;
}

.rr-home-proof svg {
    width: 0.9rem;
    color: #37cfb4;
    stroke-width: 2.4;
}

/* Product mockup */
.rr-product-stage {
    position: relative;
    perspective: 1400px;
    /* Flat (not preserve-3d) so the tilted window never sorts behind the glow. */
    transform-style: flat;
    will-change: transform;
}

.rr-product-stage__glow { z-index: 0; }
.rr-product-window { z-index: 1; }

.rr-product-stage__glow {
    position: absolute;
    inset: 5% 4% -5%;
    border-radius: 4rem;
    background: rgba(87, 76, 231, 0.29);
    filter: blur(80px);
}

.rr-product-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(183, 201, 225, 0.2);
    border-radius: 1.15rem;
    color: #172237;
    background: #f9fbfd;
    box-shadow: 0 42px 100px rgba(0, 0, 0, 0.43), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transform: rotateY(-3deg) rotateX(1deg);
    transition: transform 0.4s ease;
}

.rr-product-stage:hover .rr-product-window { transform: rotateY(0) rotateX(0) translateY(-4px); }

.rr-product-window__bar {
    height: 3.25rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 1rem;
    color: #475569;
    background: #fff;
    border-bottom: 1px solid #e6ebf2;
    font-size: 0.66rem;
}

.rr-window-dots { display: flex; gap: 0.33rem; }
.rr-window-dots span { width: 0.48rem; height: 0.48rem; border-radius: 50%; background: #d5dce6; }
.rr-window-dots span:first-child { background: #ff8e88; }
.rr-window-dots span:nth-child(2) { background: #ffd06d; }
.rr-window-dots span:last-child { background: #5bd8b3; }

.rr-product-window__brand {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #182238;
    font-weight: 700;
}

.rr-mini-logo {
    width: 1.45rem;
    height: 1.45rem;
    display: grid;
    place-items: center;
    border-radius: 0.4rem;
    color: #fff;
    background: linear-gradient(135deg, #6d5df4, #3ec8db);
}
.rr-mini-logo svg { width: 0.9rem; }

.rr-window-secure {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #607086;
}
.rr-window-secure svg { width: 0.8rem; color: #12a77c; }

.rr-product-window__body { min-height: 440px; display: grid; grid-template-columns: 3.4rem 1fr; }

.rr-product-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.15rem;
    background: #0c1729;
}

.rr-product-sidebar span {
    width: 2.15rem;
    height: 2.15rem;
    display: grid;
    place-items: center;
    color: #64748b;
    border-radius: 0.55rem;
}
.rr-product-sidebar span.is-active { color: #fff; background: #6257df; }
.rr-product-sidebar svg { width: 1rem; }

.rr-product-content { padding: 1.4rem 1.45rem 1.5rem; }

.rr-product-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.rr-product-heading h2 { margin: 0.2rem 0 0; color: #172237; font-size: 1.05rem; letter-spacing: -0.02em; }
.rr-product-kicker { color: #8c99aa; font-size: 0.52rem; font-weight: 700; letter-spacing: 0.14em; }
.rr-status-chip { display: flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.55rem; color: #58687b; background: #eef2f6; border-radius: 999px; font-size: 0.53rem; }
.rr-status-chip i { width: 0.4rem; height: 0.4rem; background: #18b989; border-radius: 50%; }

.rr-product-progress { display: flex; align-items: center; margin: 1.25rem 0; color: #8b98a9; font-size: 0.48rem; white-space: nowrap; }
.rr-product-progress span { display: flex; align-items: center; gap: 0.25rem; }
.rr-product-progress span i { width: 1.15rem; height: 1.15rem; display: grid; place-items: center; color: #7a8798; background: #e7ebf0; border-radius: 50%; font-size: 0.48rem; font-style: normal; }
.rr-product-progress span.is-complete i { color: #fff; background: #18b989; }
.rr-product-progress span.is-current { color: #4f46e5; font-weight: 700; }
.rr-product-progress span.is-current i { color: #fff; background: #5d52df; box-shadow: 0 0 0 3px #e6e4ff; }
.rr-product-progress b { flex: 1; min-width: 0.5rem; height: 1px; margin: 0 0.3rem; background: #dce3eb; }

.rr-product-panels { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.75fr); gap: 0.9rem; }
.rr-resume-preview,
.rr-insight-panel { border: 1px solid #e0e6ee; border-radius: 0.75rem; background: #fff; }
.rr-resume-preview { min-height: 280px; padding: 1.2rem; box-shadow: 0 8px 24px rgba(22, 34, 55, 0.05); }
.rr-resume-preview__head { display: flex; justify-content: space-between; align-items: flex-start; }
.rr-resume-preview__head div { display: flex; flex-direction: column; }
.rr-resume-preview__head strong { color: #172237; font-family: 'Space Grotesk', var(--rr-font); font-size: 0.82rem; letter-spacing: 0.02em; }
.rr-resume-preview__head small { color: #596b80; font-size: 0.49rem; }
.rr-resume-preview__head > span { padding: 0.25rem 0.4rem; color: #5d52df; background: #edebff; border-radius: 0.25rem; font-size: 0.42rem; font-weight: 700; letter-spacing: 0.08em; }
.rr-resume-rule { height: 1px; margin: 0.75rem 0; background: #d8dfe8; }
.rr-resume-label { display: block; margin: 0.5rem 0 0.35rem; color: #5967dc; font-size: 0.43rem; font-weight: 800; letter-spacing: 0.12em; }
.rr-resume-role { display: block; margin-bottom: 0.45rem; color: #253147; font-size: 0.56rem; }
.rr-resume-preview p { position: relative; margin: 0 0 0.45rem; padding-left: 0.65rem; color: #607086; font-size: 0.48rem; line-height: 1.55; }
.rr-resume-preview p::before { position: absolute; left: 0; content: '•'; color: #5d52df; }
.rr-resume-preview mark { padding: 0 0.08rem; color: #3d35ab; background: #e9e7ff; border-radius: 2px; }
.rr-resume-tags { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.rr-resume-tags span { padding: 0.23rem 0.35rem; color: #516176; background: #f0f3f7; border-radius: 0.2rem; font-size: 0.42rem; }

.rr-insight-panel { align-self: stretch; padding: 0.8rem; background: #fbfcfe; }
.rr-insight-panel__title { display: flex; align-items: center; gap: 0.45rem; padding-bottom: 0.75rem; border-bottom: 1px solid #e7ebf1; }
.rr-insight-panel__title > span { width: 1.75rem; height: 1.75rem; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #6358e6, #23c7d9); border-radius: 0.5rem; }
.rr-insight-panel__title svg { width: 0.9rem; }
.rr-insight-panel__title div { display: flex; flex-direction: column; }
.rr-insight-panel__title strong { color: #1f2b3d; font-size: 0.57rem; }
.rr-insight-panel__title small { color: #8491a2; font-size: 0.43rem; }
.rr-target-item { display: grid; grid-template-columns: 1fr auto; gap: 0.2rem; margin-top: 0.75rem; color: #607086; font-size: 0.47rem; }
.rr-target-item strong { color: #15936f; font-size: 0.43rem; }
.rr-target-item i { grid-column: 1 / -1; height: 0.25rem; overflow: hidden; background: #e6eaf0; border-radius: 99px; }
.rr-target-item i::after { display: block; width: var(--rr-level); height: 100%; border-radius: inherit; background: linear-gradient(90deg, #6257e5, #23c7d9); content: ''; animation: rr-home-grow 1.4s 0.8s ease both; transform-origin: left; }
@keyframes rr-home-grow { from { transform: scaleX(0); } }
.rr-insight-note { display: flex; gap: 0.4rem; margin-top: 0.9rem; padding: 0.6rem; color: #34735f; background: #eafaf5; border: 1px solid #c8efe2; border-radius: 0.5rem; }
.rr-insight-note svg { flex: none; width: 0.8rem; }
.rr-insight-note span { font-size: 0.4rem; line-height: 1.45; }
.rr-insight-note strong { display: block; font-size: 0.45rem; }

.rr-float-card { position: absolute; z-index: 3; display: flex; align-items: center; color: #172237; background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(255, 255, 255, 0.7); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.23); backdrop-filter: blur(12px); }
.rr-float-card--match { left: -3rem; bottom: 3.8rem; gap: 0.65rem; padding: 0.75rem 0.9rem; border-radius: 0.75rem; animation: rr-card-float 4.5s ease-in-out infinite; }
.rr-float-card--match > span { width: 1.7rem; height: 1.7rem; display: grid; place-items: center; color: #fff; background: #16a780; border-radius: 50%; }
.rr-float-card--match svg { width: 0.9rem; stroke-width: 2.5; }
.rr-float-card--match div { display: flex; flex-direction: column; }
.rr-float-card--match strong { font-size: 0.58rem; }
.rr-float-card--match small { color: #718096; font-size: 0.45rem; }
.rr-float-card--export { top: 5.5rem; right: -2.2rem; display: block; padding: 0.7rem; border-radius: 0.7rem; animation: rr-card-float 4s 0.8s ease-in-out infinite; }
.rr-float-card--export small { display: block; margin-bottom: 0.4rem; color: #78869a; font-size: 0.42rem; font-weight: 700; letter-spacing: 0.1em; }
.rr-float-card--export div { display: flex; gap: 0.3rem; }
.rr-float-card--export span { padding: 0.25rem 0.4rem; color: #4f46e5; background: #eceaff; border-radius: 0.25rem; font-size: 0.42rem; font-weight: 800; }
@keyframes rr-card-float { 50% { transform: translateY(-9px); } }

.rr-scroll-cue { position: absolute; z-index: 3; bottom: 1.3rem; left: 50%; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: #71839a; font-size: 0.55rem; letter-spacing: 0.1em; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); }
.rr-scroll-cue span { width: 1.35rem; height: 2.1rem; border: 1px solid #53677f; border-radius: 99px; }
.rr-scroll-cue span::after { display: block; width: 3px; height: 6px; margin: 0.4rem auto; background: #8d99ff; border-radius: 99px; content: ''; animation: rr-scroll-dot 1.8s infinite; }
@keyframes rr-scroll-dot { 70% { transform: translateY(8px); opacity: 0; } }

/* Capability ticker */
.rr-home-marquee { overflow: hidden; color: #d4deea; background: #0d1929; border-top: 1px solid rgba(255, 255, 255, 0.06); border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.rr-home-marquee__track { width: max-content; display: flex; align-items: center; gap: 1.7rem; padding: 1rem 0; animation: rr-marquee 30s linear infinite; }
.rr-home-marquee__track span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.rr-home-marquee__track i { width: 0.35rem; height: 0.35rem; background: #6358e6; border-radius: 50%; box-shadow: 0 0 12px #6358e6; }
@keyframes rr-marquee { to { transform: translateX(-50%); } }

/* Bento product tour */
.rr-home-tour { background: #f7f9fc; }
.rr-bento { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.rr-bento-card { position: relative; min-height: 430px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr); align-items: center; gap: 2rem; overflow: hidden; padding: clamp(1.6rem, 3vw, 2.5rem); border: 1px solid #e1e7ef; border-radius: 1.4rem; background: #fff; box-shadow: 0 18px 50px rgba(36, 52, 74, 0.055); transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; }
.rr-bento-card:hover { transform: translateY(-6px); border-color: #cdd6e3; box-shadow: 0 28px 70px rgba(36, 52, 74, 0.11); }
.rr-bento-copy { position: relative; z-index: 2; }
.rr-bento-icon { width: 3rem; height: 3rem; display: grid; place-items: center; margin-bottom: 2rem; color: #5a4fe0; background: #eeecff; border-radius: 0.85rem; }
.rr-bento-icon svg { width: 1.35rem; }
.rr-bento-icon--cyan { color: #078fa5; background: #e2f9fc; }
.rr-bento-icon--green { color: #087c5c; background: #e4f8f1; }
.rr-bento-icon--gold { color: #b07008; background: #fff3d7; }
.rr-bento-index { position: absolute; top: 0.3rem; right: 0; color: #c9d1db; font-family: 'Space Grotesk', var(--rr-font); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; }
.rr-bento-card h3 { color: #172237; font-family: 'Space Grotesk', var(--rr-font); font-size: clamp(1.5rem, 2.4vw, 2.15rem); font-weight: 600; letter-spacing: -0.04em; }
.rr-bento-card p { margin: 0; color: #66758a; font-size: 0.92rem; line-height: 1.7; }
.rr-bento-card--truth,
.rr-bento-card--kit { min-height: 355px; }

.rr-library-visual { position: relative; height: 240px; }
.rr-library-card { position: absolute; left: 50%; width: 205px; height: 240px; padding: 1rem; border: 1px solid #d8e0ea; border-radius: 0.8rem; background: #fff; box-shadow: 0 18px 40px rgba(32, 47, 68, 0.12); transform-origin: bottom center; }
.rr-library-card--back { transform: translateX(-57%) rotate(-10deg); background: #e8ebff; }
.rr-library-card--middle { transform: translateX(-43%) rotate(8deg); background: #e8f7fa; }
.rr-library-card--back span,
.rr-library-card--middle span { display: block; width: 45%; height: 8px; margin: 1rem 0 1.5rem; background: #b9c5d5; border-radius: 5px; }
.rr-library-card--back i,
.rr-library-card--middle i { display: block; height: 5px; margin: 0.7rem 0; background: #ccd5e0; border-radius: 5px; }
.rr-library-card--front { top: 3.1rem; height: auto; min-height: 105px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.7rem; padding: 0.9rem; transform: translateX(-50%); }
.rr-library-card--front:hover { transform: translateX(-50%) translateY(-5px); }
.rr-file-symbol { width: 2rem; height: 2.4rem; display: grid; place-items: center; color: #fff; background: #5f54e3; border-radius: 0.35rem; font-family: Georgia, serif; font-size: 0.85rem; font-weight: 700; }
.rr-library-card--front div { display: flex; min-width: 0; flex-direction: column; }
.rr-library-card--front strong { color: #253147; font-size: 0.65rem; }
.rr-library-card--front small { color: #8b98a9; font-size: 0.5rem; }
.rr-library-card--front b { padding: 0.25rem 0.4rem; color: #5147cc; background: #edebff; border-radius: 0.3rem; font-size: 0.42rem; letter-spacing: 0.08em; }

.rr-target-visual { position: relative; align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: 1.3rem; color: #536276; border: 1px solid #d9e2ec; border-radius: 1rem; background: linear-gradient(145deg, #f9fbfd, #eef5f8); box-shadow: 0 18px 40px rgba(33, 56, 78, 0.08); }
.rr-target-visual__label { color: #8794a6; font-size: 0.48rem; font-weight: 800; letter-spacing: 0.13em; }
.rr-target-visual p { margin: 1.1rem 0 1.4rem; color: #46566a; font-size: 0.65rem; line-height: 1.9; }
.rr-target-visual mark { padding: 0.15rem; color: #176f7d; background: #c9f1f5; border-radius: 0.2rem; }
.rr-target-visual > div { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.rr-target-visual > div span { padding: 0.3rem 0.45rem; color: #087e91; background: #dcf7fa; border: 1px solid #bceaf0; border-radius: 999px; font-size: 0.45rem; font-weight: 700; }

.rr-truth-badge { align-self: center; display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border: 1px solid #c9ece1; border-radius: 0.9rem; background: #edfaf6; }
.rr-truth-badge > span { width: 2.3rem; height: 2.3rem; display: grid; place-items: center; flex: none; color: #fff; background: #18a77d; border-radius: 50%; box-shadow: 0 8px 22px rgba(24, 167, 125, 0.25); }
.rr-truth-badge svg { width: 1.15rem; stroke-width: 2.4; }
.rr-truth-badge div { display: flex; flex-direction: column; }
.rr-truth-badge strong { color: #17624f; font-size: 0.72rem; }
.rr-truth-badge small { color: #64887e; font-size: 0.55rem; }

.rr-kit-visual { position: relative; height: 220px; }
.rr-kit-file { position: absolute; width: 160px; height: 205px; padding: 1.1rem; border: 1px solid #d8e0ea; border-radius: 0.75rem; background: #fff; box-shadow: 0 20px 40px rgba(31, 45, 65, 0.12); }
.rr-kit-file i { display: block; height: 4px; margin: 0.65rem 0; background: #d7dee7; border-radius: 4px; }
.rr-kit-file i:nth-of-type(2) { width: 80%; }
.rr-kit-file i:nth-of-type(3) { width: 90%; }
.rr-kit-file--letter { left: 5%; top: 5%; color: #8c7760; background: #fffdf8; transform: rotate(-7deg); }
.rr-kit-file--letter span { font-family: Georgia, serif; font-size: 0.55rem; }
.rr-kit-file--resume { right: 4%; bottom: 0; transform: rotate(5deg); }
.rr-kit-file--resume b { color: #253147; font-size: 0.55rem; letter-spacing: 0.08em; }
.rr-kit-file--resume span { position: absolute; right: 0.7rem; bottom: 0.7rem; padding: 0.25rem 0.38rem; color: #fff; background: #ef5350; border-radius: 0.25rem; font-size: 0.42rem; font-weight: 800; }

/* Process */
.rr-home-process { color: #fff; background: #0a1525; }
.rr-home-process::before { position: absolute; inset: 0; opacity: 0.22; background-image: radial-gradient(rgba(101, 87, 238, 0.7) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent); content: ''; }
.rr-home-process .rr-container { position: relative; z-index: 1; }
.rr-home-section__heading--split { max-width: none; display: grid; grid-template-columns: 1fr 0.7fr; align-items: end; gap: 5rem; text-align: left; }
.rr-home-section__heading--split h2 { max-width: 700px; margin-bottom: 0; color: #fff; }
.rr-home-section__heading--split p { margin: 0; color: #9badc2; }
.rr-home-process .rr-home-overline { color: #6bd8e5; }
.rr-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.rr-process-step { position: relative; min-height: 300px; padding: 2rem 1.6rem; border-top: 1px solid #2b394b; border-bottom: 1px solid #2b394b; border-left: 1px solid #2b394b; outline: none; transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease; }
.rr-process-step:last-child { border-right: 1px solid #2b394b; }
.rr-process-step:hover,
.rr-process-step:focus-visible,
.rr-process-step.is-active { z-index: 2; border-color: rgba(106, 91, 240, 0.6); background: linear-gradient(145deg, rgba(101, 87, 238, 0.23), rgba(20, 40, 62, 0.35)); transform: translateY(-8px); }
.rr-process-step__number { position: absolute; top: 1.2rem; right: 1.2rem; color: #53657a; font-family: 'Space Grotesk', var(--rr-font); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; }
.rr-process-step__icon { width: 3.3rem; height: 3.3rem; display: grid; place-items: center; margin-bottom: 2.6rem; color: #8c82ff; border: 1px solid #34465a; border-radius: 0.9rem; background: #111f31; transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; }
.rr-process-step__icon svg { width: 1.45rem; }
.rr-process-step:hover .rr-process-step__icon,
.rr-process-step:focus-visible .rr-process-step__icon,
.rr-process-step.is-active .rr-process-step__icon { color: #fff; background: #6257e5; box-shadow: 0 10px 30px rgba(82, 69, 217, 0.35); }
.rr-process-step h3 { color: #fff; font-family: 'Space Grotesk', var(--rr-font); font-size: 1.15rem; letter-spacing: -0.02em; }
.rr-process-step p { margin: 0; color: #91a3b8; font-size: 0.83rem; line-height: 1.7; }
.rr-process-step__line { position: absolute; z-index: 3; top: 3.65rem; right: -1.5rem; width: 3rem; height: 1px; background: linear-gradient(90deg, #6557ee, #28c7d8); }
.rr-process-step__line::after { position: absolute; top: -3px; right: 0; width: 7px; height: 7px; border-radius: 50%; background: #2cc9da; box-shadow: 0 0 13px #2cc9da; content: ''; }

/* Comparison */
.rr-home-compare { background: #fff; }
.rr-home-compare__layout { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(450px, 1.12fr); align-items: center; gap: clamp(4rem, 9vw, 9rem); }
.rr-home-compare__copy h2 { margin-bottom: 1.6rem; }
.rr-home-compare__copy > p { margin-bottom: 2rem; }
.rr-home-compare__copy ul { display: grid; gap: 1.2rem; margin: 0; padding: 0; list-style: none; }
.rr-home-compare__copy li { display: flex; align-items: flex-start; gap: 0.85rem; }
.rr-home-compare__copy li > span { width: 1.75rem; height: 1.75rem; display: grid; place-items: center; flex: none; color: #fff; background: #18a77d; border-radius: 50%; }
.rr-home-compare__copy li svg { width: 0.9rem; stroke-width: 2.4; }
.rr-home-compare__copy li div { display: flex; flex-direction: column; }
.rr-home-compare__copy li strong { color: #273448; font-size: 0.92rem; }
.rr-home-compare__copy li small { color: #738196; font-size: 0.79rem; line-height: 1.55; }
.rr-compare-demo { padding: 1.25rem; border: 1px solid #dce3eb; border-radius: 1.35rem; background: #f3f6fa; box-shadow: 0 24px 70px rgba(30, 44, 65, 0.12); }
.rr-compare-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1rem; padding: 0.3rem; border-radius: 0.7rem; background: #e7ebf1; }
.rr-compare-tabs button { min-height: 2.7rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; color: #758398; border: 0; border-radius: 0.5rem; background: transparent; font-family: inherit; font-weight: 700; cursor: pointer; transition: all 0.25s ease; }
.rr-compare-tabs button svg { width: 1rem; }
.rr-compare-tabs button.is-active { color: #4f46e5; background: #fff; box-shadow: 0 5px 18px rgba(31, 46, 68, 0.08); }
.rr-compare-paper { min-height: 330px; padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid #e3e7ed; border-radius: 0.8rem; background: #fff; box-shadow: 0 12px 30px rgba(32, 46, 67, 0.06); animation: rr-paper-in 0.35s ease; }
@keyframes rr-paper-in { from { opacity: 0; transform: translateY(8px); } }
.rr-compare-paper__label { display: block; margin-bottom: 2.1rem; color: #8c98a8; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.16em; }
.rr-compare-paper > p { margin: 0; color: #303d50; font-family: 'Space Grotesk', var(--rr-font); font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.65; }
.rr-compare-paper mark { padding: 0.08em 0.13em; color: #443baa; background: linear-gradient(transparent 15%, #e3e0ff 15%, #e3e0ff 88%, transparent 88%); }
.rr-compare-callout { display: flex; gap: 0.7rem; margin-top: 2.2rem; padding: 0.9rem 1rem; color: #387561; background: #edfaf5; border: 1px solid #c8eee0; border-radius: 0.65rem; }
.rr-compare-callout svg { flex: none; width: 1.2rem; }
.rr-compare-callout span { font-size: 0.72rem; line-height: 1.5; }
.rr-compare-callout strong { display: block; font-size: 0.78rem; }
.rr-compare-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.2rem; }
.rr-compare-tags span { padding: 0.4rem 0.6rem; color: #97632e; background: #fff5e8; border: 1px solid #f5dfc4; border-radius: 99px; font-size: 0.65rem; font-weight: 700; }

/* Web and Android */
.rr-home-everywhere { background: #eef2f7; }
.rr-home-everywhere__stage { min-height: 570px; display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr); align-items: center; gap: 4rem; overflow: hidden; padding: clamp(2.5rem, 6vw, 5.5rem); border-radius: 1.75rem; background: linear-gradient(135deg, #0c1b2d, #111e38 55%, #251b59); box-shadow: 0 30px 80px rgba(28, 40, 66, 0.18); }
.rr-home-everywhere__copy { position: relative; z-index: 2; }
.rr-home-everywhere__copy h2 { color: #fff; font-size: clamp(2.5rem, 4.3vw, 4.4rem); }
.rr-home-everywhere__copy > p { color: #aebdd0; }
.rr-home-everywhere .rr-home-overline { color: #69d8e5; }
.rr-home-button--light { color: #172237; background: #fff; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); }
.rr-home-button--light:hover { color: #172237; transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28); }
.rr-google-button { min-height: 3.65rem; display: inline-flex; align-items: center; gap: 0.65rem; padding: 0.65rem 1rem; color: #fff; border: 1px solid #4d5d71; border-radius: 0.85rem; background: rgba(7, 14, 24, 0.72); text-decoration: none; transition: transform 0.25s ease, border-color 0.25s ease; }
.rr-google-button:hover { color: #fff; border-color: #66d2de; transform: translateY(-3px); }
.rr-google-button > svg { width: 1.65rem; height: 1.65rem; stroke: none; }
.rr-google-button > span { display: flex; flex-direction: column; line-height: 1; }
.rr-google-button small { margin-bottom: 0.2rem; font-size: 0.47rem; letter-spacing: 0.1em; }
.rr-google-button strong { font-size: 0.88rem; }

.rr-device-scene { position: relative; height: 420px; }
.rr-device-desktop { position: absolute; top: 1rem; left: 0; width: 94%; overflow: hidden; border: 6px solid #263348; border-radius: 1.1rem; background: #f8fafc; box-shadow: 0 35px 70px rgba(0, 0, 0, 0.38); transform: perspective(1200px) rotateY(-8deg); }
.rr-device-desktop__top { height: 2rem; display: flex; align-items: center; gap: 0.3rem; padding: 0 0.65rem; background: #eef1f5; }
.rr-device-desktop__top i { width: 0.42rem; height: 0.42rem; border-radius: 50%; background: #c2cad5; }
.rr-device-desktop__top span { width: 45%; margin-left: 0.5rem; padding: 0.22rem; color: #8a96a5; border-radius: 0.2rem; background: #fff; font-size: 0.38rem; text-align: center; }
.rr-device-desktop__body { height: 300px; display: grid; grid-template-columns: 3rem 1fr; }
.rr-device-desktop__body aside { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding-top: 1rem; background: #101d31; }
.rr-device-desktop__body aside b { width: 1.7rem; height: 1.7rem; display: grid; place-items: center; color: #fff; border-radius: 0.45rem; background: #6257e5; font-size: 0.48rem; }
.rr-device-desktop__body aside i { width: 1rem; height: 0.25rem; border-radius: 1rem; background: #42526a; }
.rr-device-desktop__main { display: block; padding: 1.5rem; }
.rr-device-desktop__main > small { display: block; color: #6257e5; font-size: 0.43rem; font-weight: 800; letter-spacing: 0.13em; }
.rr-device-desktop__main > strong { display: block; margin: 0.25rem 0 1rem; color: #1f2a3d; font-size: 0.8rem; }
.rr-workspace-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.rr-workspace-cards span { min-height: 75px; display: flex; flex-direction: column; gap: 0.5rem; padding: 0.65rem; color: #526174; border: 1px solid #e1e6ed; border-radius: 0.5rem; background: #fff; font-size: 0.4rem; box-shadow: 0 4px 15px rgba(27, 42, 64, 0.05); }
.rr-workspace-cards b { color: #5a4fda; font-size: 0.85rem; }
.rr-workspace-list { margin-top: 1rem; padding: 0.7rem; border: 1px solid #e4e9ef; border-radius: 0.5rem; background: #fff; }
.rr-workspace-list i { display: block; width: 90%; height: 0.3rem; margin: 0.5rem 0; border-radius: 1rem; background: #e3e8ef; }
.rr-workspace-list i:nth-child(2) { width: 70%; }

.rr-device-phone { position: absolute; right: -0.3rem; bottom: -3.6rem; width: 180px; height: 360px; overflow: hidden; padding-top: 1.5rem; color: #273448; border: 7px solid #111827; border-radius: 2rem; background: #f8fafc; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.46); transform: rotate(4deg); animation: rr-phone-hover 5s ease-in-out infinite; }
@keyframes rr-phone-hover { 50% { transform: rotate(2deg) translateY(-8px); } }
.rr-device-phone__notch { position: absolute; top: 0.4rem; left: 50%; width: 4.2rem; height: 0.8rem; border-radius: 1rem; background: #111827; transform: translateX(-50%); }
.rr-phone-appbar { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem; background: #fff; font-size: 0.57rem; font-weight: 800; }
.rr-phone-appbar b { color: #5b50dc; font-size: 1rem; }
.rr-phone-tabs { display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-bottom: 1px solid #e4e8ee; }
.rr-phone-tabs span { padding: 0.55rem 0.2rem; color: #7c8999; font-size: 0.43rem; text-align: center; }
.rr-phone-tabs span.is-active { color: #574cdb; border-bottom: 2px solid #6257e5; font-weight: 800; }
.rr-phone-quick { margin: 0.7rem; padding: 0.7rem; border-radius: 0.55rem; background: #eceaff; }
.rr-phone-quick small { display: block; color: #6a61cb; font-size: 0.35rem; font-weight: 800; letter-spacing: 0.08em; }
.rr-phone-quick strong { display: block; margin: 0.15rem 0 0.55rem; font-size: 0.52rem; }
.rr-phone-quick__button { display: inline-block; padding: 0.35rem 0.5rem; color: #fff; border: 0; border-radius: 0.3rem; background: #5c51dc; font-size: 0.4rem; }
.rr-phone-resume { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.5rem; margin: 0.7rem; padding: 0.7rem; border: 1px solid #e2e7ed; border-radius: 0.55rem; background: #fff; }
.rr-phone-resume > span { width: 1.5rem; height: 1.7rem; display: grid; place-items: center; color: #fff; border-radius: 0.3rem; background: #6257e5; font-size: 0.5rem; font-weight: 800; }
.rr-phone-resume div { display: flex; flex-direction: column; }
.rr-phone-resume strong { font-size: 0.44rem; }
.rr-phone-resume small { color: #8b97a6; font-size: 0.35rem; }
.rr-phone-resume > b { color: #8b97a6; font-size: 0.45rem; }
.rr-phone-nav { position: absolute; inset: auto 0 0; display: grid; grid-template-columns: repeat(3, 1fr); padding: 0.5rem; background: #fff; border-top: 1px solid #e4e8ee; }
.rr-phone-nav span { display: flex; flex-direction: column; align-items: center; color: #6358e6; font-size: 0.65rem; }
.rr-phone-nav small { color: #7f8b9a; font-size: 0.32rem; }

/* Toolkit */
.rr-home-toolkit { background: #f7f9fc; }
.rr-toolkit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.rr-toolkit-card { position: relative; min-height: 330px; display: flex; flex-direction: column; padding: 2rem; color: #263348; border: 1px solid #dfe6ee; border-radius: 1.25rem; background: #fff; box-shadow: 0 14px 40px rgba(31, 47, 70, 0.055); text-decoration: none; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; }
.rr-toolkit-card:hover { color: #263348; border-color: #cbd5e2; transform: translateY(-7px); box-shadow: 0 25px 60px rgba(31, 47, 70, 0.12); }
.rr-toolkit-card--featured { color: #fff; border-color: #5d52df; background: linear-gradient(145deg, #5e53df, #4137ae); box-shadow: 0 20px 50px rgba(78, 67, 199, 0.24); }
.rr-toolkit-card--featured:hover { color: #fff; border-color: #8177ef; box-shadow: 0 30px 70px rgba(78, 67, 199, 0.34); }
.rr-toolkit-card__flag { position: absolute; top: 1.5rem; right: 1.5rem; color: #dcd9ff; font-size: 0.5rem; font-weight: 800; letter-spacing: 0.11em; }
.rr-toolkit-card__icon { width: 3.2rem; height: 3.2rem; display: grid; place-items: center; margin-bottom: 2rem; color: #5a4fdb; background: #efedff; border-radius: 0.85rem; }
.rr-toolkit-card__icon svg { width: 1.45rem; }
.rr-toolkit-card--featured .rr-toolkit-card__icon { color: #fff; background: rgba(255, 255, 255, 0.15); }
.rr-toolkit-card h3 { color: inherit; font-family: 'Space Grotesk', var(--rr-font); font-size: 1.4rem; letter-spacing: -0.03em; }
.rr-toolkit-card p { color: #6b798c; font-size: 0.88rem; line-height: 1.7; }
.rr-toolkit-card--featured p { color: #d8d5f9; }
.rr-toolkit-card > b { display: flex; align-items: center; gap: 0.5rem; margin-top: auto; color: #5147cf; font-size: 0.78rem; }
.rr-toolkit-card--featured > b { color: #fff; }
.rr-toolkit-card > b svg { width: 1rem; transition: transform 0.25s ease; }
.rr-toolkit-card:hover > b svg { transform: translateX(4px); }
.rr-toolkit-formats { display: flex; gap: 0.5rem; margin-top: auto; }
.rr-toolkit-formats span { padding: 0.45rem 0.6rem; color: #5a4fda; background: #efedff; border-radius: 0.4rem; font-size: 0.62rem; font-weight: 800; }

/* Insights */
.rr-home-insights { background: #fff; }
.rr-home-section__heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 2rem; text-align: left; }
.rr-home-section__heading--row h2 { max-width: 760px; margin-bottom: 0; }
.rr-home-text-link { display: inline-flex; align-items: center; gap: 0.5rem; flex: none; padding-bottom: 0.3rem; color: #5147cf; border-bottom: 1px solid #b5aff4; font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.rr-home-text-link svg { width: 1rem; transition: transform 0.25s ease; }
.rr-site .rr-home-text-link:hover { color: #3f36b8; }
.rr-home-text-link:hover svg { transform: translateX(4px); }
.rr-home-posts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.rr-home-post { overflow: hidden; border: 1px solid #e0e6ed; border-radius: 1.15rem; background: #fff; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.rr-home-post:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(30, 45, 66, 0.12); }
.rr-home-post > a { display: block; height: 100%; color: inherit; text-decoration: none; }
.rr-home-post__media { position: relative; height: 210px; overflow: hidden; background: linear-gradient(135deg, #17263a, #4236a2); }
.rr-home-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.rr-home-post:hover .rr-home-post__media img { transform: scale(1.045); }
.rr-home-post__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(255, 255, 255, 0.7); background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 18px 18px; }
.rr-home-post__placeholder svg { width: 3rem; }
.rr-home-post__date { position: absolute; right: 0.8rem; bottom: 0.8rem; padding: 0.4rem 0.55rem; color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 0.45rem; background: rgba(7, 17, 31, 0.72); font-size: 0.62rem; font-weight: 700; backdrop-filter: blur(8px); }
.rr-home-post__body { padding: 1.5rem; }
.rr-home-post__type { display: block; margin-bottom: 0.7rem; color: #5a4fda; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.rr-home-post h3 { color: #1e2b3e; font-family: 'Space Grotesk', var(--rr-font); font-size: 1.2rem; letter-spacing: -0.03em; }
.rr-home-post p { color: #6b798d; font-size: 0.82rem; line-height: 1.65; }
.rr-home-post__body > b { display: flex; align-items: center; gap: 0.45rem; color: #5147cf; font-size: 0.73rem; }
.rr-home-post__body > b svg { width: 0.9rem; }
.rr-home-post--empty { grid-column: 1 / -1; }

/* FAQ */
.rr-home-faq { background: #f0f4f8; }
.rr-home-faq__layout { display: grid; grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr); align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.rr-home-faq__intro { position: sticky; top: 8rem; }
.rr-home-faq__intro h2 { margin-bottom: 1.3rem; }
.rr-home-faq__intro p a { color: #5147cf; font-weight: 700; }
.rr-home-accordion { max-width: none; }
.rr-home-accordion .rr-accordion__item { margin: 0; border: 0; border-bottom: 1px solid #ccd6e1; border-radius: 0; background: transparent; }
.rr-home-accordion .rr-accordion__item:first-child { border-top: 1px solid #ccd6e1; }
.rr-home-accordion .rr-accordion__item:hover { border-color: #abb9c8; }
.rr-home-accordion .rr-accordion__trigger { padding: 1.5rem 0; color: #253247; font-family: 'Space Grotesk', var(--rr-font); font-size: 1rem; font-weight: 600; text-align: left; }
.rr-home-accordion .rr-accordion__trigger:hover { color: #5147cf; background: transparent; }
.rr-home-accordion .rr-accordion__trigger .icon { position: relative; width: 1.7rem; height: 1.7rem; flex: none; border: 1px solid #b9c5d2; border-radius: 50%; transform: none; }
.rr-home-accordion .rr-accordion__trigger .icon::before,
.rr-home-accordion .rr-accordion__trigger .icon::after { position: absolute; top: 50%; left: 50%; width: 0.65rem; height: 1px; background: #5f6f82; content: ''; transform: translate(-50%, -50%); transition: transform 0.25s ease; }
.rr-home-accordion .rr-accordion__trigger .icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.rr-home-accordion .rr-accordion__trigger[aria-expanded="true"] .icon { border-color: #6a60dd; background: #6257e5; }
.rr-home-accordion .rr-accordion__trigger[aria-expanded="true"] .icon::before,
.rr-home-accordion .rr-accordion__trigger[aria-expanded="true"] .icon::after { background: #fff; }
.rr-home-accordion .rr-accordion__trigger[aria-expanded="true"] .icon::after { transform: translate(-50%, -50%) rotate(0); }
.rr-home-accordion .rr-accordion__content { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease; }
.rr-home-accordion .rr-accordion__content.is-open { max-height: 280px; opacity: 1; }
.rr-home-accordion .rr-accordion__content p { max-width: 650px; padding: 0 3rem 1.5rem 0; color: #69788b; font-size: 0.88rem; line-height: 1.75; }

/* Final call to action */
.rr-home-final { position: relative; overflow: hidden; padding: clamp(6rem, 10vw, 10rem) 0; color: #fff; background: #07111f; text-align: center; }
.rr-home-final::before { position: absolute; inset: 0; opacity: 0.2; background-image: linear-gradient(rgba(125, 139, 159, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(125, 139, 159, 0.15) 1px, transparent 1px); background-size: 64px 64px; content: ''; mask-image: radial-gradient(circle, #000, transparent 72%); }
.rr-home-final .rr-container { position: relative; z-index: 2; }
.rr-home-final .rr-home-overline { color: #65d7e5; }
.rr-home-final .rr-home-overline::before { display: none; }
.rr-home-final h2 { margin-bottom: 1.5rem; color: #fff; font-size: clamp(3rem, 6vw, 6.2rem); }
.rr-home-final h2 span { color: #9a90ff; background: linear-gradient(90deg, #9a90ff, #62d9e7); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.rr-home-final p { max-width: 650px; margin: 0 auto 2rem; color: #9fb0c3; }
.rr-home-final__actions { flex-direction: column; }
.rr-home-final__login { color: #8395ab; font-size: 0.78rem; text-decoration: none; }
.rr-home-final__login strong { color: #fff; }
.rr-home-final__orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.rr-home-final__orb--one { width: 36rem; height: 36rem; top: -22rem; left: -12rem; background: radial-gradient(circle, rgba(35, 199, 217, 0.18), transparent 65%); }
.rr-home-final__orb--two { width: 42rem; height: 42rem; right: -13rem; bottom: -29rem; background: radial-gradient(circle, rgba(101, 87, 238, 0.34), transparent 66%); }

/* Responsive */
@media (max-width: 1180px) {
    .rr-home-hero__layout { grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr); gap: 3rem; }
    .rr-float-card--match { left: -1.5rem; }
    .rr-float-card--export { right: -1rem; }
    .rr-bento-card { grid-template-columns: 1fr; }
    .rr-bento-card--library,
    .rr-bento-card--target { min-height: 650px; }
    .rr-library-visual,
    .rr-target-visual { min-height: 240px; }
    .rr-home-everywhere__stage { grid-template-columns: 0.85fr 1.15fr; gap: 2rem; padding-inline: 3rem; }
}

@media (max-width: 960px) {
    .rr-home .rr-container { width: min(100% - 2rem, 760px); }
    .rr-home-hero { min-height: auto; padding-top: 6rem; }
    .rr-home-hero__layout { grid-template-columns: 1fr; gap: 5rem; }
    .rr-home-hero__copy { max-width: 680px; text-align: center; justify-self: center; }
    .rr-home-hero__lead { margin-inline: auto; }
    .rr-home-hero__actions,
    .rr-home-proof { justify-content: center; }
    .rr-product-stage { width: min(100%, 680px); justify-self: center; }
    .rr-scroll-cue { display: none; }
    .rr-bento { grid-template-columns: 1fr; }
    .rr-bento-card { grid-template-columns: minmax(0, 1fr) minmax(240px, 0.8fr); min-height: 420px; }
    .rr-bento-card--library,
    .rr-bento-card--target { min-height: 420px; }
    .rr-home-section__heading--split { grid-template-columns: 1fr; gap: 1.5rem; }
    .rr-process-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
    .rr-process-step { border: 1px solid #2b394b; }
    .rr-process-step__line { display: none; }
    .rr-home-compare__layout { grid-template-columns: 1fr; gap: 3rem; }
    .rr-home-compare__copy { max-width: 680px; }
    .rr-home-everywhere__stage { grid-template-columns: 1fr; padding: 3rem; }
    .rr-home-everywhere__copy { max-width: 620px; }
    .rr-device-scene { width: min(100%, 620px); }
    .rr-toolkit-grid,
    .rr-home-posts { grid-template-columns: 1fr 1fr; }
    .rr-toolkit-card--featured { grid-column: span 1; }
    .rr-toolkit-card:last-child,
    .rr-home-post:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .rr-home-faq__layout { grid-template-columns: 1fr; gap: 2rem; }
    .rr-home-faq__intro { position: static; max-width: 620px; }
}

@media (max-width: 720px) {
    .rr-home .rr-container { width: min(100% - 2rem, 620px); }
    .rr-home-section { padding: 4.75rem 0; }
    .rr-home-hero { padding: 5.25rem 0 4rem; }
    .rr-home-hero h1 { font-size: clamp(3rem, 14vw, 4.75rem); }
    .rr-home-hero__lead { font-size: 1rem; }
    .rr-product-window { transform: none; }
    .rr-product-window__body { grid-template-columns: 2.7rem 1fr; }
    .rr-product-content { padding: 1rem; }
    .rr-product-panels { grid-template-columns: 1fr; }
    .rr-insight-panel { display: none; }
    .rr-product-progress span { font-size: 0; }
    .rr-product-progress span i { font-size: 0.48rem; }
    .rr-float-card--match { left: -0.5rem; bottom: 2rem; }
    .rr-float-card--export { right: -0.5rem; }
    .rr-home-marquee__track { gap: 1.2rem; }
    .rr-bento-card,
    .rr-bento-card--library,
    .rr-bento-card--target { grid-template-columns: 1fr; min-height: auto; }
    .rr-bento-card--library,
    .rr-bento-card--target,
    .rr-bento-card--truth,
    .rr-bento-card--kit { padding-bottom: 2rem; }
    .rr-bento-icon { margin-bottom: 1.3rem; }
    .rr-library-visual,
    .rr-kit-visual { min-height: 230px; }
    .rr-target-visual { min-height: 210px; }
    .rr-process-grid { grid-template-columns: 1fr; }
    .rr-process-step { min-height: 240px; }
    .rr-home-compare__layout { gap: 2.5rem; }
    .rr-compare-paper { min-height: 300px; }
    .rr-home-everywhere__stage { min-height: auto; padding: 2.2rem 1.25rem 4rem; border-radius: 1.25rem; }
    .rr-device-scene { height: 380px; }
    .rr-device-desktop { width: 100%; transform: none; }
    .rr-device-phone { right: 0; }
    .rr-toolkit-grid,
    .rr-home-posts { grid-template-columns: 1fr; }
    .rr-toolkit-card:last-child,
    .rr-home-post:last-child:nth-child(odd) { grid-column: auto; }
    .rr-home-section__heading--row { display: block; }
    .rr-home-section__heading--row .rr-home-text-link { margin-top: 1.5rem; }
    .rr-home-post__media { height: 230px; }
}

@media (max-width: 520px) {
    .rr-home .rr-container { width: min(100% - 1.35rem, 480px); }
    .rr-home-hero h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
    .rr-home-hero__actions,
    .rr-home-everywhere__actions { align-items: stretch; flex-direction: column; }
    .rr-home-button,
    .rr-google-button { width: 100%; }
    .rr-home-button--quiet { min-height: 3rem; }
    .rr-home-proof { display: grid; gap: 0.55rem; text-align: left; }
    .rr-product-window__bar { grid-template-columns: auto 1fr; }
    .rr-product-window__brand { justify-self: end; }
    .rr-window-secure { display: none; }
    .rr-product-window__body { min-height: 390px; }
    .rr-product-heading { align-items: flex-start; }
    .rr-product-heading h2 { font-size: 0.84rem; }
    .rr-status-chip { display: none; }
    .rr-resume-preview { padding: 0.9rem; }
    .rr-float-card--match { bottom: -1.5rem; }
    .rr-float-card--export { display: none; }
    .rr-home-section__heading h2,
    .rr-home-compare__copy h2,
    .rr-home-everywhere__copy h2,
    .rr-home-faq__intro h2 { font-size: clamp(2.15rem, 12vw, 3.3rem); }
    .rr-bento-card { padding: 1.35rem; border-radius: 1rem; }
    .rr-library-card { width: 180px; }
    .rr-truth-badge { align-items: flex-start; }
    .rr-kit-file { width: 145px; }
    .rr-home-section__heading--split { gap: 1rem; }
    .rr-process-step { padding: 1.5rem; }
    .rr-compare-demo { padding: 0.65rem; }
    .rr-compare-paper { min-height: 330px; padding: 1.35rem; }
    .rr-compare-paper > p { font-size: 1.15rem; }
    .rr-compare-callout { margin-top: 1.5rem; }
    .rr-device-scene { height: 345px; }
    .rr-device-desktop__body { height: 245px; }
    .rr-device-phone { width: 150px; height: 300px; bottom: -2.8rem; }
    .rr-workspace-cards span:nth-child(3) { display: none; }
    .rr-workspace-cards { grid-template-columns: repeat(2, 1fr); }
    .rr-toolkit-card { min-height: 300px; padding: 1.5rem; }
    .rr-home-final h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
    .rr-home-accordion .rr-accordion__trigger { gap: 1rem; font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
    .rr-home *,
    .rr-home *::before,
    .rr-home *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .rr-js [data-rr-reveal] { opacity: 1; transform: none; }
    .rr-home-marquee__track { width: auto; flex-wrap: wrap; justify-content: center; }
}

/* The header is sticky (in flow), so app layouts need no fixed-header offset. */
.rr-body .dashboard-shell-v2 {
  margin-top: 0;
  min-height: calc(100vh - var(--rr-header-height));
}
