/* ==========================================================================
   SwagFlo — Revamp Design System
   Bespoke layer loaded after bootstrap + custom.css. Everything is namespaced
   under .rv-site / .rv-* so legacy pages keep working untouched.
   Fonts: Epilogue (display), Outfit (UI), Inter (body) — already preloaded.
   ========================================================================== */

:root {
  /* Ink / surfaces ------------------------------------------------------- */
  --rv-ink: #060327;          /* brand navy, deepened */
  --rv-ink-2: #0d0a3d;
  --rv-ink-soft: #15123f;
  --rv-paper: #ffffff;
  --rv-paper-2: #f6f5fb;      /* faint lilac-white */
  --rv-paper-3: #eeecf7;
  --rv-line: #e7e4f2;
  --rv-line-strong: #d8d4ea;

  /* Text ----------------------------------------------------------------- */
  --rv-text: #131032;
  --rv-text-2: #4a4767;
  --rv-text-3: #7c7997;
  --rv-on-ink: #f3f2fb;
  --rv-on-ink-2: #b8b5d8;
  --rv-on-ink-3: #807da6;

  /* Accent --------------------------------------------------------------- */
  --rv-accent: #3b5bff;       /* confident SaaS blue */
  --rv-accent-600: #2c44e0;
  --rv-accent-ink: #c9d2ff;
  --rv-coral: #ff6a5b;        /* warm signal, used sparingly */
  --rv-mint: #2bd9a8;

  /* Radius / shadow / motion -------------------------------------------- */
  --rv-r-sm: 10px;
  --rv-r: 16px;
  --rv-r-lg: 24px;
  --rv-r-xl: 32px;
  --rv-shadow: 0 1px 2px rgba(12, 10, 45, .06), 0 18px 40px -24px rgba(12, 10, 45, .28);
  --rv-shadow-lg: 0 2px 4px rgba(12, 10, 45, .05), 0 40px 80px -40px rgba(12, 10, 45, .45);
  --rv-ease: cubic-bezier(.22, .61, .36, 1);

  /* Type scale (fluid) --------------------------------------------------- */
  --rv-display: clamp(2.7rem, 1.6rem + 4.6vw, 5.4rem);
  --rv-h1: clamp(2.1rem, 1.4rem + 2.9vw, 3.4rem);
  --rv-h2: clamp(1.7rem, 1.25rem + 1.9vw, 2.55rem);
  --rv-h3: clamp(1.25rem, 1.05rem + .8vw, 1.6rem);
  --rv-lead: clamp(1.06rem, .98rem + .4vw, 1.28rem);

  --rv-font-display: "Epilogue", "Outfit", system-ui, sans-serif;
  --rv-font-ui: "Outfit", system-ui, sans-serif;
  --rv-font-body: "Inter", system-ui, sans-serif;
  --rv-maxw: 1240px;
}

/* ---- Base (scoped, light touch) ----------------------------------------- */
.rv-site {
  font-family: var(--rv-font-body);
  color: var(--rv-text);
  background: var(--rv-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* ---- Accessibility: smooth anchor scrolling offset for the fixed nav ----- */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
.rv-site [id] { scroll-margin-top: 96px; }
.rv-site main:focus { outline: none; }

/* Skip-to-content link (visible only when focused) */
.rv-skip {
  position: fixed; left: 14px; top: -64px; z-index: 1200;
  background: var(--rv-ink); color: #fff; padding: 11px 18px; border-radius: 10px;
  font-family: var(--rv-font-ui); font-weight: 600; text-decoration: none;
  box-shadow: var(--rv-shadow-lg); transition: top .22s var(--rv-ease);
}
.rv-skip:focus { top: 14px; color: #fff; }

/* Visible, consistent keyboard focus ring */
.rv-site a:focus-visible,
.rv-site button:focus-visible,
.rv-site input:focus-visible,
.rv-site textarea:focus-visible,
.rv-site select:focus-visible,
.rv-site [tabindex]:focus-visible {
  outline: 3px solid var(--rv-accent);
  outline-offset: 2px;
  border-radius: 6px;
}
.rv-ink-bg a:focus-visible,
.rv-ink-bg button:focus-visible,
.rv-cta__box a:focus-visible,
.rv-footer a:focus-visible,
.rv-graph a:focus-visible { outline-color: #fff; }
.rv-site *,
.rv-site *::before,
.rv-site *::after { box-sizing: border-box; }

.rv-site img { max-width: 100%; height: auto; }

/* Prevent grid/flex blowout from intrinsic-width media (classic overflow). */
.rv-hero__inner > *,
.rv-feature > *,
.rv-prodgrid > *,
.rv-metrics > *,
.rv-toolstrip > *,
.rv-footer__grid > * { min-width: 0; }
.rv-hero__visual-frame img,
.rv-feature__media video,
.rv-feature__media img { display: block; max-width: 100%; }

.rv-wrap { width: 100%; max-width: var(--rv-maxw); margin-inline: auto; padding-inline: 24px; }
@media (max-width: 575px) { .rv-wrap { padding-inline: 20px; } }

.rv-section { padding-block: clamp(64px, 5vw, 120px); position: relative; }
.rv-section--tight { padding-block: clamp(48px, 4vw, 80px); }

.rv-ink-bg { background: var(--rv-ink); color: var(--rv-on-ink); }
.rv-paper-2-bg { background: var(--rv-paper-2); }

/* ---- Typography helpers ------------------------------------------------- */
.rv-display {
  font-family: var(--rv-font-display);
  font-size: var(--rv-display);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 0;
}
.rv-h1 { font-family: var(--rv-font-display); font-size: var(--rv-h1); line-height: 1.05; letter-spacing: -.025em; font-weight: 700; margin: 0; }
.rv-h2 { font-family: var(--rv-font-display); font-size: var(--rv-h2); line-height: 1.08; letter-spacing: -.022em; font-weight: 700; margin: 0; }
.rv-h3 { font-family: var(--rv-font-ui); font-size: var(--rv-h3); line-height: 1.2; letter-spacing: -.01em; font-weight: 600; margin: 0; }
.rv-lead { font-size: var(--rv-lead); line-height: 1.55; color: var(--rv-text-2); margin: 0; }
.rv-ink-bg .rv-lead { color: var(--rv-on-ink-2); }

.rv-eyebrow {
  font-family: var(--rv-font-ui);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rv-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.rv-eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: currentColor; opacity: .55;
}
.rv-ink-bg .rv-eyebrow { color: var(--rv-accent-ink); }

.rv-accent-text { color: var(--rv-accent); }
.rv-grad-text {
  background: linear-gradient(92deg, var(--rv-accent), #6f5bff 55%, var(--rv-coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* Extend the paint box so the last glyph's edge isn't clipped by the tight
     negative letter-spacing; negative margin keeps following text in place. */
  padding-right: .14em; margin-right: -.14em;
}

/* ---- Buttons ------------------------------------------------------------ */
.rv-btn {
  --pad-y: 14px; --pad-x: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--rv-font-ui); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: all .25s var(--rv-ease);
  white-space: nowrap;
}
.rv-btn i { font-size: 1.15em; transition: transform .25s var(--rv-ease); }
.rv-btn--primary { background: var(--rv-accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(59, 91, 255, .9); }
.rv-btn--primary:hover { background: var(--rv-accent-600); transform: translateY(-2px); color: #fff; }
.rv-btn--primary:hover i { transform: translateX(4px); }
.rv-btn--ink { background: var(--rv-ink); color: #fff; }
.rv-btn--ink:hover { transform: translateY(-2px); color: #fff; background: var(--rv-ink-2); }
.rv-btn--ghost { background: transparent; color: var(--rv-text); border-color: var(--rv-line-strong); }
.rv-btn--ghost:hover { border-color: var(--rv-ink); color: var(--rv-text); transform: translateY(-2px); }
.rv-ink-bg .rv-btn--ghost,
.rv-cta__box .rv-btn--ghost,
.rv-toolstrip .rv-btn--ghost { color: var(--rv-on-ink); border-color: rgba(255,255,255,.22); }
.rv-ink-bg .rv-btn--ghost:hover,
.rv-cta__box .rv-btn--ghost:hover,
.rv-toolstrip .rv-btn--ghost:hover { border-color: #fff; color: #fff; }
.rv-btn--sm { --pad-y: 10px; --pad-x: 18px; font-size: .92rem; }
.rv-btn--lg { --pad-y: 17px; --pad-x: 30px; font-size: 1.06rem; }

.rv-textlink {
  font-family: var(--rv-font-ui); font-weight: 600; color: var(--rv-accent);
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
}
.rv-textlink i { transition: transform .25s var(--rv-ease); }
.rv-textlink:hover { color: var(--rv-accent-600); }
.rv-textlink:hover i { transform: translateX(4px); }

/* ---- Pills / chips ------------------------------------------------------ */
.rv-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--rv-font-ui); font-weight: 600; font-size: .8rem; letter-spacing: .01em;
  padding: 6px 12px; border-radius: 999px;
  background: var(--rv-paper-2); color: var(--rv-text-2); border: 1px solid var(--rv-line);
}
.rv-chip--accent { background: rgba(59,91,255,.08); color: var(--rv-accent-600); border-color: rgba(59,91,255,.18); }
.rv-chip--live { background: rgba(43,217,168,.12); color: #0f8f6b; border-color: rgba(43,217,168,.28); }
.rv-chip--live::before { content:""; width:7px; height:7px; border-radius:999px; background:#16b888; box-shadow:0 0 0 3px rgba(43,217,168,.25); }
.rv-chip--soon { background: rgba(124,121,151,.1); color: var(--rv-text-3); border-color: var(--rv-line); }
.rv-ink-bg .rv-chip { background: rgba(255,255,255,.06); color: var(--rv-on-ink-2); border-color: rgba(255,255,255,.12); }

/* =========================================================================
   NAVBAR
   ========================================================================= */
.rv-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--rv-ease), border-color .3s var(--rv-ease), box-shadow .3s var(--rv-ease);
}
.rv-nav.is-scrolled { background: rgba(255,255,255,.9); border-bottom-color: var(--rv-line); box-shadow: 0 8px 30px -22px rgba(12,10,45,.5); }
.rv-nav__bar { display: flex; align-items: center; gap: 28px; height: 76px; }
.rv-nav__logo { display: inline-flex; align-items: center; flex: none; }
.rv-nav__logo img { height: 30px; width: auto; max-width: none; flex: none; }
.rv-nav__menu { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.rv-nav__spacer { flex: 1; }
.rv-nav__link {
  font-family: var(--rv-font-ui); font-weight: 500; font-size: .98rem;
  color: var(--rv-text); text-decoration: none; padding: 10px 14px; border-radius: 10px;
  display: inline-flex; align-items: center; gap: 6px; transition: background .2s, color .2s;
}
.rv-nav__link:hover { background: var(--rv-paper-2); color: var(--rv-text); }
.rv-nav__link .ri-arrow-down-s-line { font-size: 1.1em; transition: transform .25s var(--rv-ease); opacity: .6; }
.rv-nav__actions { display: flex; align-items: center; gap: 10px; }

/* Mega menu (products) */
.rv-nav__item { position: relative; }
.rv-mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px);
  width: min(880px, 92vw);
  background: #fff; border: 1px solid var(--rv-line); border-radius: var(--rv-r-lg);
  box-shadow: var(--rv-shadow-lg); padding: 18px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--rv-ease), transform .22s var(--rv-ease);
}
/* Invisible bridge across the gap so moving the cursor into the menu keeps it open. */
.rv-mega::before {
  content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px;
}
.rv-nav__item:hover .rv-mega,
.rv-nav__item.is-open .rv-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.rv-nav__item:hover .ri-arrow-down-s-line { transform: rotate(180deg); }
.rv-mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.rv-mega__item {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 14px;
  text-decoration: none; transition: background .18s var(--rv-ease);
}
.rv-mega__item:hover { background: var(--rv-paper-2); }
.rv-mega__icon {
  flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--rv-paper-2);
  display: grid; place-items: center; border: 1px solid var(--rv-line);
}
.rv-mega__icon img { width: 24px; height: 24px; object-fit: contain; }
.rv-mega__name { font-family: var(--rv-font-ui); font-weight: 600; color: var(--rv-text); font-size: .98rem; display: flex; align-items: center; gap: 8px; }
.rv-mega__desc { font-size: .82rem; color: var(--rv-text-3); line-height: 1.4; margin-top: 2px; }
.rv-mega__foot { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--rv-line); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.rv-mega__foot span { font-size: .86rem; color: var(--rv-text-3); }
.rv-tag-soon { font-family: var(--rv-font-ui); font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--rv-text-3); background: var(--rv-paper-3); padding: 2px 7px; border-radius: 999px; }

/* Mobile nav */
.rv-nav__toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--rv-line); background: #fff; border-radius: 12px; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--rv-text); cursor: pointer; }
.rv-nav__mobile { display: none; }

@media (max-width: 991px) {
  .rv-nav__menu, .rv-nav__actions .rv-btn--ghost { display: none; }
  .rv-nav__toggle { display: inline-flex; }
  .rv-nav__bar { height: 64px; }
  .rv-nav__mobile {
    /* .rv-nav uses backdrop-filter, which makes it the containing block for this
       position:fixed menu. Sizing via inset/bottom would resolve against the
       ~64px nav box and collapse the menu to a thin strip, so we pin the top and
       use a viewport-relative height (immune to the containing-block) instead. */
    display: block; position: fixed; top: 64px; left: 0; right: 0;
    height: calc(100vh - 64px); height: calc(100dvh - 64px); z-index: 999;
    background: #fff; padding: 22px; overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .3s var(--rv-ease);
    border-top: 1px solid var(--rv-line);
  }
  .rv-nav__mobile.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .rv-mnav__group { font-family: var(--rv-font-ui); font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--rv-text-3); margin: 18px 0 6px; }
  .rv-mnav__link { display: flex; align-items: center; gap: 12px; padding: 13px 8px; border-radius: 12px; text-decoration: none; color: var(--rv-text); font-family: var(--rv-font-ui); font-weight: 500; font-size: 1.05rem; }
  .rv-mnav__link:hover { background: var(--rv-paper-2); }
  .rv-mnav__link img { width: 24px; height: 24px; object-fit: contain; }
  .rv-mnav__cta { margin-top: 22px; display: grid; gap: 12px; }
  .rv-mnav__cta .rv-btn { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .rv-nav__mobile { transition: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.rv-hero { padding-top: 132px; padding-bottom: clamp(40px, 5vw, 80px); position: relative; overflow: clip; }
.rv-hero__glow {
  position: absolute; top: -120px; right: -80px; width: 620px; height: 620px; z-index: 0;
  background: radial-gradient(closest-side, rgba(59,91,255,.16), transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.rv-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.rv-hero__title { margin: 18px 0 0; }
.rv-hero__title .line { display: block; }

/* Hero word rotator — animated industry term on its own headline line. */
.rv-rotate { display: block; }
/* Slot is taller than one cap-height line so glyph descenders (g, p, y) clear
   the overflow:hidden clip. The negative bottom margin pulls the following
   "business in FLO." line back up so the extra descender room doesn't add a
   gap to the rest of the hero. JS keeps the mask height and each item height
   in sync via offsetHeight, so the slide still advances one full slot. */
.rv-rotate__mask { display: block; overflow: hidden; height: 1.3em; margin-bottom: -.25em; }
.rv-rotate__list { display: block; will-change: transform; }
.rv-rotate__item {
  display: flex; align-items: flex-start; white-space: nowrap;
  height: 1.3em; line-height: 1; transform-origin: left center;
}
.rv-hero__sub { margin-top: 22px; max-width: 30ch; }
.rv-hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.rv-hero__note { margin-top: 22px; display: flex; align-items: center; gap: 14px; color: var(--rv-text-3); font-size: .9rem; }
.rv-hero__avatars { display: flex; }
.rv-hero__avatars img { width: 34px; height: 34px; border-radius: 999px; border: 2px solid #fff; margin-left: -10px; background: var(--rv-paper-2); }
.rv-hero__avatars img:first-child { margin-left: 0; }

.rv-hero__visual { position: relative; }
.rv-hero__visual-frame {
  border-radius: var(--rv-r-xl); overflow: hidden; border: 1px solid var(--rv-line);
  box-shadow: var(--rv-shadow-lg); background: #fff; aspect-ratio: 4 / 3.4;
}
.rv-hero__visual-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rv-hero__float {
  position: absolute; background: #fff; border: 1px solid var(--rv-line); border-radius: var(--rv-r);
  box-shadow: var(--rv-shadow); padding: 13px 16px; display: flex; align-items: center; gap: 12px;
  font-family: var(--rv-font-ui);
}
.rv-hero__float--tl { top: 22px; left: -26px; }
.rv-hero__float--br { bottom: 26px; right: -22px; }
.rv-hero__float-ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: rgba(59,91,255,.1); color: var(--rv-accent); font-size: 1.2rem; }
.rv-hero__float-ic--mint { background: rgba(43,217,168,.14); color: #0f8f6b; }
.rv-hero__float b { font-size: 1.05rem; color: var(--rv-text); display: block; line-height: 1.1; }
.rv-hero__float span { font-size: .78rem; color: var(--rv-text-3); }

@media (max-width: 991px) {
  .rv-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .rv-hero__sub { max-width: 52ch; }
  .rv-hero__float--tl { left: 8px; }
  .rv-hero__float--br { right: 8px; }
}

/* =========================================================================
   LOGO MARQUEE
   ========================================================================= */
.rv-trust { padding-block: 30px; }
.rv-trust__label { text-align: center; font-family: var(--rv-font-ui); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rv-on-ink-3); margin-bottom: 26px; }
.rv-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.rv-marquee__track { display: flex; align-items: center; gap: 64px; width: max-content; animation: rv-scroll 38s linear infinite; }
.rv-marquee:hover .rv-marquee__track { animation-play-state: paused; }
.rv-marquee__track img { height: 30px; width: auto; opacity: .72; filter: saturate(0) brightness(1.7); transition: opacity .25s; }
.rv-marquee__track img:hover { opacity: 1; }
@keyframes rv-scroll { to { transform: translateX(-50%); } }

/* =========================================================================
   SECTION HEADER
   ========================================================================= */
.rv-shead { max-width: 720px; }
.rv-shead--center { margin-inline: auto; text-align: center; }
.rv-shead--center .rv-eyebrow { justify-content: center; }
.rv-shead__title { margin-top: 16px; }
.rv-shead__sub { margin-top: 16px; }

/* =========================================================================
   PRODUCT / PLATFORM GRID
   ========================================================================= */
.rv-prodgrid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 52px; }
.rv-prod {
  grid-column: span 4; position: relative; display: flex; flex-direction: column;
  padding: 26px; border-radius: var(--rv-r-lg); background: #fff; border: 1px solid var(--rv-line);
  text-decoration: none; color: inherit; overflow: hidden; transition: transform .3s var(--rv-ease), box-shadow .3s var(--rv-ease), border-color .3s;
  min-height: 224px;
}
.rv-prod::after { content:""; position:absolute; inset:auto 0 0 0; height:3px; background:var(--accent, var(--rv-accent)); transform: scaleX(0); transform-origin:left; transition: transform .35s var(--rv-ease); }
.rv-prod:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow); border-color: var(--rv-line-strong); }
.rv-prod:hover::after { transform: scaleX(1); }
.rv-prod--wide { grid-column: span 8; }
.rv-prod--feature { grid-column: span 8; background: var(--rv-ink); color: var(--rv-on-ink); border-color: transparent; }
.rv-prod--feature .rv-prod__desc { color: var(--rv-on-ink-2); }
.rv-prod__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.rv-prod__logo { height: 26px; width: auto; }
.rv-prod__name { font-family: var(--rv-font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; }
.rv-prod__desc { color: var(--rv-text-2); line-height: 1.5; font-size: .98rem; }
.rv-prod__foot { margin-top: auto; padding-top: 20px; display: flex; align-items: center; gap: 8px; font-family: var(--rv-font-ui); font-weight: 600; color: var(--rv-accent); font-size: .92rem; }
.rv-prod--feature .rv-prod__foot { color: var(--rv-accent-ink); }
.rv-prod__foot i { transition: transform .25s var(--rv-ease); }
.rv-prod:hover .rv-prod__foot i { transform: translateX(5px); }
.rv-prod__media { margin: 18px -26px -26px; }
.rv-prod__media img { width: 100%; display: block; }

@media (max-width: 991px) {
  .rv-prod, .rv-prod--wide, .rv-prod--feature { grid-column: span 6; }
}
@media (max-width: 640px) {
  .rv-prodgrid { gap: 14px; }
  .rv-prod, .rv-prod--wide, .rv-prod--feature { grid-column: span 12; }
}

/* =========================================================================
   METRICS BAND
   ========================================================================= */
.rv-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.rv-metric { padding: 30px 26px; border-radius: var(--rv-r); border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); }
.rv-metric__num { font-family: var(--rv-font-display); font-weight: 700; font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); letter-spacing: -.03em; line-height: 1; }
.rv-metric__num .rv-accent-text { color: #8aa0ff; }
.rv-metric__label { margin-top: 12px; color: var(--rv-on-ink-2); font-size: .95rem; line-height: 1.4; }
@media (max-width: 767px) { .rv-metrics { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================================
   FEATURE ROWS (alternating with media)
   ========================================================================= */
.rv-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.rv-feature + .rv-feature { margin-top: clamp(56px, 5vw, 110px); }
.rv-feature--rev .rv-feature__media { order: -1; }
.rv-feature__media { position: relative; border-radius: var(--rv-r-lg); overflow: hidden; border: 1px solid var(--rv-line); box-shadow: var(--rv-shadow); background: var(--rv-paper-2); }
.rv-feature__media img, .rv-feature__media video { width: 100%; display: block; }
.rv-feature__list { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.rv-feature__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--rv-text-2); line-height: 1.5; }
.rv-feature__list i { flex: none; color: var(--rv-accent); font-size: 1.25rem; margin-top: 1px; }
.rv-feature__cta { margin-top: 28px; }
@media (max-width: 860px) {
  .rv-feature { grid-template-columns: 1fr; gap: 32px; }
  .rv-feature--rev .rv-feature__media { order: 0; }
}

/* =========================================================================
   "FREE TOOL" CTA STRIP
   ========================================================================= */
.rv-toolstrip {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  background: linear-gradient(120deg, var(--rv-ink), var(--rv-ink-2));
  border-radius: var(--rv-r-xl); padding: clamp(32px, 4vw, 56px); color: var(--rv-on-ink);
  position: relative; overflow: hidden;
}
.rv-toolstrip::before { content:""; position:absolute; right:-60px; top:-60px; width:320px; height:320px; background: radial-gradient(closest-side, rgba(43,217,168,.22), transparent 70%); }
.rv-toolstrip__badge { color: var(--rv-mint); }
.rv-toolstrip__visual { position: relative; z-index: 1; }
.rv-toolstrip__score { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--rv-r); padding: 22px; backdrop-filter: blur(6px); }
.rv-toolstrip__bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; margin-top: 8px; }
.rv-toolstrip__bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--rv-mint), #6fffd0); }
.rv-toolstrip__row { display: flex; align-items: center; justify-content: space-between; font-family: var(--rv-font-ui); margin-bottom: 16px; }
.rv-toolstrip__row b { font-size: 1.05rem; }
.rv-toolstrip__row small { color: var(--rv-on-ink-3); }
@media (max-width: 767px) { .rv-toolstrip { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================================
   TESTIMONIAL
   ========================================================================= */
.rv-quote { max-width: 920px; margin-inline: auto; text-align: center; }
.rv-quote__mark { font-family: var(--rv-font-display); font-size: 4rem; line-height: 0; color: var(--rv-accent); opacity: .35; }
.rv-quote__text { font-family: var(--rv-font-display); font-weight: 600; font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.2rem); line-height: 1.3; letter-spacing: -.02em; margin: 20px 0 28px; }
.rv-quote__author { display: inline-flex; align-items: center; gap: 14px; }
.rv-quote__author img { height: 30px; width: auto; }
.rv-quote__author span { font-family: var(--rv-font-ui); color: var(--rv-text-3); }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.rv-cta { text-align: center; }
.rv-cta__box {
  background: var(--rv-ink); color: var(--rv-on-ink); border-radius: var(--rv-r-xl);
  padding: clamp(48px, 6vw, 96px) 24px; position: relative; overflow: hidden;
}
.rv-cta__box::before { content:""; position:absolute; left:50%; top:-40%; transform:translateX(-50%); width:760px; height:520px; background: radial-gradient(closest-side, rgba(59,91,255,.28), transparent 70%); }
.rv-cta__inner { position: relative; z-index: 1; max-width: 700px; margin-inline: auto; }
.rv-cta__title { margin: 18px 0 0; }
.rv-cta__cta { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   FOOTER — premium, generous, low-opacity background wordmark
   ========================================================================= */
.rv-footer {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--rv-ink); color: var(--rv-on-ink-2);
  padding-block: clamp(64px, 6vw, 104px) 32px;
}
.rv-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(123,140,255,.5), transparent);
}
/* Oversized low-opacity brand wordmark, clipped by the footer's overflow. */
.rv-footer__bgmark {
  position: absolute; left: 50%; bottom: -.18em; z-index: 0; transform: translateX(-50%);
  font-family: var(--rv-font-display); font-weight: 800; letter-spacing: -.04em;
  font-size: clamp(7rem, 26vw, 25rem); line-height: .8; white-space: nowrap;
  color: transparent; pointer-events: none; user-select: none;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  -webkit-background-clip: text; background-clip: text;
}
.rv-footer .rv-wrap { position: relative; z-index: 1; }

.rv-footer__top { display: grid; grid-template-columns: 1.35fr 3fr; gap: clamp(40px, 5vw, 88px); }
.rv-footer__brand { max-width: 360px; }
.rv-footer__logo { display: inline-flex; }
.rv-footer__logo img { height: 30px; width: auto; }
.rv-footer__brand p { margin: 22px 0 0; line-height: 1.65; font-size: .96rem; color: var(--rv-on-ink-2); }
.rv-footer__cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-family: var(--rv-font-ui); font-weight: 600; font-size: .95rem; color: #fff;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04);
  transition: background .25s var(--rv-ease), border-color .25s var(--rv-ease), transform .25s var(--rv-ease);
}
.rv-footer__cta i { transition: transform .25s var(--rv-ease); }
.rv-footer__cta:hover { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.42); transform: translateY(-2px); }
.rv-footer__cta:hover i { transform: translateX(4px); }
.rv-footer__social { display: flex; gap: 10px; margin-top: 28px; }
.rv-footer__social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: var(--rv-on-ink-2); font-size: 1.15rem; transition: all .22s var(--rv-ease); text-decoration: none; }
.rv-footer__social a:hover { background: #fff; color: var(--rv-ink); border-color: #fff; transform: translateY(-2px); }

.rv-footer__nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px 28px; }
.rv-footer__col h4 { font-family: var(--rv-font-ui); font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.rv-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.rv-footer__col a { color: var(--rv-on-ink-2); text-decoration: none; font-size: .95rem; transition: color .2s var(--rv-ease), transform .2s var(--rv-ease); display: inline-flex; align-items: center; gap: 8px; width: fit-content; }
.rv-footer__col a:hover { color: #fff; transform: translateX(3px); }
.rv-footer__col a[aria-disabled="true"] { cursor: default; }
.rv-footer__col a[aria-disabled="true"]:hover { color: var(--rv-on-ink-2); transform: none; }
.rv-footer__soon { font-size: .56rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--rv-on-ink-3); border: 1px solid rgba(255,255,255,.16); padding: 2px 6px; border-radius: 999px; }

.rv-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px 28px; margin-top: clamp(48px, 5vw, 72px); padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem; color: var(--rv-on-ink-3); flex-wrap: wrap; }
.rv-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.rv-footer__legal a { color: var(--rv-on-ink-3); text-decoration: none; transition: color .2s var(--rv-ease); }
.rv-footer__legal a:hover { color: #fff; }

@media (max-width: 991px) {
  .rv-footer__top { grid-template-columns: 1fr; gap: 48px; }
  .rv-footer__brand { max-width: 420px; }
}
@media (max-width: 560px) {
  .rv-footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 20px; }
  .rv-footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .rv-footer__cta, .rv-footer__cta i, .rv-footer__social a, .rv-footer__col a { transition: none; }
}

/* =========================================================================
   PLATFORM — node-link graph ("constellation")
   ========================================================================= */
.rv-graph { margin-top: clamp(40px, 4vw, 64px); }
.rv-graph__stage {
  position: relative; width: min(760px, 100%); margin-inline: auto; aspect-ratio: 1 / 1;
  border-radius: var(--rv-r-xl); overflow: hidden; isolation: isolate;
  background:
    radial-gradient(120% 120% at 50% 42%, #1a1657 0%, #0b0733 52%, #060327 100%);
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: var(--rv-shadow-lg);
}
/* faint dot grid + drifting glow for depth */
.rv-graph__stage::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1.4px);
  background-size: 26px 26px; mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 78%);
}
.rv-graph__stage::after {
  content: ""; position: absolute; z-index: 0; width: 60%; height: 60%; left: 20%; top: 14%;
  background: radial-gradient(closest-side, rgba(91, 108, 255, .35), transparent 70%);
  filter: blur(10px); animation: rv-g-drift 14s ease-in-out infinite alternate;
}
@keyframes rv-g-drift {
  0%   { transform: translate(-6%, -4%) scale(1); }
  100% { transform: translate(8%, 10%) scale(1.12); }
}

.rv-graph__links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.rv-graph__link {
  fill: none; stroke: var(--ln, #6f7dff); stroke-width: 1.4; stroke-linecap: round;
  opacity: .42; stroke-dasharray: 4 9; animation: rv-g-dash 1.7s linear infinite;
  transition: opacity .3s var(--rv-ease), stroke-width .3s var(--rv-ease);
}
@keyframes rv-g-dash { to { stroke-dashoffset: -13; } }
.rv-graph__link.is-hot { opacity: 1; stroke-width: 2.4; }
.rv-graph__pulse { filter: drop-shadow(0 0 5px currentColor); opacity: .9; }

/* Hub */
.rv-graph__hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 4; width: clamp(118px, 19%, 150px); aspect-ratio: 1; text-decoration: none;
  display: grid; place-items: center;
}
.rv-graph__hub-core {
  position: relative; z-index: 2; width: 100%; height: 100%; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: radial-gradient(120% 120% at 50% 30%, #2a2a7e, #0d0a44 70%);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 0 6px rgba(91, 108, 255, .1), 0 18px 50px -16px rgba(59, 91, 255, .8);
  transition: transform .35s var(--rv-ease), box-shadow .35s var(--rv-ease);
}
.rv-graph__hub:hover .rv-graph__hub-core { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(91, 108, 255, .16), 0 22px 60px -14px rgba(59, 91, 255, .95); }
.rv-graph__hub-logo { width: 58%; height: auto; }
.rv-graph__hub-cap { font-family: var(--rv-font-ui); font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--rv-accent-ink); }
.rv-graph__hub-ring {
  position: absolute; inset: 0; z-index: 1; border-radius: 50%;
  border: 1px solid rgba(123, 140, 255, .5); animation: rv-g-ping 3.2s var(--rv-ease) infinite;
}
.rv-graph__hub-ring--2 { animation-delay: 1.6s; }
@keyframes rv-g-ping {
  0%   { transform: scale(1); opacity: .55; }
  70%  { opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Product nodes */
.rv-graph__node {
  position: absolute; transform: translate(-50%, -50%) scale(.4); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 7px; width: 92px;
  text-decoration: none; opacity: 0; transition: transform .5s var(--rv-ease), opacity .5s var(--rv-ease);
}
.rv-graph.is-in .rv-graph__node { opacity: 1; transform: translate(-50%, -50%) scale(1); transition-delay: var(--d); }
.rv-graph__chip {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; flex: none;
  background: #fff; border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 0 0 1px rgba(6, 3, 39, .04), 0 10px 26px -10px rgba(6, 3, 39, .6), 0 0 22px -6px var(--accent);
  transition: transform .3s var(--rv-ease), box-shadow .3s var(--rv-ease);
}
.rv-graph__chip img { width: 30px; height: 30px; object-fit: contain; }
.rv-graph__chip i { font-size: 1.55rem; color: var(--accent); }
.rv-graph__name { font-family: var(--rv-font-ui); font-weight: 600; font-size: .82rem; color: var(--rv-on-ink); letter-spacing: -.01em; white-space: nowrap; }
.rv-graph__tip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
  width: max-content; max-width: 190px; padding: 8px 11px; border-radius: 10px;
  background: #fff; color: var(--rv-text-2); font-size: .76rem; line-height: 1.35; text-align: center;
  box-shadow: var(--rv-shadow-lg); opacity: 0; pointer-events: none; z-index: 6;
  transition: opacity .25s var(--rv-ease), transform .25s var(--rv-ease);
}
.rv-graph__node:hover { z-index: 7; }
.rv-graph__node:hover .rv-graph__chip { transform: translateY(-4px) scale(1.12); box-shadow: 0 0 0 1px rgba(6, 3, 39, .04), 0 16px 34px -10px rgba(6, 3, 39, .7), 0 0 30px -2px var(--accent); }
.rv-graph__node:hover .rv-graph__tip { opacity: 1; transform: translateX(-50%) translateY(0); }
.rv-graph__node:hover .rv-graph__name { color: #fff; }

/* Footer line under the stage */
.rv-graph__foot {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 18px;
  margin-top: 28px; font-size: .92rem; color: var(--rv-text-3); text-align: center;
}
.rv-graph__foot-live { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--rv-text-2); }
.rv-graph__foot-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rv-mint); box-shadow: 0 0 0 3px rgba(43, 217, 168, .18); }
.rv-graph__foot-sep { width: 1px; height: 14px; background: var(--rv-line-strong); }
.rv-graph__foot-link { margin-left: 4px; }

/* Mobile: collapse the diagram into a clean chip grid (reuses node markup). */
@media (max-width: 720px) {
  .rv-graph__stage {
    aspect-ratio: auto; width: 100%; padding: 22px 16px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 10px;
    background: var(--rv-paper-2); border: 1px solid var(--rv-line); box-shadow: none;
  }
  .rv-graph__stage::before, .rv-graph__stage::after,
  .rv-graph__links, .rv-graph__hub { display: none; }
  .rv-graph__node {
    position: static; transform: none; opacity: 1; width: auto;
  }
  .rv-graph.is-in .rv-graph__node { transform: none; transition-delay: 0ms; }
  .rv-graph__name { color: var(--rv-text); }
  .rv-graph__chip { box-shadow: 0 6px 16px -8px rgba(6, 3, 39, .35), 0 0 0 1px var(--rv-line); border-color: var(--rv-line); }
  .rv-graph__tip { display: none; }
}
@media (max-width: 420px) {
  .rv-graph__stage { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.rv-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--rv-ease), transform .7s var(--rv-ease); }
.rv-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv-reveal { opacity: 1; transform: none; transition: none; }
  .rv-marquee__track { animation: none; }
  .rv-graph__link, .rv-graph__stage::after, .rv-graph__hub-ring { animation: none; }
  .rv-graph__pulse { display: none; }
  .rv-graph__node { opacity: 1; transform: translate(-50%, -50%); }
}

/* =========================================================================
   PRODUCT PAGE — hero + feature cards + split
   ========================================================================= */
.rv-phero { padding-top: 150px; padding-bottom: clamp(40px, 4vw, 72px); text-align: center; position: relative; overflow: clip; }
.rv-phero__inner { max-width: 780px; margin-inline: auto; position: relative; z-index: 1; }
.rv-phero .rv-eyebrow { justify-content: center; }
.rv-phero__title { margin-top: 18px; }
.rv-phero__sub { margin: 18px auto 0; max-width: 58ch; }
.rv-phero__cta { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.rv-phero__logo { height: 34px; width: auto; }
.rv-phero__shot { margin: 56px auto 0; max-width: 1040px; border-radius: var(--rv-r-xl); overflow: hidden; border: 1px solid var(--rv-line); box-shadow: var(--rv-shadow-lg); background: #fff; }
.rv-phero__shot img, .rv-phero__shot video { width: 100%; display: block; }

.rv-fcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.rv-fcards > * { min-width: 0; }
.rv-fcard { padding: 28px; border-radius: var(--rv-r-lg); background: #fff; border: 1px solid var(--rv-line); transition: transform .3s var(--rv-ease), box-shadow .3s var(--rv-ease); }
.rv-fcard:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow); }
.rv-fcard__ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 1.45rem; background: rgba(59,91,255,.1); color: var(--rv-accent); margin-bottom: 18px; }
.rv-fcard__title { font-family: var(--rv-font-ui); font-weight: 600; font-size: 1.12rem; color: var(--rv-text); }
.rv-fcard__desc { margin-top: 8px; color: var(--rv-text-2); line-height: 1.55; font-size: .96rem; }
.rv-ink-bg .rv-fcard { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.1); }
.rv-ink-bg .rv-fcard__title { color: var(--rv-on-ink); }
.rv-ink-bg .rv-fcard__desc { color: var(--rv-on-ink-2); }
.rv-ink-bg .rv-fcard__ic { background: rgba(255,255,255,.07); color: #fff; }
@media (max-width: 860px) { .rv-fcards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rv-fcards { grid-template-columns: 1fr; } }

.rv-ints { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* Audience pills */
.rv-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.rv-pill { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 999px; background: #fff; border: 1px solid var(--rv-line); font-family: var(--rv-font-ui); font-weight: 600; font-size: .95rem; color: var(--rv-text); box-shadow: var(--rv-shadow); }
.rv-pill i { color: var(--rv-accent); font-size: 1.15rem; }

/* =========================================================================
   PROCESS STEPS
   ========================================================================= */
.rv-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.rv-steps > * { min-width: 0; }
.rv-step { padding: 26px; border-radius: var(--rv-r-lg); background: #fff; border: 1px solid var(--rv-line); position: relative; }
.rv-step__n { font-family: var(--rv-font-display); font-weight: 700; font-size: 1.05rem; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--rv-ink); color: #fff; margin-bottom: 16px; }
.rv-step__title { font-family: var(--rv-font-ui); font-weight: 600; font-size: 1.05rem; color: var(--rv-text); }
.rv-step__desc { margin-top: 6px; color: var(--rv-text-2); font-size: .92rem; line-height: 1.5; }
.rv-ink-bg .rv-step { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.1); }
.rv-ink-bg .rv-step__n { background: var(--rv-accent); }
.rv-ink-bg .rv-step__title { color: var(--rv-on-ink); }
.rv-ink-bg .rv-step__desc { color: var(--rv-on-ink-2); }
@media (max-width: 860px) { .rv-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rv-steps { grid-template-columns: 1fr; } }

/* Deliverables / checklist */
.rv-checks { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
.rv-checks li { display: flex; gap: 11px; align-items: flex-start; color: var(--rv-text-2); line-height: 1.5; }
.rv-checks i { color: var(--rv-accent); font-size: 1.2rem; flex: none; margin-top: 1px; }
.rv-ink-bg .rv-checks li { color: var(--rv-on-ink-2); }
@media (max-width: 640px) { .rv-checks { grid-template-columns: 1fr; } }

/* =========================================================================
   COMPARISON TABLE
   ========================================================================= */
.rv-compare-wrap { margin-top: 48px; overflow-x: auto; border-radius: var(--rv-r-lg); border: 1px solid var(--rv-line); box-shadow: var(--rv-shadow); }
.rv-compare { width: 100%; min-width: 760px; border-collapse: collapse; background: #fff; font-family: var(--rv-font-ui); }
.rv-compare th, .rv-compare td { padding: 17px 22px; text-align: center; border-bottom: 1px solid var(--rv-line); font-size: .96rem; color: var(--rv-text-2); }
.rv-compare thead th { font-weight: 700; color: var(--rv-text-3); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; background: var(--rv-paper-2); border-bottom: 1px solid var(--rv-line-strong); }
.rv-compare tbody td:first-child, .rv-compare thead th:first-child { text-align: left; color: var(--rv-text); font-weight: 600; }
.rv-compare__brand { background: var(--rv-accent) !important; color: #fff !important; font-family: var(--rv-font-display); font-size: 1.05rem; letter-spacing: -.01em; }
.rv-compare__hl { background: rgba(59,91,255,.045); }
.rv-compare tbody tr:last-child td { border-bottom: 0; }
.rv-compare .rv-yes { color: #12a877; font-size: 1.3rem; line-height: 1; }
.rv-compare .rv-no { color: var(--rv-line-strong); font-size: 1.3rem; line-height: 1; }
.rv-compare .rv-partial { color: #e0931f; font-size: 1.3rem; line-height: 1; }
.rv-compare__cap { font-size: .8rem; color: var(--rv-text-3); margin-top: 14px; }

/* =========================================================================
   SCROLL PROGRESS BAR
   ========================================================================= */
.rv-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 1100;
  background: linear-gradient(90deg, var(--rv-accent), #6f5bff 60%, var(--rv-coral));
  box-shadow: 0 0 12px -2px rgba(59, 91, 255, .7);
  transition: width .12s linear; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .rv-progress { transition: none; } }

/* =========================================================================
   "ALL-IN-ONE ADVANTAGE" — before / after comparison
   ========================================================================= */
.rv-vs { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 0; margin-top: 52px; }
.rv-vs > * { min-width: 0; }
.rv-vs__col {
  padding: clamp(26px, 3vw, 40px); border-radius: var(--rv-r-xl);
  border: 1px solid var(--rv-line); background: #fff; position: relative;
}
.rv-vs__col--bad { background: var(--rv-paper-2); border-color: var(--rv-line); }
.rv-vs__col--good {
  background: linear-gradient(150deg, var(--rv-ink), var(--rv-ink-2)); color: var(--rv-on-ink);
  border-color: transparent; box-shadow: var(--rv-shadow-lg); overflow: hidden;
}
.rv-vs__col--good::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: radial-gradient(closest-side, rgba(91, 108, 255, .35), transparent 70%); pointer-events: none;
}
.rv-vs__head { position: relative; z-index: 1; margin-bottom: 22px; }
.rv-vs__tag {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--rv-font-ui);
  font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.rv-vs__tag--bad { background: rgba(124, 121, 151, .12); color: var(--rv-text-3); }
.rv-vs__tag--good { background: rgba(43, 217, 168, .16); color: #5ff0c4; }
.rv-vs__head h3 { font-family: var(--rv-font-display); font-weight: 700; font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); letter-spacing: -.02em; line-height: 1.1; }
.rv-vs__col--bad .rv-vs__head h3 { color: var(--rv-text-2); }
.rv-vs__col--good .rv-vs__head h3 { color: #fff; }
.rv-vs__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; position: relative; z-index: 1; }
.rv-vs__list li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.45; font-size: .98rem; }
.rv-vs__col--bad .rv-vs__list li { color: var(--rv-text-2); }
.rv-vs__col--good .rv-vs__list li { color: var(--rv-on-ink-2); }
.rv-vs__list i { flex: none; font-size: 1.05rem; margin-top: 2px; width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; }
.rv-vs__col--bad .rv-vs__list i { color: #b9388a; background: rgba(255, 90, 158, .12); }
.rv-vs__col--good .rv-vs__list i { color: #2bd9a8; background: rgba(43, 217, 168, .16); }
.rv-vs__divider { display: grid; place-items: center; padding: 0 22px; }
.rv-vs__divider span {
  width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--rv-line); box-shadow: var(--rv-shadow);
  font-family: var(--rv-font-display); font-weight: 700; font-style: italic; color: var(--rv-text-3); font-size: 1.1rem;
}
@media (max-width: 860px) {
  .rv-vs { grid-template-columns: 1fr; gap: 16px; }
  .rv-vs__divider { padding: 0; }
  .rv-vs__divider span { transform: rotate(90deg); }
}

/* =========================================================================
   PRODUCT HERO — "app window" mockup (CSS-only, no screenshots)
   ========================================================================= */
.rv-mock {
  border-radius: var(--rv-r-lg); overflow: hidden; background: #fff;
  border: 1px solid var(--rv-line); box-shadow: var(--rv-shadow-lg);
}
.rv-mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--rv-paper-2); border-bottom: 1px solid var(--rv-line); }
.rv-mock__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rv-line-strong); flex: none; }
.rv-mock__dot--r { background: #ff6a5b; } .rv-mock__dot--y { background: #e0931f; } .rv-mock__dot--g { background: #16b888; }
.rv-mock__title { margin-left: 9px; font-family: var(--rv-font-ui); font-weight: 600; font-size: .8rem; color: var(--rv-text-3); }
.rv-mock__chip { margin-left: auto; font-family: var(--rv-font-ui); font-weight: 700; font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: rgba(43,217,168,.14); color: #0f8f6b; }
.rv-mock__body { padding: 18px; display: grid; gap: 11px; }
.rv-mock__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 3px; }
.rv-mock__head b { font-family: var(--rv-font-ui); font-size: .96rem; color: var(--rv-text); }
.rv-mock__head small { font-size: .78rem; color: var(--rv-text-3); }

.rv-mockrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 13px; border: 1px solid var(--rv-line); border-radius: 12px; background: #fff; }
.rv-mockrow__l { display: flex; align-items: center; gap: 11px; min-width: 0; }
.rv-mockrow__l > span:last-child { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rv-mockrow__ic { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; font-size: .95rem; flex: none; background: var(--rv-paper-2); color: var(--rv-text-2); }
.rv-mockrow__t { font-family: var(--rv-font-ui); font-weight: 600; font-size: .86rem; color: var(--rv-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rv-mockrow__s { font-size: .74rem; color: var(--rv-text-3); }

.rv-tag { font-family: var(--rv-font-ui); font-weight: 700; font-size: .68rem; letter-spacing: .03em; padding: 4px 10px; border-radius: 999px; flex: none; }
.rv-tag--pass { background: rgba(22,184,136,.12); color: #0f8f6b; }
.rv-tag--fail { background: rgba(255,90,94,.13); color: #d23b4e; }
.rv-tag--run  { background: rgba(59,91,255,.1);  color: var(--rv-accent); }
.rv-tag--warn { background: rgba(224,147,31,.14); color: #b9740f; }
.rv-tag--info { background: var(--rv-paper-3);    color: var(--rv-text-2); }

/* slim metric bar used inside mock cards */
.rv-mockbar { height: 7px; border-radius: 999px; background: var(--rv-paper-3); overflow: hidden; }
.rv-mockbar > span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--rv-accent), #6f5bff); }
.rv-mockbar--mint > span { background: linear-gradient(90deg, var(--rv-mint), #6fffd0); }

/* mini KPI tiles inside a mock */
.rv-mockkpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.rv-mockkpi { padding: 12px; border: 1px solid var(--rv-line); border-radius: 12px; background: var(--rv-paper-2); }
.rv-mockkpi b { display: block; font-family: var(--rv-font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; color: var(--rv-text); line-height: 1; }
.rv-mockkpi span { font-size: .72rem; color: var(--rv-text-3); }

/* Utility */
.rv-mt-0 { margin-top: 0 !important; }
.rv-center { text-align: center; }
.rv-divider { height: 1px; background: var(--rv-line); border: 0; margin: 0; }

/* =========================================================================
   HOMEPAGE — "OPERATING SYSTEM" REBUILD
   New components: trust bar, hero core constellation, pain stack, OS flow,
   product-suite modules, FLO AI grid, integrations wall, enterprise grid.
   ========================================================================= */

/* ---- Hero (OS variant) -------------------------------------------------- */
.rv-hero--os .rv-hero__title { font-size: clamp(2.4rem, 1.5rem + 3.4vw, 4.4rem); }
.rv-hero--os .rv-hero__sub { max-width: 50ch; }

.rv-trustbar {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 11px 22px; align-items: center;
}
.rv-trustbar li {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--rv-font-ui); font-weight: 600; font-size: .9rem; color: var(--rv-text-2);
}
.rv-trustbar i { color: var(--rv-accent); font-size: 1.12rem; }

/* ---- Hero "SwagFlo Core" constellation ---------------------------------- */
.rv-core {
  position: relative; width: 100%; max-width: 470px; margin-inline: auto; aspect-ratio: 1 / 1;
  border-radius: var(--rv-r-xl); isolation: isolate;
  background: radial-gradient(120% 120% at 50% 40%, #1a1657 0%, #0b0733 55%, #060327 100%);
  border: 1px solid rgba(255, 255, 255, .09); box-shadow: var(--rv-shadow-lg);
}
.rv-core::before {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; opacity: .5;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1.4px);
  background-size: 24px 24px; mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 80%);
}
.rv-core__links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; overflow: visible; }
.rv-core__link {
  fill: none; stroke: #6f7dff; stroke-width: 1.4; stroke-linecap: round;
  opacity: .42; stroke-dasharray: 4 8; animation: rv-g-dash 1.7s linear infinite;
}
.rv-core__hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: clamp(94px, 25%, 122px); aspect-ratio: 1; border-radius: 50%; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  background: radial-gradient(120% 120% at 50% 30%, #2a2a7e, #0d0a44 70%);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 0 6px rgba(91, 108, 255, .1), 0 18px 50px -16px rgba(59, 91, 255, .8);
}
.rv-core__hub::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 50%;
  border: 1px solid rgba(123, 140, 255, .5); animation: rv-g-ping 3.2s var(--rv-ease) infinite;
}
.rv-core__hub-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.18rem; margin-bottom: 5px; }
.rv-core__hub b { font-family: var(--rv-font-display); font-weight: 700; color: #fff; font-size: 1rem; line-height: 1; }
.rv-core__hub span { font-family: var(--rv-font-ui); font-size: .58rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--rv-accent-ink); }
.rv-core__node {
  position: absolute; transform: translate(-50%, -50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 13px 7px 7px; border-radius: 999px;
  background: rgba(255, 255, 255, .97); border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 10px 26px -12px rgba(6, 3, 39, .7);
  font-family: var(--rv-font-ui); font-weight: 600; font-size: .76rem; color: var(--rv-text); white-space: nowrap;
}
.rv-core__node i { width: 25px; height: 25px; border-radius: 8px; display: grid; place-items: center; background: var(--rv-paper-2); color: var(--rv-accent); font-size: .92rem; }
.rv-core__node em { font-style: normal; }
/* Phones: pull the side nodes inward (inline left:% needs !important) and
   shrink pills so long suite names never clip at the viewport edge. */
@media (max-width: 600px) {
  .rv-core { max-width: 360px; }
  .rv-core__node { font-size: .72rem; padding: 6px 11px 6px 6px; }
  .rv-core__node i { width: 22px; height: 22px; font-size: .84rem; }
  .rv-core__node:nth-of-type(2) { left: 80% !important; }
  .rv-core__node:nth-of-type(3) { left: 73% !important; }
  .rv-core__node:nth-of-type(4) { left: 27% !important; }
  .rv-core__node:nth-of-type(5) { left: 20% !important; }
}
@media (max-width: 400px) {
  .rv-core { max-width: 320px; }
  .rv-core__node { font-size: .66rem; }
  .rv-core__node i { width: 20px; height: 20px; font-size: .78rem; }
}

/* ---- Pain section — disconnected stack ---------------------------------- */
.rv-pain { display: grid; grid-template-columns: 1.45fr auto 1fr; align-items: center; gap: clamp(18px, 2.5vw, 36px); margin-top: 52px; }
.rv-pain > * { min-width: 0; }
.rv-pain__stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.rv-pain__card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; background: var(--rv-paper-2); border: 1px dashed var(--rv-line-strong); }
.rv-pain__ic { width: 36px; height: 36px; border-radius: 10px; flex: none; display: grid; place-items: center; background: #fff; border: 1px solid var(--rv-line); color: var(--rv-text-3); font-size: 1.1rem; }
.rv-pain__t { font-family: var(--rv-font-ui); font-weight: 600; font-size: .9rem; line-height: 1.2; color: var(--rv-text-2); }
.rv-pain__arrow { display: grid; place-items: center; color: var(--rv-accent); font-size: 1.9rem; }
.rv-pain__one { padding: clamp(24px, 3vw, 38px); border-radius: var(--rv-r-xl); background: linear-gradient(150deg, var(--rv-ink), var(--rv-ink-2)); color: var(--rv-on-ink); box-shadow: var(--rv-shadow-lg); position: relative; overflow: hidden; }
.rv-pain__one::before { content: ""; position: absolute; right: -50px; top: -50px; width: 220px; height: 220px; background: radial-gradient(closest-side, rgba(91, 108, 255, .35), transparent 70%); }
.rv-pain__badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--rv-font-ui); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: rgba(43, 217, 168, .16); color: #5ff0c4; margin-bottom: 16px; position: relative; z-index: 1; }
.rv-pain__one h3 { font-family: var(--rv-font-display); font-weight: 700; font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); letter-spacing: -.02em; line-height: 1.12; color: #fff; position: relative; z-index: 1; }
.rv-pain__one p { margin-top: 12px; color: var(--rv-on-ink-2); line-height: 1.55; position: relative; z-index: 1; }
.rv-pain__one .rv-textlink { margin-top: 18px; color: #8aa0ff; position: relative; z-index: 1; }
@media (max-width: 900px) {
  .rv-pain { grid-template-columns: 1fr; }
  .rv-pain__arrow { transform: rotate(90deg); }
}
@media (max-width: 440px) { .rv-pain__stack { grid-template-columns: 1fr; } }

/* ---- Operating-system flow (dark) --------------------------------------- */
.rv-flow {
  margin: 52px auto 0; width: max-content; max-width: 100%;
  display: flex; align-items: center; gap: 6px; flex-wrap: nowrap;
  overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.rv-flow__step {
  scroll-snap-align: center; flex: 0 0 auto; width: 104px; padding: 18px 10px;
  border-radius: 16px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .3s var(--rv-ease), background .3s, border-color .3s;
}
.rv-flow__step:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .07); border-color: rgba(123, 140, 255, .5); }
.rv-flow__ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: rgba(59, 91, 255, .18); color: #a9b6ff; font-size: 1.3rem; }
.rv-flow__t { font-family: var(--rv-font-ui); font-weight: 600; font-size: .8rem; color: var(--rv-on-ink); line-height: 1.2; }
.rv-flow__link { flex: 0 0 auto; display: grid; place-items: center; color: var(--rv-on-ink-3); font-size: 1.05rem; }
.rv-flow::-webkit-scrollbar { height: 6px; }
.rv-flow::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .16); border-radius: 999px; }

/* ---- Product-suite modules ("replace 12 tools") ------------------------- */
.rv-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.rv-modules > * { min-width: 0; }
.rv-module {
  position: relative; display: flex; flex-direction: column; padding: 28px;
  border-radius: var(--rv-r-lg); background: #fff; border: 1px solid var(--rv-line);
  text-decoration: none; color: inherit; overflow: hidden;
  transition: transform .3s var(--rv-ease), box-shadow .3s var(--rv-ease), border-color .3s;
}
.rv-module::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--accent, var(--rv-accent)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--rv-ease); }
.rv-module:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow); border-color: var(--rv-line-strong); }
.rv-module:hover::after { transform: scaleX(1); }
.rv-module__ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; color: #fff; background: var(--accent, var(--rv-accent)); box-shadow: 0 12px 26px -14px var(--accent, var(--rv-accent)); margin-bottom: 18px; }
.rv-module__name { font-family: var(--rv-font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em; color: var(--rv-text); }
.rv-module__desc { margin-top: 10px; color: var(--rv-text-2); line-height: 1.55; font-size: .96rem; }
.rv-module__caps { display: grid; gap: 8px; margin-top: 18px; }
.rv-module__caps span { display: flex; align-items: center; gap: 9px; font-size: .88rem; color: var(--rv-text-2); }
.rv-module__caps i { color: var(--accent, var(--rv-accent)); font-size: 1rem; flex: none; }
.rv-module__foot { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--rv-font-ui); font-weight: 600; color: var(--accent, var(--rv-accent)); font-size: .92rem; }
.rv-module__foot i { transition: transform .25s var(--rv-ease); }
.rv-module:hover .rv-module__foot i { transform: translateX(5px); }
@media (max-width: 900px) { .rv-modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .rv-modules { grid-template-columns: 1fr; } }

/* ---- FLO AI grid (dark) ------------------------------------------------- */
.rv-ai { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.rv-ai > * { min-width: 0; }
.rv-ai__card { padding: 24px; border-radius: var(--rv-r-lg); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); transition: transform .3s var(--rv-ease), background .3s, border-color .3s; }
.rv-ai__card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .07); border-color: rgba(123, 140, 255, .5); }
.rv-ai__ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 1.35rem; background: linear-gradient(135deg, rgba(59, 91, 255, .35), rgba(122, 91, 255, .35)); color: #fff; margin-bottom: 16px; }
.rv-ai__t { display: block; font-family: var(--rv-font-ui); font-weight: 600; font-size: 1rem; color: var(--rv-on-ink); }
.rv-ai__d { display: block; margin-top: 8px; color: var(--rv-on-ink-2); font-size: .9rem; line-height: 1.5; }
@media (max-width: 900px) { .rv-ai { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rv-ai { grid-template-columns: 1fr; } }

/* ---- Integrations wall -------------------------------------------------- */
.rv-intwall { margin-top: 44px; display: grid; gap: 22px; max-width: 980px; margin-inline: auto; }
.rv-intwall__group { display: grid; grid-template-columns: 180px 1fr; gap: 18px; align-items: center; padding-bottom: 22px; border-bottom: 1px solid var(--rv-line); }
.rv-intwall__group:last-child { border-bottom: 0; padding-bottom: 0; }
.rv-intwall__label { font-family: var(--rv-font-ui); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rv-text-3); margin: 0; }
.rv-intwall__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.rv-intpill { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--rv-line); font-family: var(--rv-font-ui); font-weight: 600; font-size: .92rem; color: var(--rv-text); box-shadow: var(--rv-shadow); transition: transform .2s var(--rv-ease), border-color .2s; }
.rv-intpill:hover { transform: translateY(-2px); border-color: var(--rv-line-strong); }
.rv-intpill__dot { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--rv-accent), #6f5bff); flex: none; }
@media (max-width: 640px) { .rv-intwall__group { grid-template-columns: 1fr; gap: 10px; } }

/* ---- Enterprise grid ---------------------------------------------------- */
.rv-ent { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 26px; margin-top: 44px; }
.rv-ent > * { min-width: 0; }
.rv-ent__card { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; border-radius: 16px; background: #fff; border: 1px solid var(--rv-line); transition: transform .25s var(--rv-ease), box-shadow .25s; }
.rv-ent__card:hover { transform: translateY(-3px); box-shadow: var(--rv-shadow); }
.rv-ent__ic { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(59, 91, 255, .1); color: var(--rv-accent); font-size: 1.25rem; }
.rv-ent__t { font-family: var(--rv-font-ui); font-weight: 600; font-size: 1rem; color: var(--rv-text); }
.rv-ent__d { margin-top: 4px; color: var(--rv-text-2); font-size: .9rem; line-height: 1.45; }
@media (max-width: 760px) { .rv-ent { grid-template-columns: 1fr; } }

/* ---- Metrics (light variant) -------------------------------------------- */
.rv-metrics--light .rv-metric { border-color: var(--rv-line); background: var(--rv-paper-2); }
.rv-metrics--light .rv-metric__num { color: var(--rv-text); }
.rv-metrics--light .rv-metric__num .rv-accent-text { color: var(--rv-accent); }
.rv-metrics--light .rv-metric__label { color: var(--rv-text-2); }

/* ---- Reduced motion for new homepage animations ------------------------- */
@media (prefers-reduced-motion: reduce) {
  .rv-core__link, .rv-core__hub::after { animation: none; }
}

/* =========================================================================
   HOMEPAGE REFINEMENT — v2
   Living hero OS visualization, powered-by row, OS process timeline, refined
   product modules, FLO AI conversational panel, categorized integrations,
   enterprise architecture, world-class comparison, customer success, CTA.
   ========================================================================= */

/* ---- Generic staggered reveal (children animate in sequence) ------------- */
[data-rv-stagger] > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s var(--rv-ease), transform .6s var(--rv-ease);
}
[data-rv-stagger].is-in > * { opacity: 1; transform: none; }

/* ---- Hero chip refinement ---------------------------------------------- */
.rv-hero--os .rv-chip--accent i { font-size: 1rem; }

/* =========================================================================
   1 · HERO — Living "Operating System" visualization
   ========================================================================= */
.rv-os {
  position: relative; width: 100%; max-width: 480px; margin-inline: auto; aspect-ratio: 1 / 1;
  border-radius: var(--rv-r-xl); isolation: isolate;
  background: radial-gradient(120% 120% at 50% 38%, #1a1657 0%, #0b0733 55%, #060327 100%);
  border: 1px solid rgba(255, 255, 255, .09); box-shadow: var(--rv-shadow-lg);
}
.rv-os::before {
  content: ""; position: absolute; inset: 0; z-index: 0; border-radius: inherit; opacity: .5;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1.4px);
  background-size: 24px 24px; mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 80%);
}
.rv-os__halo {
  position: absolute; left: 50%; top: 50%; width: 64%; height: 64%; z-index: 0;
  transform: translate(-50%, -50%); border-radius: 50%; pointer-events: none; opacity: .55;
  background: conic-gradient(from 0deg, rgba(59, 91, 255, 0), rgba(91, 108, 255, .55), rgba(43, 217, 168, .35), rgba(59, 91, 255, 0));
  filter: blur(22px); animation: rv-os-spin 18s linear infinite;
}
@keyframes rv-os-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.rv-os__links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; overflow: visible; }
.rv-os__link {
  fill: none; stroke: #6f7dff; stroke-width: 1.4; stroke-linecap: round;
  opacity: .4; stroke-dasharray: 4 8; animation: rv-g-dash 1.7s linear infinite;
}

.rv-os__pulses { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.rv-os__pulse {
  position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; margin: -4px; border-radius: 50%;
  background: radial-gradient(circle, #e7ecff 0%, #5b6cff 55%, rgba(91, 108, 255, 0) 72%);
  opacity: 0; will-change: transform, opacity;
  animation: rv-os-flow 2.8s var(--rv-ease) infinite; animation-delay: calc(var(--i) * .34s);
}
@keyframes rv-os-flow {
  0%   { transform: translate(var(--dx, 0), var(--dy, 0)) scale(.5); opacity: 0; }
  12%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translate(0, 0) scale(1.2); opacity: 0; }
}

.rv-os__hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: clamp(96px, 26%, 128px); aspect-ratio: 1; border-radius: 50%; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  background: radial-gradient(120% 120% at 50% 30%, #2a2a7e, #0d0a44 70%);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 0 0 6px rgba(91, 108, 255, .1), 0 18px 50px -16px rgba(59, 91, 255, .8);
}
.rv-os__hub::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: 50%;
  border: 1px solid rgba(123, 140, 255, .5); animation: rv-g-ping 3.2s var(--rv-ease) infinite;
}
.rv-os__hub-ic { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.25rem; margin-bottom: 4px; }
.rv-os__hub b { font-family: var(--rv-font-display); font-weight: 700; color: #fff; font-size: 1.05rem; line-height: 1; }
.rv-os__hub span { font-family: var(--rv-font-ui); font-size: .54rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--rv-accent-ink); }

.rv-os__node {
  position: absolute; transform: translate(-50%, -50%); z-index: 3;
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px 6px 6px; border-radius: 999px;
  background: rgba(255, 255, 255, .97); border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 10px 26px -12px rgba(6, 3, 39, .7);
  font-family: var(--rv-font-ui); font-weight: 600; font-size: .74rem; color: var(--rv-text); white-space: nowrap;
  animation: rv-os-bob 4.5s var(--rv-ease) infinite; animation-delay: calc(var(--i, 0) * .35s);
}
.rv-os__node i { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: var(--rv-paper-2); color: var(--rv-accent); font-size: .9rem; }
.rv-os__node em { font-style: normal; }
@keyframes rv-os-bob {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 4px)); }
}

.rv-os__status { position: relative; height: 46px; margin-top: 18px; }
.rv-os__stat {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%) translateY(8px);
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px 9px 9px; border-radius: 999px;
  background: #fff; border: 1px solid var(--rv-line); box-shadow: var(--rv-shadow);
  font-family: var(--rv-font-ui); font-weight: 600; font-size: .86rem; color: var(--rv-text); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--rv-ease), transform .4s var(--rv-ease);
}
.rv-os__stat.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }
.rv-os__stat-ic { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(43, 217, 168, .16); color: #0f8f6b; font-size: .85rem; }
.rv-os__stat em { font-style: normal; }

@media (max-width: 600px) {
  .rv-os { max-width: 380px; }
  .rv-os__node { font-size: .7rem; padding: 5px 10px 5px 5px; }
  .rv-os__node i { width: 21px; height: 21px; font-size: .82rem; }
  .rv-os__node[data-i="2"] { left: 80% !important; }
  .rv-os__node[data-i="6"] { left: 20% !important; }
  .rv-os__stat { font-size: .8rem; }
}
@media (max-width: 400px) {
  .rv-os { max-width: 320px; }
  .rv-os__node { font-size: .64rem; }
  .rv-os__node i { width: 19px; height: 19px; font-size: .76rem; }
}

/* =========================================================================
   2 · TRUST — powered-by wordmark row
   ========================================================================= */
.rv-trust { padding-block: clamp(34px, 4vw, 54px); }
.rv-poweredby { margin-top: 34px; text-align: center; }
.rv-poweredby__label { display: block; font-family: var(--rv-font-ui); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--rv-on-ink-3); margin-bottom: 16px; }
.rv-poweredby__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.rv-wordmark {
  display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--rv-font-ui); font-weight: 600; font-size: .85rem; letter-spacing: .01em; color: var(--rv-on-ink-2);
  transition: color .2s, border-color .2s, background .2s, transform .2s var(--rv-ease);
}
.rv-wordmark:hover { color: #fff; border-color: rgba(255, 255, 255, .42); background: rgba(255, 255, 255, .1); transform: translateY(-2px); }

/* =========================================================================
   4 · OPERATING-SYSTEM PROCESS TIMELINE
   ========================================================================= */
/* A horizontal rail of numbered stage nodes feeds a single shared detail
   panel that lives in a permanently reserved zone. The panel is absolutely
   positioned, so swapping stages on hover/focus animates only opacity +
   transform — it never changes the document flow (zero CLS) and never grows
   a scroll container (no scrollbars). On small screens it collapses into a
   static vertical timeline where every stage shows its full detail inline. */
.rv-timeline {
  --rv-tl-node-h: 132px;
  --rv-tl-panel-h: 176px;
  list-style: none; margin: 52px 0 0; padding: 0 0 var(--rv-tl-panel-h);
  position: relative; display: flex; align-items: flex-start;
}
.rv-tl__step {
  position: static; flex: 1 1 0; min-width: 0; padding: 0 6px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  outline: none;
}
/* Override the generic stagger transform so an animating step never becomes a
   containing block for the absolutely-positioned panel. */
.rv-timeline > .rv-tl__step { transform: none; }

.rv-tl__node {
  position: relative; width: 100%; min-height: var(--rv-tl-node-h);
  display: flex; flex-direction: column; align-items: center;
}
.rv-tl__rail {
  position: absolute; top: 26px; left: 50%; width: 100%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, rgba(123, 140, 255, .55), rgba(123, 140, 255, .16));
}
.rv-tl__step:last-child .rv-tl__rail { display: none; }
.rv-tl__dot {
  position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; font-size: 1.28rem; color: #b9c5ff;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .14);
  transition: transform .3s var(--rv-ease), background .3s, border-color .3s, box-shadow .3s, color .3s;
}
.rv-tl__n {
  margin-top: 12px; font-family: var(--rv-font-display); font-weight: 700;
  font-size: .7rem; letter-spacing: .08em; color: var(--rv-on-ink-3);
  transition: color .3s var(--rv-ease);
}
.rv-tl__t {
  margin-top: 4px; font-family: var(--rv-font-ui); font-weight: 600;
  font-size: .82rem; color: var(--rv-on-ink); line-height: 1.25;
  transition: color .3s var(--rv-ease);
}

/* Shared detail panel — absolutely placed inside the reserved zone. */
.rv-tl__panel {
  position: absolute; left: 0; right: 0; top: var(--rv-tl-node-h); bottom: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 22px 26px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(123, 140, 255, .12), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 26px 60px -36px rgba(0, 0, 0, .85);
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px);
  transition: opacity .35s var(--rv-ease), transform .35s var(--rv-ease), visibility 0s linear .35s;
}
.rv-tl__phead { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; justify-content: center; }
.rv-tl__peyebrow {
  font-family: var(--rv-font-display); font-weight: 700; font-size: .66rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--rv-accent-ink);
}
.rv-tl__ptitle {
  font-family: var(--rv-font-display); font-weight: 700; font-size: 1.18rem;
  letter-spacing: -.01em; color: #fff;
}
.rv-tl__d { display: block; max-width: 620px; font-size: .96rem; line-height: 1.5; color: #e8e7f6; }
.rv-tl__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.rv-tl__auto {
  display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600;
  color: #cdd6ff; background: rgba(123, 140, 255, .16); border: 1px solid rgba(123, 140, 255, .3);
  padding: 5px 12px; border-radius: 999px;
}
.rv-tl__auto i { color: #aab7ff; }
.rv-tl__mod {
  font-family: var(--rv-font-ui); font-weight: 700; font-size: .62rem; letter-spacing: .08em;
  text-transform: uppercase; color: #fff;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  padding: 5px 11px; border-radius: 999px;
}

/* Active node appearance (direct hover/focus, plus the resting default). */
.rv-tl__step:hover .rv-tl__dot,
.rv-tl__step:focus-visible .rv-tl__dot,
.rv-tl__step:first-child .rv-tl__dot {
  transform: translateY(-4px); background: var(--rv-accent); border-color: var(--rv-accent); color: #fff;
  box-shadow: 0 16px 32px -12px rgba(59, 91, 255, .9);
}
.rv-tl__step:hover .rv-tl__t,
.rv-tl__step:focus-visible .rv-tl__t,
.rv-tl__step:first-child .rv-tl__t { color: #fff; }
.rv-tl__step:hover .rv-tl__n,
.rv-tl__step:focus-visible .rv-tl__n,
.rv-tl__step:first-child .rv-tl__n { color: var(--rv-accent-ink); }
.rv-tl__step:focus-visible .rv-tl__dot { outline: 2px solid var(--rv-accent-ink); outline-offset: 3px; }

/* Active panel (direct hover/focus, plus the resting default = stage 1). */
.rv-tl__step:hover .rv-tl__panel,
.rv-tl__step:focus-visible .rv-tl__panel,
.rv-tl__step:first-child .rv-tl__panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none; z-index: 2;
  transition: opacity .35s var(--rv-ease), transform .35s var(--rv-ease), visibility 0s;
}

/* When another node takes over, drop the stage-1 default so only one is active. */
.rv-timeline:has(.rv-tl__step:hover) .rv-tl__step:first-child:not(:hover) .rv-tl__dot,
.rv-timeline:has(.rv-tl__step:focus-visible) .rv-tl__step:first-child:not(:focus-visible) .rv-tl__dot {
  transform: none; background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .14);
  color: #b9c5ff; box-shadow: none;
}
.rv-timeline:has(.rv-tl__step:hover) .rv-tl__step:first-child:not(:hover) .rv-tl__t,
.rv-timeline:has(.rv-tl__step:focus-visible) .rv-tl__step:first-child:not(:focus-visible) .rv-tl__t { color: var(--rv-on-ink); }
.rv-timeline:has(.rv-tl__step:hover) .rv-tl__step:first-child:not(:hover) .rv-tl__n,
.rv-timeline:has(.rv-tl__step:focus-visible) .rv-tl__step:first-child:not(:focus-visible) .rv-tl__n { color: var(--rv-on-ink-3); }
.rv-timeline:has(.rv-tl__step:hover) .rv-tl__step:first-child:not(:hover) .rv-tl__panel,
.rv-timeline:has(.rv-tl__step:focus-visible) .rv-tl__step:first-child:not(:focus-visible) .rv-tl__panel {
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px); z-index: 1;
  transition: opacity .35s var(--rv-ease), transform .35s var(--rv-ease), visibility 0s linear .35s;
}

/* ---- Mobile: static vertical timeline, every stage open, zero h-overflow --- */
@media (max-width: 860px) {
  .rv-timeline {
    display: flex; flex-direction: column; align-items: stretch; gap: 14px;
    margin-inline: auto; max-width: 520px; padding-bottom: 0;
  }
  .rv-tl__step {
    flex: none; width: 100%; flex-direction: row; align-items: stretch;
    text-align: left; gap: 16px; padding: 0; position: relative;
  }
  .rv-tl__node { flex: none; width: 52px; min-height: 0; }
  .rv-tl__rail {
    top: 52px; left: 25px; width: 2px; height: calc(100% + 14px);
    background: linear-gradient(180deg, rgba(123, 140, 255, .55), rgba(123, 140, 255, .16));
  }
  .rv-tl__n { margin-top: 9px; }
  .rv-tl__t { display: none; }
  .rv-tl__step .rv-tl__dot {
    transform: none; background: rgba(123, 140, 255, .16);
    border-color: rgba(123, 140, 255, .4); color: #cdd6ff; box-shadow: none;
  }
  .rv-tl__panel {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; flex: 1 1 auto; min-width: 0; top: auto; bottom: auto;
    align-items: flex-start; justify-content: flex-start; text-align: left;
    gap: 9px; padding: 16px 18px; box-shadow: none;
  }
  .rv-tl__phead { justify-content: flex-start; }
  .rv-tl__d { max-width: none; }
  .rv-tl__meta { justify-content: flex-start; }
}

/* =========================================================================
   5 · PRODUCT MODULES — refined cards
   ========================================================================= */
.rv-module > *:not(.rv-module__glow) { position: relative; z-index: 1; }
.rv-module__glow {
  position: absolute; inset: 0; z-index: 0; opacity: 0; pointer-events: none;
  transition: opacity .35s var(--rv-ease);
  background: radial-gradient(420px 220px at 80% -10%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
}
.rv-module:hover .rv-module__glow { opacity: 1; }
.rv-module__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.rv-module__head .rv-module__ic { margin-bottom: 0; }
.rv-module__ai {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px;
  background: rgba(59, 91, 255, .08); border: 1px solid rgba(59, 91, 255, .18);
  font-family: var(--rv-font-ui); font-weight: 600; font-size: .68rem; color: var(--rv-accent-600); white-space: nowrap;
}
.rv-module__ai i { font-size: .85rem; }
.rv-module__benefit { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--rv-font-ui); font-weight: 600; font-size: .92rem; color: var(--rv-text); }
.rv-module__benefit i { color: var(--accent, var(--rv-accent)); font-size: 1.1rem; flex: none; }

/* =========================================================================
   6 · FLO AI — conversational panel
   ========================================================================= */
.rv-aip { display: grid; grid-template-columns: 300px 1fr; gap: 22px; margin-top: 48px; align-items: stretch; }
.rv-aip__prompts { display: flex; flex-direction: column; gap: 10px; }
.rv-aip__chip {
  display: inline-flex; align-items: center; gap: 10px; text-align: left; width: 100%;
  padding: 14px 16px; border-radius: 14px; cursor: pointer;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
  color: var(--rv-on-ink); font-family: var(--rv-font-ui); font-weight: 600; font-size: .92rem;
  transition: background .25s, border-color .25s, transform .2s var(--rv-ease);
}
.rv-aip__chip i { color: #8aa0ff; font-size: 1.1rem; flex: none; }
.rv-aip__chip span { min-width: 0; }
.rv-aip__chip:hover { background: rgba(255, 255, 255, .07); border-color: rgba(123, 140, 255, .5); }
.rv-aip__chip.is-active { background: rgba(59, 91, 255, .16); border-color: rgba(123, 140, 255, .7); }
.rv-aip__window {
  border-radius: var(--rv-r-lg); overflow: hidden; min-height: 360px;
  background: rgba(8, 5, 40, .55); border: 1px solid rgba(255, 255, 255, .12); box-shadow: var(--rv-shadow-lg);
  display: flex; flex-direction: column;
}
.rv-aip__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .03); }
.rv-aip__brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--rv-font-ui); font-weight: 700; color: #fff; font-size: .95rem; }
.rv-aip__avatar { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(135deg, #3b5bff, #7a5bff); color: #fff; font-size: 1rem; }
.rv-aip__tag { font-family: var(--rv-font-ui); font-weight: 700; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--rv-on-ink-3); border: 1px solid rgba(255, 255, 255, .16); padding: 3px 9px; border-radius: 999px; }
.rv-aip__thread { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.rv-aip__msg { display: flex; gap: 10px; max-width: 92%; animation: rv-aip-in .35s var(--rv-ease) both; }
.rv-aip__msg--user { align-self: flex-end; flex-direction: row-reverse; }
.rv-aip__msg--ai { align-self: flex-start; }
@keyframes rv-aip-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.rv-aip__ava { width: 28px; height: 28px; border-radius: 8px; flex: none; display: grid; place-items: center; background: linear-gradient(135deg, #3b5bff, #7a5bff); color: #fff; font-size: .9rem; }
.rv-aip__bubble { padding: 12px 15px; border-radius: 14px; font-size: .92rem; line-height: 1.5; }
.rv-aip__msg--user .rv-aip__bubble { background: var(--rv-accent); color: #fff; border-bottom-right-radius: 5px; }
.rv-aip__msg--ai .rv-aip__bubble { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); color: var(--rv-on-ink); border-bottom-left-radius: 5px; }
.rv-aip__steps { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.rv-aip__step { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--rv-on-ink-2); }
.rv-aip__step i { color: #5ff0c4; font-size: 1rem; }
.rv-aip__step.is-working { color: #cdd6ff; }
.rv-aip__step.is-working i { color: #8aa0ff; animation: rv-spin 1s linear infinite; }
@keyframes rv-spin { to { transform: rotate(360deg); } }
.rv-aip__result { margin-top: 12px; display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(43, 217, 168, .1); border: 1px solid rgba(43, 217, 168, .25); }
.rv-aip__result-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(43, 217, 168, .18); color: #5ff0c4; font-size: 1.1rem; flex: none; }
.rv-aip__result b { display: block; color: #fff; font-family: var(--rv-font-ui); font-size: .9rem; }
.rv-aip__result span { font-size: .82rem; color: var(--rv-on-ink-2); }
.rv-aip__cursor { display: inline-block; width: 2px; height: 1em; background: #8aa0ff; margin-left: 2px; vertical-align: -2px; animation: rv-blink 1s steps(2) infinite; }
@keyframes rv-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
@media (max-width: 860px) {
  .rv-aip { grid-template-columns: 1fr; }
  .rv-aip__prompts { flex-direction: row; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x proximity; }
  .rv-aip__chip { width: auto; white-space: nowrap; scroll-snap-align: start; }
  .rv-aip__chip span { white-space: nowrap; }
}

/* =========================================================================
   7 · INTEGRATIONS — categorized wall
   ========================================================================= */
.rv-intwall { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; max-width: none; margin-inline: 0; }
.rv-intcat { padding: 22px; border-radius: var(--rv-r-lg); background: #fff; border: 1px solid var(--rv-line); transition: box-shadow .3s var(--rv-ease), border-color .3s; }
.rv-intcat:hover { box-shadow: var(--rv-shadow); border-color: var(--rv-line-strong); }
.rv-intcat__label { font-family: var(--rv-font-ui); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rv-text-3); margin: 0 0 14px; }
.rv-intcat__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.rv-inttile { display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px 8px 8px; border-radius: 999px; background: var(--rv-paper-2); border: 1px solid var(--rv-line); font-family: var(--rv-font-ui); font-weight: 600; font-size: .86rem; color: var(--rv-text-2); transition: transform .2s var(--rv-ease), border-color .2s, color .2s, background .2s; }
.rv-inttile:hover { transform: translateY(-2px); border-color: var(--rv-line-strong); color: var(--rv-text); background: #fff; }
.rv-inttile__mark { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--rv-ink); color: #fff; font-family: var(--rv-font-display); font-weight: 700; font-size: .86rem; flex: none; }
.rv-inttile__name { white-space: nowrap; }

/* =========================================================================
   8 · ENTERPRISE — architecture
   ========================================================================= */
.rv-ent-sec { position: relative; overflow: hidden; }
.rv-ent-sec__grid {
  position: absolute; inset: 0; z-index: 0; opacity: .55; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(120% 85% at 50% 0%, #000, transparent 75%);
}
.rv-ent-sec .rv-wrap { position: relative; z-index: 1; }
.rv-ent-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
.rv-ent__intro .rv-shead__sub { max-width: 46ch; }
.rv-ent__arch { margin-top: 34px; display: flex; flex-direction: column; align-items: center; max-width: 420px; gap: 20px; }
.rv-ent__arch-node, .rv-ent__arch-core, .rv-ent__arch-leaf {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--rv-font-ui); font-weight: 600; font-size: .82rem;
  color: var(--rv-on-ink); padding: 10px 16px; border-radius: 12px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .14); position: relative;
}
.rv-ent__arch-node i, .rv-ent__arch-leaf i { color: #8aa0ff; }
.rv-ent__arch-node--api { color: #5ff0c4; }
.rv-ent__arch-node--api i { color: #5ff0c4; }
.rv-ent__arch-core { background: linear-gradient(135deg, rgba(59, 91, 255, .28), rgba(122, 91, 255, .22)); border-color: rgba(123, 140, 255, .55); color: #fff; font-weight: 700; }
.rv-ent__arch-core i { color: #c9d2ff; }
.rv-ent__arch-node::after, .rv-ent__arch-core::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 2px; height: 20px; background: linear-gradient(rgba(123, 140, 255, .55), rgba(123, 140, 255, .18)); }
.rv-ent__arch-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; }
.rv-ent__arch-row::before { content: ""; position: absolute; left: 17%; right: 17%; bottom: calc(100% + 9px); height: 2px; background: rgba(123, 140, 255, .38); }
.rv-ent__arch-leaf::before { content: ""; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); width: 2px; height: 9px; background: rgba(123, 140, 255, .38); }
.rv-ent-sec .rv-ent { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
.rv-ent-sec .rv-ent__card { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.rv-ent-sec .rv-ent__card:hover { background: rgba(255, 255, 255, .07); border-color: rgba(123, 140, 255, .4); box-shadow: none; }
.rv-ent-sec .rv-ent__ic { background: rgba(255, 255, 255, .08); color: #fff; }
.rv-ent-sec .rv-ent__t { color: var(--rv-on-ink); }
.rv-ent-sec .rv-ent__d { color: var(--rv-on-ink-2); }
@media (max-width: 900px) { .rv-ent-wrap { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 460px) { .rv-ent-sec .rv-ent { grid-template-columns: 1fr; } }

/* =========================================================================
   9 · COMPARISON — sticky col, tooltips, animated checks
   ========================================================================= */
.rv-compare td:first-child, .rv-compare th:first-child { position: sticky; left: 0; z-index: 2; background: #fff; }
.rv-compare thead th:first-child { background: var(--rv-paper-2); z-index: 3; }
.rv-compare tbody tr { transition: background .2s; }
.rv-compare tbody tr:hover > td { background: var(--rv-paper-2); }
.rv-compare tbody tr:hover > td.rv-compare__hl { background: rgba(59, 91, 255, .09); }
.rv-compare__cap-name { display: inline-flex; align-items: center; gap: 7px; }
.rv-compare__info { position: relative; display: inline-grid; place-items: center; color: var(--rv-text-3); cursor: help; }
.rv-compare__info i { font-size: 1rem; }
.rv-compare__tip {
  position: absolute; bottom: calc(100% + 8px); left: -4px; width: max-content; max-width: 220px;
  padding: 9px 12px; border-radius: 10px; background: var(--rv-ink); color: #fff;
  font-size: .76rem; line-height: 1.4; font-weight: 500; letter-spacing: 0; text-transform: none; text-align: left;
  box-shadow: var(--rv-shadow-lg); opacity: 0; transform: translateY(4px); pointer-events: none;
  transition: opacity .2s var(--rv-ease), transform .2s var(--rv-ease); z-index: 10;
}
.rv-compare__info:hover .rv-compare__tip, .rv-compare__info:focus-visible .rv-compare__tip { opacity: 1; transform: translateY(0); }
.rv-compare .rv-yes { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(18, 168, 119, .12); color: #12a877; font-size: 1rem; }
.rv-compare .rv-yes i { transform: scale(0); transition: transform .4s var(--rv-ease); }
.rv-compare-wrap.is-in .rv-yes i { transform: scale(1); }

/* =========================================================================
   10 · METRICS
   ========================================================================= */
@media (max-width: 480px) {
  .rv-metrics { grid-auto-flow: column; grid-auto-columns: 72%; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding-bottom: 8px; }
  .rv-metric { scroll-snap-align: center; }
}

/* =========================================================================
   11 · STORE HEALTH AUDIT — animated bar fill
   ========================================================================= */
.rv-toolstrip__bar span { width: 0; transition: width 1.1s var(--rv-ease); }
.rv-toolstrip.is-in .rv-toolstrip__bar span { width: var(--w, 0); }

/* =========================================================================
   12 · CUSTOMER SUCCESS
   ========================================================================= */
.rv-success { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.rv-success__card { display: flex; flex-direction: column; padding: 28px; border-radius: var(--rv-r-lg); background: #fff; border: 1px solid var(--rv-line); transition: transform .3s var(--rv-ease), box-shadow .3s; }
.rv-success__card:hover { transform: translateY(-4px); box-shadow: var(--rv-shadow); }
.rv-success__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--rv-line); }
.rv-success__logo { height: 28px; width: auto; max-width: 60%; object-fit: contain; object-position: left center; filter: brightness(0); opacity: .72; transition: opacity .25s; }
.rv-success__card:hover .rv-success__logo { opacity: 1; }
.rv-success__tag { flex: none; font-family: var(--rv-font-ui); font-weight: 700; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--rv-accent-600); background: rgba(59, 91, 255, .08); border: 1px solid rgba(59, 91, 255, .18); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.rv-success__body { margin: 0; display: flex; flex-direction: column; }
.rv-success__body dt { font-family: var(--rv-font-ui); font-weight: 700; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--rv-text-3); margin-top: 16px; }
.rv-success__body dt:first-child { margin-top: 0; }
.rv-success__body dd { margin: 5px 0 0; color: var(--rv-text-2); font-size: .92rem; line-height: 1.5; }
.rv-success__metric { margin-top: auto; padding-top: 22px; }
.rv-success__num { display: inline-block; font-family: var(--rv-font-display); font-weight: 700; font-size: .96rem; letter-spacing: .01em; color: var(--rv-text-3); border: 1px dashed var(--rv-line-strong); border-radius: 8px; padding: 4px 10px; }
.rv-success__mlabel { display: block; margin-top: 8px; font-size: .85rem; color: var(--rv-text-2); }
@media (max-width: 880px) { .rv-success { grid-template-columns: 1fr; } }

/* =========================================================================
   13 · FINAL CTA — animated background
   ========================================================================= */
.rv-cta__field { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; border-radius: inherit; }
.rv-cta__field::before, .rv-cta__field::after { content: ""; position: absolute; border-radius: 50%; filter: blur(45px); will-change: transform; }
.rv-cta__field::before { width: 420px; height: 420px; left: -80px; top: -130px; background: radial-gradient(closest-side, rgba(59, 91, 255, .5), transparent 70%); animation: rv-cta-float1 16s ease-in-out infinite alternate; }
.rv-cta__field::after { width: 360px; height: 360px; right: -60px; bottom: -130px; background: radial-gradient(closest-side, rgba(43, 217, 168, .3), transparent 70%); animation: rv-cta-float2 19s ease-in-out infinite alternate; }
@keyframes rv-cta-float1 { to { transform: translate(60px, 44px) scale(1.16); } }
@keyframes rv-cta-float2 { to { transform: translate(-50px, -34px) scale(1.1); } }
.rv-cta__box .rv-cta__inner { position: relative; z-index: 1; }

/* =========================================================================
   REDUCED MOTION — refinement layer
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  .rv-os__link, .rv-os__halo, .rv-os__hub::after, .rv-os__node { animation: none; }
  .rv-os__pulse { display: none; }
  .rv-os__stat { transition: none; }
  .rv-tl__panel, .rv-tl__dot { transition: none; }
  .rv-toolstrip__bar span { transition: none; width: var(--w, 0); }
  .rv-compare .rv-yes i { transform: scale(1); transition: none; }
  .rv-aip__msg, .rv-aip__cursor { animation: none; }
  .rv-aip__step.is-working i { animation: none; }
  .rv-cta__field::before, .rv-cta__field::after { animation: none; }
  [data-rv-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =========================================================================
   POLISH PASS — microinteractions, depth & timing refinement (v3)
   Tasteful, GPU-transform-only. Strengthens existing components without
   changing layout. All motion guarded by prefers-reduced-motion below.
   ========================================================================= */

/* Buttons — add a crisp press state under the existing lift, and a softer,
   more confident primary shadow on hover. */
.rv-btn--primary:active,
.rv-btn--ink:active,
.rv-btn--ghost:active { transform: translateY(0); transition-duration: .08s; }
.rv-btn--primary { box-shadow: 0 10px 22px -14px rgba(59, 91, 255, .85); }
.rv-btn--primary:hover { box-shadow: 0 16px 30px -14px rgba(59, 91, 255, .95); }

/* Text links — make the arrow nudge feel intentional everywhere. */
.rv-textlink:active i { transform: translateX(2px); }

/* Nav links — subtle press + active accent for a more premium feel. */
.rv-nav__link:active { transform: translateY(1px); }

/* Powered-by wordmarks — gentler, springier hover already exists; just
   tighten the inactive state contrast a touch for legibility. */
.rv-poweredby__row .rv-wordmark { letter-spacing: .015em; }

/* Integrations — on hover, "light up" the letter-mark as if it connects into
   the platform. Pure transform/color; no lines, so zero overflow/CLS risk. */
.rv-inttile__mark { transition: background .28s var(--rv-ease), box-shadow .28s var(--rv-ease), transform .28s var(--rv-ease); }
.rv-inttile:hover .rv-inttile__mark {
  background: linear-gradient(135deg, var(--rv-accent), #6f5bff);
  box-shadow: 0 8px 18px -8px rgba(59, 91, 255, .75);
  transform: scale(1.06);
}
.rv-intcat { transition: box-shadow .3s var(--rv-ease), border-color .3s var(--rv-ease), transform .3s var(--rv-ease); }
.rv-intcat:hover { transform: translateY(-2px); }

/* Comparison — deeper, calmer shadow + readable brand column gradient. */
.rv-compare-wrap { box-shadow: var(--rv-shadow-lg); }
.rv-compare__brand { background: linear-gradient(180deg, var(--rv-accent), var(--rv-accent-600)) !important; box-shadow: inset 0 -2px 0 rgba(0,0,0,.12); }

/* Customer success — elevate cards with an accent reveal line, like modules. */
.rv-success__card { position: relative; overflow: hidden; }
.rv-success__card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--rv-accent), #6f5bff);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--rv-ease);
}
.rv-success__card:hover { box-shadow: var(--rv-shadow-lg); }
.rv-success__card:hover::after { transform: scaleX(1); }

/* Enterprise architecture diagram — gentle, ambient glow on the core so the
   "one platform" node feels alive. Opacity-only (GPU compositable). */
.rv-ent__arch-core { overflow: visible; }
.rv-ent__arch-core::before {
  content: ""; position: absolute; inset: -10px; z-index: -1; border-radius: inherit;
  background: radial-gradient(closest-side, rgba(91, 108, 255, .5), transparent 75%);
  opacity: .25; will-change: opacity; animation: rv-ent-core-pulse 4.5s var(--rv-ease) infinite;
}
@keyframes rv-ent-core-pulse {
  0%, 100% { opacity: .15; }
  50%      { opacity: .6; }
}

/* Hero OS — slightly richer data pulse and a calmer halo cadence. */
.rv-os__pulse { box-shadow: 0 0 8px 1px rgba(123, 140, 255, .55); }
.rv-os__stat { transition: opacity .45s var(--rv-ease), transform .55s var(--rv-ease); }

@media (prefers-reduced-motion: reduce) {
  .rv-btn--primary:active, .rv-btn--ink:active, .rv-btn--ghost:active,
  .rv-nav__link:active, .rv-textlink:active i { transition: none; }
  .rv-inttile__mark, .rv-intcat, .rv-success__card, .rv-success__card::after { transition: none; }
  .rv-ent__arch-core::before { animation: none; opacity: .3; }
  .rv-os__pulse { box-shadow: none; }
}
