/* ==========================================================================
   RADIANT OPTIMIZER — RADIANT VELOCITY
   Homepage art direction derived from the Radiant mark:
   cobalt capsules, ice-white double lines, and a sharp roadway axis.
   ========================================================================== */

@font-face {
  font-family: "Paperlogy";
  src: url("../fonts/Paperlogy-SemiBold.ttf") format("truetype");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("../fonts/Paperlogy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("../fonts/Paperlogy-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Paperlogy";
  src: url("../fonts/Paperlogy-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ro-blue: #1261ff;
  --ro-blue-deep: #073dc6;
  --ro-blue-dark: #061946;
  --ro-blue-ink: #07112a;
  --ro-ice: #dbe9ff;
  --ro-sky: #72a8ff;
  --ro-white: #ffffff;
  --ro-paper: #f6f8fe;
  --ro-paper-blue: #eaf1ff;
  --ro-ink: #0a1531;
  --ro-copy: #4d5b73;
  --ro-line: rgba(10, 34, 83, 0.12);
  --ro-dark-line: rgba(255, 255, 255, 0.13);
  /* AAA product type: Plus Jakarta Sans (display/UI) + Inter (body).
     Matches the site-wide stack in bold-readable.css. */
  --ro-display: "Plus Jakarta Sans", "Sora", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --ro-body: "Inter", "Manrope", "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  --ro-ui: "Plus Jakarta Sans", "Inter", "Segoe UI", system-ui, sans-serif;
  --ro-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ro-blue-lite: #6ba3ff;
  --ro-shine-hi: #f0f6ff;

  --ro-radius-sm: 14px;
  --ro-radius: 24px;
  --ro-radius-lg: 36px;
  --ro-radius-xl: 52px;
  --ro-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ro-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-height: 90px;
  --font-primary: var(--ro-ui);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
  background: var(--ro-paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ro-ink);
  background: var(--ro-paper);
  font-family: var(--ro-body);
  font-size: 16.5px;
  font-weight: 450;
  line-height: 1.7;
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: proportional-nums;
  font-feature-settings: "ss01" 1, "cv11" 1, "kern" 1;
}


body::selection, ::selection { color: #fff; background: var(--ro-blue); }

body, button, input, textarea, select { font-family: var(--ro-body); }

[data-count],
.ro-plan-price strong,
.ro-lifetime-price > strong,
.ro-capability-number,
.ro-chart-track b,
.ro-console-footer,
.ro-console-metric b,
.ro-results-stat b,
.ro-latency-bar b,
.ro-fps-state-label,
.ro-ownership-bar b,
.ro-ownership-scale b {
  font-variant-numeric: tabular-nums lining-nums;
}


h1, h2, h3, h4, p, blockquote { margin-top: 0; }
a { color: inherit; text-decoration: none; }
button, summary { -webkit-tap-highlight-color: transparent; }
img, video, svg { display: block; max-width: 100%; }

svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible {
  outline: 3px solid var(--ro-sky);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 12px 18px;
  border-radius: 12px;
  color: #fff;
  background: var(--ro-blue);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.ro-shell {
  position: relative;
  width: min(1720px, calc(100% - 32px));
  margin-inline: auto;
}

.ro-section { position: relative; padding: clamp(108px, 11vw, 176px) 0; }

.ro-scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10000;
  height: 3px;
  pointer-events: none;
}
.ro-scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #fff, #8db9ff, var(--ro-blue));
  box-shadow: 0 0 14px rgba(114, 168, 255, .55);
}

/* Navigation -------------------------------------------------------------- */

.nav-container {
  height: var(--nav-height);
  transition: height .4s var(--ro-ease), background .4s ease !important;
}

.nav-container::before {
  opacity: 1 !important;
  background: linear-gradient(180deg, rgba(5, 16, 45, .82), rgba(5, 16, 45, .2) 72%, transparent) !important;
}

.nav-container.rnav-scrolled {
  height: 76px;
  background: rgba(5, 16, 45, .66);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-container .nav,
nav.nav {
  max-width: 1540px !important;
  height: 100%;
  padding: 14px 28px !important;
  gap: 22px !important;
}

.ro-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.ro-brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 30px rgba(0,0,0,.18);
  overflow: hidden;
}
.ro-brand-mark::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 11px;
}
.ro-brand-mark img { width: 34px; height: 34px; object-fit: contain; }
.ro-brand-name { display: flex; flex-direction: column; line-height: .95; }
.ro-brand-name strong { font-size: .93rem; font-weight: 800; letter-spacing: -.02em; }
.ro-brand-name small { margin-top: 5px; color: rgba(255,255,255,.53); font-size: .56rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }

.nav-container .nav-tab-container,
.nav-container .tab-container.nav-tab-container {
  padding: 5px !important;
  border-color: rgba(255,255,255,.11) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.065) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 40px rgba(0,0,0,.16) !important;
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
}

.nav-container .nav-tab {
  padding: 9px 13px !important;
  border-radius: 13px !important;
  color: rgba(255,255,255,.62) !important;
  font-family: var(--ro-body) !important;
  font-size: .73rem !important;
  font-weight: 600 !important;
  letter-spacing: -.01em !important;
}
.nav-container .nav-tab:hover { color: #fff !important; background: rgba(255,255,255,.075) !important; }
.nav-container .nav-tab.active {
  color: var(--ro-ink) !important;
  background: linear-gradient(180deg, #fff, #e8f0ff) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.2), inset 0 1px 0 #fff !important;
}

.nav-container .nav-auth-btn,
.nav-container .nav-dashboard-btn {
  min-height: 42px;
  padding: 11px 16px !important;
  border-radius: 14px !important;
  font-family: var(--ro-body) !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
}
.nav-container .nav-login-btn { border-color: rgba(255,255,255,.14) !important; background: rgba(255,255,255,.055) !important; }
.nav-container .nav-signup-btn,
.nav-container .nav-dashboard-btn {
  color: var(--ro-ink) !important;
  border-color: rgba(255,255,255,.72) !important;
  background: linear-gradient(180deg, #fff, #e7efff) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.18) !important;
}

/* Shared typography and actions ------------------------------------------ */

.ro-overline,
.ro-kicker,
.ro-plan-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ro-blue);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.ro-section-intro h2,
.ro-results-copy h2,
.ro-faq-heading h2,
.ro-closing h2 {
  margin: 20px 0 0;
  color: var(--ro-ink);
  font-family: var(--ro-display);
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.02;
  text-wrap: balance;
}

/* Emphasis — solid lighter royal blue, thick weight, no glow */
h1 em, h2 em {
  font-style: normal;
  font-weight: 800;
  color: #5b94ff;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
  animation: none;
}


.ro-section-intro > p,
.ro-section-intro-split > p,
.ro-results-copy > p,
.ro-faq-heading > p,
.ro-closing-inner > p {
  color: var(--ro-copy);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.8;
}

.ro-section-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .65fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 78px;
}
.ro-section-intro-split > p { margin: 0 0 4px; }

.ro-section-intro-center {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}
.ro-section-intro-center .ro-overline { margin-inline: auto; }
.ro-section-intro-center > p { max-width: 680px; margin: 28px auto 0; }

.ro-button {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-size: .91rem;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .32s var(--ro-ease), box-shadow .32s ease, background .32s ease, border-color .32s ease;
}
.ro-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,.26) 47%, transparent 73%);
  transform: translateX(-130%);
  transition: transform .7s var(--ro-ease);
}
.ro-button > * { position: relative; z-index: 1; }
.ro-button svg { width: 19px; height: 19px; transition: transform .3s var(--ro-ease); }
.ro-button:hover { transform: translateY(-3px); }
.ro-button:hover::before { transform: translateX(130%); }
.ro-button:hover svg { transform: translateX(3px); }
.ro-button:active { transform: translateY(-1px) scale(.985); }

.ro-button-primary {
  color: #fff;
  background: linear-gradient(145deg, #2974ff, #0b4ee7 65%, #073bbf);
  border-color: rgba(163,195,255,.42);
  box-shadow: 0 18px 42px rgba(0,55,190,.32), inset 0 1px 0 rgba(255,255,255,.28);
}
.ro-button-primary:hover { box-shadow: 0 22px 52px rgba(0,55,190,.42), inset 0 1px 0 rgba(255,255,255,.34); }

.ro-button-glass {
  color: var(--ro-ink);
  border-color: rgba(10,35,85,.13);
  background: rgba(255,255,255,.63);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 34px rgba(12,42,101,.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.ro-button-white { color: var(--ro-blue-deep); background: #fff; border-color: rgba(255,255,255,.7); box-shadow: 0 18px 42px rgba(0,31,120,.22), inset 0 -2px 0 rgba(9,69,197,.08); }
.ro-button-outline-light { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.ro-button-quiet { min-height: 48px; color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.055); }
.ro-button-full { width: 100%; }

.ro-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ro-blue);
  font-size: .9rem;
  font-weight: 800;
}
.ro-text-link svg { width: 18px; transition: transform .3s var(--ro-ease); }
.ro-text-link:hover svg { transform: translateX(5px); }

/* Hero ------------------------------------------------------------------- */

.ro-hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(150px, 15vh, 190px) 0 48px;
  color: #fff;
  background:
    radial-gradient(circle at 70% 38%, rgba(31,105,255,.24), transparent 34%),
    linear-gradient(145deg, #07132e 0%, #071c4d 52%, #061a45 100%);
  isolation: isolate;
  overflow: hidden;
}

.ro-hero-atmosphere,
.ro-pricing-atmosphere { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ro-ambient { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .58; }
.ro-ambient-one { top: -22%; right: -9%; width: 62vw; height: 62vw; background: radial-gradient(circle, rgba(41,116,255,.32), rgba(41,116,255,.05) 50%, transparent 70%); animation: roBreathe 9s ease-in-out infinite; }
.ro-ambient-two { bottom: -40%; left: -22%; width: 54vw; height: 54vw; background: radial-gradient(circle, rgba(90,143,255,.16), transparent 68%); animation: roBreathe 12s ease-in-out -3s infinite reverse; }

.ro-logo-road {
  position: absolute;
  width: 1150px;
  height: 420px;
  border: 1px solid rgba(185,211,255,.15);
  border-radius: 210px;
  transform: rotate(-17deg);
}
.ro-logo-road::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.075); border-radius: inherit; }
.ro-logo-road-a { top: -230px; left: -290px; }
.ro-logo-road-b { right: -530px; bottom: -230px; transform: rotate(-17deg) scale(.8); }
.ro-grain {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.ro-hero-grid {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(400px, .72fr) minmax(640px, 1.35fr);
  gap: clamp(22px, 2.5vw, 44px);
  align-items: center;
  min-width: 0;
}


.ro-hero-copy { position: relative; z-index: 3; min-width: 0; }
.ro-kicker {
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(219,233,255,.72);
  letter-spacing: .15em;
}
.ro-kicker-pulse { width: 7px; height: 7px; border-radius: 50%; background: #85b2ff; box-shadow: 0 0 0 5px rgba(133,178,255,.11); animation: roPulse 2.8s ease-in-out infinite; }

.ro-hero h1 {
  margin: 0;
  font-family: var(--ro-display);
  font-size: clamp(3.75rem, 5.2vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -.048em;
  line-height: .94;
  text-wrap: balance;
}
.ro-hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: #7eb0ff;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
  animation: none;
}
.ro-hero h1 em::before,
.ro-hero h1 em::after {
  content: none;
  display: none;
}


.ro-hero-lede { max-width: 630px; margin: 32px 0 0; color: rgba(232,240,255,.65); font-size: clamp(1rem, 1.23vw, 1.15rem); line-height: 1.8; }
.ro-hero-lede strong { color: #fff; font-weight: 700; }
.ro-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.ro-hero .ro-button-glass { color: #fff; border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 40px rgba(0,0,0,.12); }

.ro-hero-assurance { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: rgba(219,233,255,.48); font-size: .71rem; font-weight: 600; }
.ro-hero-assurance span { display: inline-flex; align-items: center; gap: 7px; }
.ro-hero-assurance svg { width: 14px; height: 14px; color: #94baff; stroke-width: 2.4; }

.ro-hero-product {
  position: relative;
  width: 100%;
  max-width: 1520px;
  justify-self: end;
  perspective: 1400px;
}

.ro-product-orbit { position: absolute; z-index: -1; border: 1px solid rgba(154,190,255,.16); border-radius: 50%; }
.ro-product-orbit-one { inset: -18% -9%; transform: rotate(-7deg); animation: roOrbit 18s linear infinite; }
.ro-product-orbit-two { inset: -8% -18%; transform: rotate(16deg); border-color: rgba(154,190,255,.09); animation: roOrbit 25s linear infinite reverse; }

.ro-app-frame {
  position: relative;
  width: 100%;
  border-radius: 29px;
  background: #080c15;
  box-shadow: 0 45px 110px rgba(0,5,26,.48), 0 0 0 8px rgba(255,255,255,.025);
  transform: rotateY(-3deg) rotateX(1.5deg);
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
  overflow: hidden;
}
.ro-app-frame-top { display: flex; height: 52px; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.09); background: rgba(7,16,39,.84); }
.ro-app-identity { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.8); font-size: .72rem; font-weight: 700; }
.ro-app-identity img { width: 26px; height: 26px; }
.ro-window-controls { display: flex; gap: 7px; }
.ro-window-controls i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18); }
.ro-app-viewport { position: relative; aspect-ratio: 1.6; overflow: hidden; background: #080c15; }
.ro-app-viewport img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.ro-hero-video { position: relative; width: 100%; height: auto; display: block; z-index: 0; }
.ro-video-mute-btn { position: absolute; z-index: 5; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); background: rgba(7,16,39,.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: rgba(255,255,255,.85); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; transition: background .2s, border-color .2s, transform .15s; }
.ro-video-mute-btn:hover { background: rgba(18,97,255,.28); border-color: rgba(255,255,255,.3); transform: scale(1.08); }
.ro-video-mute-btn:active { transform: scale(.94); }
.ro-video-mute-btn svg { width: 16px; height: 16px; pointer-events: none; }
.ro-app-viewport::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.075), transparent 25% 72%, rgba(54,124,255,.08)); pointer-events: none; }
.ro-scan-line { position: absolute; z-index: 2; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(119,173,255,.75), transparent); box-shadow: 0 0 24px rgba(70,139,255,.45); animation: roScan 7s ease-in-out infinite; }

.ro-float-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 178px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.065));
  box-shadow: 0 22px 50px rgba(0,7,31,.34), inset 0 1px 0 rgba(255,255,255,.17);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
}
.ro-float-chip-top { top: -40px; right: 7%; animation: roFloat 5s ease-in-out infinite; }
.ro-float-chip-bottom { bottom: -36px; left: 4%; animation: roFloat 6s ease-in-out -2.4s infinite; }
.ro-float-icon { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(147,188,255,.25); border-radius: 12px; color: #a6c6ff; background: rgba(68,130,255,.14); }
.ro-float-icon svg { width: 20px; }
.ro-float-chip > span:last-child { display: flex; flex-direction: column; line-height: 1.22; }
.ro-float-chip small { color: rgba(255,255,255,.43); font-size: .6rem; }
.ro-float-chip strong { margin-top: 3px; color: #fff; font-size: .78rem; }

.ro-proof-rail {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(84px, 10vh, 120px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 26px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  overflow: hidden;
}
.ro-proof-rail > div { position: relative; display: flex; min-height: 104px; flex-direction: column; justify-content: center; padding: 20px 30px; }
.ro-proof-rail > div + div { border-left: 1px solid rgba(255,255,255,.09); }
.ro-proof-rail strong { color: #fff; font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.ro-proof-rail span { margin-top: 8px; color: rgba(219,233,255,.45); font-size: .7rem; font-weight: 600; }

/* Calibration ------------------------------------------------------------- */

.ro-premise { background: var(--ro-paper); }

.ro-rent-owner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 56px;
}
.ro-rent-card, .ro-own-card {
  position: relative;
  padding: 30px clamp(22px, 3vw, 34px);
  border-radius: 28px;
  overflow: hidden;
}
.ro-rent-card {
  border: 1px solid rgba(220, 38, 38, .18);
  background: linear-gradient(165deg, #fff5f5 0%, #ffe8e8 55%, #ffdede 100%);
  box-shadow: 0 18px 40px rgba(185, 28, 28, .08);
}
.ro-own-card {
  color: #fff;
  border: 1px solid rgba(153,190,255,.32);
  background: radial-gradient(circle at 90% 0%, rgba(65,137,255,.4), transparent 38%), linear-gradient(145deg, #0b50dc 0%, #063ab2 60%, #062b88 100%);
  box-shadow: 0 30px 70px rgba(6,56,169,.24);
}
/* Soft diagonal shine sweep across the blue "own" card every 3s */
.ro-own-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, .08) 45%,
    rgba(255, 255, 255, .42) 50%,
    rgba(255, 255, 255, .08) 55%,
    transparent 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 120% 0;
  animation: roOwnShine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.ro-own-card > * { position: relative; z-index: 2; }
@keyframes roOwnShine {
  0%, 55% { background-position: 120% 0; opacity: 0; }
  60% { opacity: 1; }
  78% { background-position: -20% 0; opacity: 1; }
  88%, 100% { background-position: -40% 0; opacity: 0; }
}
.ro-rent-icon, .ro-own-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
}
.ro-rent-icon { color: #e11d48; background: rgba(225, 29, 72, .12); }
.ro-rent-icon svg { width: 22px; opacity: .9; animation: roRentPulse 2.4s ease-in-out infinite; }
.ro-own-icon { color: #fff; background: rgba(255,255,255,.14); }
.ro-own-icon svg { width: 22px; }
@keyframes roRentPulse { 0%,100% { opacity: .5; } 50% { opacity: 1; } }
.ro-rent-label { display: block; margin-bottom: 14px; color: #b91c1c; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ro-own-card .ro-rent-label { color: #c9ddff; }
.ro-rent-card strong, .ro-own-card strong { display: flex; align-items: baseline; gap: 10px; font-size: clamp(2.1rem, 3.2vw, 2.7rem); font-weight: 900; letter-spacing: -.05em; }
.ro-rent-card strong { color: #be123c; }
.ro-own-card strong { color: #fff; }
.ro-rent-card strong small, .ro-own-card strong small { font-size: .64rem; font-weight: 700; letter-spacing: 0; text-transform: none; }
.ro-rent-card strong small { color: #e11d48; }
.ro-own-card strong small { color: rgba(255,255,255,.6); }
.ro-rent-card p, .ro-own-card p { margin: 16px 0 0; font-size: .82rem; line-height: 1.65; }
.ro-rent-card p { color: #9f1239; }
.ro-own-card p { color: rgba(230,239,255,.78); }
.ro-rent-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ro-rent-vs span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(251, 146, 60, .35);
  border-radius: 50%;
  color: #ea580c;
  background: linear-gradient(160deg, #fff7ed 0%, #ffedd5 100%);
  box-shadow: 0 10px 24px rgba(234, 88, 12, .12);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .05em;
  animation: roVsPulse 2.6s ease-in-out infinite;
}
@keyframes roVsPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }


.ro-calibration-stage {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(8,44,113,.12);
  border-radius: 40px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 40px 90px rgba(16,58,132,.1), inset 0 1px 0 #fff;
}
.ro-calibration-system {
  position: relative;
  min-height: 590px;
  padding: 28px;
  border-radius: 29px;
  color: #fff;
  background: radial-gradient(circle at 50% 38%, rgba(35,101,229,.3), transparent 34%), linear-gradient(145deg, #081b42, #071530 76%);
  overflow: hidden;
}
.ro-fps-video-panel { display: flex; min-height: 0; aspect-ratio: 16 / 9; padding: 0; background: #050b18; }
.ro-fps-comparison-video { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; pointer-events: none; user-select: none; }
.ro-calibration-system::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: radial-gradient(rgba(133,177,255,.35) .7px, transparent .7px); background-size: 18px 18px; mask-image: linear-gradient(to bottom, #000, transparent 70%); }
.ro-fps-video-panel::before { display: none; }
.ro-fps-comparison-copy { position: relative; display: grid; grid-template-columns: 1fr; gap: 12px; padding: clamp(18px, 2.4vw, 34px); align-content: center; }
.ro-fps-state { position: relative; padding: clamp(18px, 2vw, 26px); border: 1px solid; border-radius: 22px; overflow: hidden; }
.ro-fps-state::after { content: ""; position: absolute; width: 180px; height: 180px; right: -80px; bottom: -110px; border: 1px solid currentColor; border-radius: 50%; opacity: .1; box-shadow: 0 0 0 24px currentColor; pointer-events: none; }
.ro-fps-state-off { color: #d62f3d; border-color: rgba(214,47,61,.22); background: linear-gradient(135deg, rgba(255,241,242,.96), rgba(255,248,248,.72)); }
.ro-fps-state-on { color: #0a9c5b; border-color: rgba(10,156,91,.24); background: linear-gradient(135deg, rgba(237,255,247,.98), rgba(247,255,251,.76)); box-shadow: 0 18px 44px rgba(10,156,91,.08); }
.ro-fps-state-label { position: relative; z-index: 1; display: flex; align-items: center; gap: 9px; font-family: var(--ro-ui); text-transform: uppercase; }
.ro-fps-state-label i { width: 9px; height: 9px; flex: 0 0 9px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 6px color-mix(in srgb, currentColor 12%, transparent); }
.ro-fps-state-label span { font-size: .76rem; font-weight: 900; letter-spacing: .1em; }
.ro-fps-state-label small { margin-left: auto; color: currentColor; opacity: .6; font-size: .58rem; font-weight: 800; letter-spacing: .08em; }
.ro-fps-state h3 { position: relative; z-index: 1; margin: 15px 0 7px; color: #0a1531; font-family: var(--ro-display); font-size: clamp(1.25rem, 1.8vw, 1.7rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.08; }
.ro-fps-state p { position: relative; z-index: 1; margin: 0; color: #52617a; font-size: .78rem; line-height: 1.65; }
.ro-fps-state ul { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 14px 0 0; list-style: none; }
.ro-fps-state li { padding: 6px 9px; border: 1px solid color-mix(in srgb, currentColor 20%, transparent); border-radius: 9px; color: currentColor; background: color-mix(in srgb, currentColor 6%, white); font-size: .61rem; font-weight: 800; }
.ro-fps-vs { position: relative; z-index: 2; display: grid; height: 0; place-items: center; }
.ro-fps-vs span { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(10,34,83,.12); border-radius: 50%; color: #66758d; background: #fff; box-shadow: 0 10px 25px rgba(16,58,132,.12); font-size: .6rem; font-weight: 900; }
.ro-fps-disclaimer { margin: 4px 4px 0; color: #77859b; font-size: .63rem; line-height: 1.55; }

/* FPS comparison activation sequence ------------------------------------ */
.ro-fps-video-panel { clip-path: inset(0 100% 0 0 round 29px); transition: clip-path 1.05s var(--ro-ease), box-shadow .8s ease; }
.ro-calibration-stage.is-visible .ro-fps-video-panel { clip-path: inset(0 0 0 0 round 29px); box-shadow: 0 28px 70px rgba(9,47,117,.2); }
.ro-fps-state { opacity: 0; transform: translateX(26px) scale(.975); transition: opacity .7s ease, transform .85s var(--ro-ease), box-shadow .45s ease; }
.ro-calibration-stage.is-visible .ro-fps-state-off { opacity: 1; transform: none; transition-delay: .22s; }
.ro-calibration-stage.is-visible .ro-fps-state-on { opacity: 1; transform: none; transition-delay: .48s; animation: roOnPanelPulse 4.8s 1.4s ease-in-out infinite; }
.ro-fps-vs { opacity: 0; scale: .65; transition: opacity .45s ease .72s, scale .65s cubic-bezier(.34,1.56,.64,1) .72s; }
.ro-calibration-stage.is-visible .ro-fps-vs { opacity: 1; scale: 1; }
.ro-fps-disclaimer { opacity: 0; translate: 0 8px; transition: opacity .55s ease .85s, translate .7s var(--ro-ease) .85s; }
.ro-calibration-stage.is-visible .ro-fps-disclaimer { opacity: 1; translate: 0 0; }
.ro-calibration-stage.is-visible .ro-fps-state-off .ro-fps-state-label i { animation: roOffSignal 2.2s ease-in-out infinite; }
.ro-calibration-stage.is-visible .ro-fps-state-on .ro-fps-state-label i { animation: roOnSignal 1.8s ease-in-out infinite; }
.ro-fps-state-on li { opacity: 0; transform: translateY(7px); }
.ro-calibration-stage.is-visible .ro-fps-state-on li { animation: roMetricIn .5s var(--ro-ease) forwards; }
.ro-calibration-stage.is-visible .ro-fps-state-on li:nth-child(1) { animation-delay: .82s; }
.ro-calibration-stage.is-visible .ro-fps-state-on li:nth-child(2) { animation-delay: .94s; }
.ro-calibration-stage.is-visible .ro-fps-state-on li:nth-child(3) { animation-delay: 1.06s; }
.ro-calibration-heading { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding-bottom: 21px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ro-calibration-heading span { color: rgba(255,255,255,.78); font-size: .76rem; font-weight: 700; }
.ro-calibration-heading i { display: inline-flex; align-items: center; gap: 7px; color: #9ec0ff; font-size: .62rem; font-style: normal; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.ro-calibration-heading i::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #79a9ff; box-shadow: 0 0 0 5px rgba(121,169,255,.09); }

.ro-hardware-core { position: relative; z-index: 1; display: flex; height: 295px; align-items: center; justify-content: center; flex-direction: column; }
.ro-hardware-core > img { position: relative; z-index: 2; width: 104px; filter: drop-shadow(0 18px 35px rgba(0,50,185,.3)); }
.ro-hardware-core > span { position: relative; z-index: 2; margin-top: 12px; color: rgba(255,255,255,.69); font-size: .62rem; font-weight: 700; letter-spacing: .12em; line-height: 1.5; text-align: center; text-transform: uppercase; }
.ro-core-rings { position: absolute; inset: 50%; width: 250px; height: 250px; transform: translate(-50%,-50%); }
.ro-core-rings i { position: absolute; border: 1px solid rgba(116,167,255,.18); border-radius: 50%; animation: roCore 8s linear infinite; }
.ro-core-rings i:nth-child(1) { inset: 0; }
.ro-core-rings i:nth-child(2) { inset: 28px; border-style: dashed; animation-direction: reverse; animation-duration: 12s; }
.ro-core-rings i:nth-child(3) { inset: 56px; border-color: rgba(116,167,255,.36); animation-duration: 6s; }

.ro-hardware-specs { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ro-hardware-specs > div { position: relative; padding: 14px 15px 17px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(255,255,255,.045); overflow: hidden; }
.ro-hardware-specs small { display: block; color: rgba(255,255,255,.34); font-size: .58rem; text-transform: uppercase; }
.ro-hardware-specs strong { display: block; margin-top: 3px; color: rgba(255,255,255,.76); font-size: .68rem; }
.ro-hardware-specs span { position: absolute; bottom: 0; left: 0; width: var(--match); height: 2px; background: linear-gradient(90deg, var(--ro-blue), #8ab5ff); box-shadow: 0 0 10px rgba(90,151,255,.4); transform: scaleX(0); transform-origin: left; }
.is-visible .ro-hardware-specs span { animation: roGrow 1.4s .45s var(--ro-ease) forwards; }

.ro-calibration-copy { display: flex; flex-direction: column; justify-content: center; padding: 34px clamp(20px, 4vw, 56px); }
.ro-calibration-copy article { display: grid; grid-template-columns: 44px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--ro-line); }
.ro-calibration-copy article:last-child { border-bottom: 0; }
.ro-calibration-copy article > span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(18,97,255,.14); border-radius: 13px; color: var(--ro-blue); background: rgba(18,97,255,.06); font-size: .64rem; font-weight: 800; }
.ro-calibration-copy h3 { margin: 0 0 9px; color: var(--ro-ink); font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-weight: 800; letter-spacing: -.035em; }
.ro-calibration-copy p { margin: 0; color: var(--ro-copy); font-size: .9rem; line-height: 1.7; }

/* Product showcase -------------------------------------------------------- */

.ro-showcase {
  color: #fff;
  background: linear-gradient(150deg, #07142f 0%, #061a49 55%, #07142f 100%);
  overflow: hidden;
}
.ro-showcase::before { content: ""; position: absolute; top: -400px; left: 50%; width: 900px; height: 900px; border: 1px solid rgba(125,172,255,.11); border-radius: 50%; transform: translateX(-50%); box-shadow: 0 0 0 90px rgba(255,255,255,.012), 0 0 0 180px rgba(255,255,255,.008); }
.ro-showcase .ro-section-intro h2 { color: #fff; }
.ro-showcase .ro-section-intro > p { color: rgba(222,235,255,.56); }
.ro-showcase-shell { position: relative; padding: 14px 14px 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 34px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow: 0 45px 110px rgba(0,4,24,.35), inset 0 1px 0 rgba(255,255,255,.08); -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px); }
.ro-showcase-topline { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px 22px; }
.ro-showcase-topline > span { color: rgba(255,255,255,.78); font-size: .76rem; font-weight: 700; }
.ro-showcase-topline small { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.36); font-size: .63rem; }
.ro-showcase-topline small i { width: 6px; height: 6px; border-radius: 50%; background: #71a4ff; box-shadow: 0 0 0 5px rgba(113,164,255,.1); }

.cv-carousel-wrap { position: relative; }
.cv-carousel {
  display: flex;
  gap: 18px;
  padding: 18px max(12px, calc((100% - min(920px, 78vw)) / 2)) 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  align-items: center;
}
.cv-carousel::-webkit-scrollbar { display: none; }
.cv-slide {
  position: relative;
  flex: 0 0 min(920px, 78vw);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: #071020;
  box-shadow: 0 26px 65px rgba(0,0,0,.28);
  cursor: zoom-in;
  overflow: hidden;
  /* Side slides: slightly smaller + soft blur. Center (cv-active) is full size & sharp. */
  opacity: .62;
  filter: blur(2.5px) saturate(.88);
  transform: scale(.88);
  transform-origin: center center;
  transition:
    transform .55s var(--ro-ease),
    opacity .45s var(--ro-ease),
    filter .45s var(--ro-ease),
    border-color .4s,
    box-shadow .4s;
  will-change: transform, filter, opacity;
}
.cv-slide.cv-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  border-color: rgba(138,181,255,.38);
  box-shadow:
    0 34px 90px rgba(0,0,0,.42),
    0 0 0 1px rgba(130,175,255,.12),
    0 0 48px rgba(60,120,255,.16);
  z-index: 2;
}
.cv-slide:hover {
  border-color: rgba(121,170,255,.42);
}
.cv-slide.cv-active:hover {
  box-shadow:
    0 38px 100px rgba(0,0,0,.48),
    0 0 0 1px rgba(130,175,255,.18),
    0 0 56px rgba(60,120,255,.2);
}
/* Image sizes to its natural height — caption sits flush under it (no empty gap) */
.cv-slide img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  background: #050d1c;
  display: block;
  flex: 0 0 auto;
}
.cv-slide.cv-active img {
  object-fit: contain;
}
.cv-slide-cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex: 0 0 auto;
  margin-top: 0;
  min-height: 64px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(8,18,41,.94);
}
.cv-slide-cap b { color: #fff; font-size: .88rem; font-weight: 800; }
.cv-slide-cap span { color: rgba(224,235,255,.42); font-size: .68rem; text-align: right; }

.cv-arrow { position: absolute; top: 43%; z-index: 4; display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; color: #fff; background: rgba(7,17,41,.72); box-shadow: 0 16px 38px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.1); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); cursor: pointer; transform: translateY(-50%); transition: transform .28s var(--ro-ease), background .28s; }
.cv-arrow:hover { background: var(--ro-blue); transform: translateY(-50%) scale(1.06); }
.cv-arrow svg { width: 20px; }
.cv-arrow-l { left: 16px; }
.cv-arrow-r { right: 16px; }
.cv-dots { display: flex; justify-content: center; gap: 7px; margin-top: 10px; }
.cv-dot { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 8px; background: rgba(255,255,255,.2); cursor: pointer; transition: width .4s var(--ro-ease), background .3s; }
.cv-dot.on { width: 28px; background: #8ab5ff; }

.cv-lightbox { position: fixed; inset: 0; z-index: 10001; display: flex; align-items: center; justify-content: center; padding: 68px 34px 34px; background: rgba(2,8,22,.92); -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.cv-lightbox.on { opacity: 1; visibility: visible; }
.cv-lightbox img { max-width: min(1400px, 95vw); max-height: 86vh; border: 1px solid rgba(255,255,255,.15); border-radius: 22px; box-shadow: 0 40px 120px rgba(0,0,0,.65); }
.cv-lightbox-x { position: absolute; top: 20px; right: 24px; min-height: 40px; padding: 0 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; color: #fff; background: rgba(255,255,255,.08); cursor: pointer; }

/* Capability architecture ------------------------------------------------ */

.ro-architecture {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 12% 18%, rgba(120,170,255,.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 92% 78%, rgba(70,130,255,.1), transparent 50%),
    #f3f7ff;
  overflow: hidden;
}
.ro-arch-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ro-arch-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  animation: roArchOrb 14s ease-in-out infinite;
}
.ro-arch-orb-a {
  top: 8%;
  left: -6%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(90,150,255,.35), transparent 70%);
}
.ro-arch-orb-b {
  right: -8%;
  bottom: 4%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(50,110,255,.28), transparent 70%);
  animation-delay: -6s;
  animation-direction: reverse;
}
.ro-architecture > .ro-shell { position: relative; z-index: 1; }

/* Layer progress rail */
.ro-layer-rail {
  display: grid;
  gap: 14px;
  margin: -8px 0 36px;
}
.ro-layer-rail-track {
  position: relative;
  display: block;
  height: 3px;
  border-radius: 99px;
  background: rgba(18,97,255,.1);
  overflow: hidden;
}
.ro-layer-rail-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #5b9bff, #1261ff 55%, #8ab5ff);
  box-shadow: 0 0 16px rgba(80,140,255,.45);
}
.ro-layer-rail.is-visible .ro-layer-rail-track i {
  animation: roLayerFill 1.6s .2s var(--ro-ease) forwards;
}
.ro-layer-rail-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
}
.ro-layer-rail-steps span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7a879c;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
}
.ro-layer-rail-steps span b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(18,97,255,.14);
  border-radius: 9px;
  color: var(--ro-blue);
  background: rgba(255,255,255,.7);
  font-family: var(--ro-mono);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: background .4s, border-color .4s, color .4s, box-shadow .4s;
}
.ro-layer-rail.is-visible .ro-layer-rail-steps span {
  animation: roCapIn .7s var(--ro-ease) forwards;
  animation-delay: calc(.15s + var(--step, 0) * .08s);
}
.ro-layer-rail-steps span:nth-child(1) { --step: 0; }
.ro-layer-rail-steps span:nth-child(2) { --step: 1; }
.ro-layer-rail-steps span:nth-child(3) { --step: 2; }
.ro-layer-rail-steps span:nth-child(4) { --step: 3; }
.ro-layer-rail-steps span:nth-child(5) { --step: 4; }
.ro-layer-rail-steps span.on b,
.ro-layer-rail.is-visible .ro-layer-rail-steps span b {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #3d86ff, #1261ff);
  box-shadow: 0 8px 18px rgba(18,97,255,.28);
}
.ro-layer-rail.is-visible .ro-layer-rail-steps span:nth-child(1) b { transition-delay: .25s; }
.ro-layer-rail.is-visible .ro-layer-rail-steps span:nth-child(2) b { transition-delay: .4s; }
.ro-layer-rail.is-visible .ro-layer-rail-steps span:nth-child(3) b { transition-delay: .55s; }
.ro-layer-rail.is-visible .ro-layer-rail-steps span:nth-child(4) b { transition-delay: .7s; }
.ro-layer-rail.is-visible .ro-layer-rail-steps span:nth-child(5) b { transition-delay: .85s; }

.ro-capability-map {
  display: grid;
  grid-template-columns: 1.15fr .925fr .925fr;
  gap: 18px;
}
.ro-capability {
  position: relative;
  min-height: 304px;
  padding: 30px;
  border: 1px solid rgba(9,46,114,.11);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 1px 0 #fff, 0 25px 60px rgba(25,66,138,.07);
  overflow: hidden;
  transition:
    transform .5s var(--ro-ease),
    border-color .45s ease,
    box-shadow .5s ease,
    background .45s ease;
  will-change: transform;
}
.ro-capability::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(18,97,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(18,97,255,.025);
  transition: transform .7s var(--ro-ease), opacity .5s ease;
  pointer-events: none;
}
.ro-capability:hover {
  border-color: rgba(18,97,255,.28);
  box-shadow:
    inset 0 1px 0 #fff,
    0 34px 70px rgba(25,66,138,.14),
    0 0 0 1px rgba(18,97,255,.06);
  transform: translateY(-9px);
}
.ro-capability:hover::after { transform: scale(1.18); opacity: .85; }

/* Specular shine sweep */
.ro-cap-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
}
.ro-cap-shine::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 45%;
  height: 180%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
}
.ro-capability:hover .ro-cap-shine { opacity: 1; }
.ro-capability:hover .ro-cap-shine::before {
  animation: roCapShine .9s var(--ro-ease) forwards;
}
.ro-capability-main .ro-cap-shine::before {
  background: linear-gradient(105deg, transparent, rgba(160,200,255,.22), transparent);
}

.ro-capability-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 36px;
}
.ro-cap-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(18,97,255,.12);
  border-radius: 999px;
  color: #5b6f90;
  background: rgba(243,247,255,.9);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .4s var(--ro-ease), border-color .35s, color .35s, background .35s;
}
.ro-capability:hover .ro-cap-badge {
  transform: translateY(-2px);
  border-color: rgba(18,97,255,.28);
  color: var(--ro-blue);
  background: #eef4ff;
}
.ro-capability-main .ro-cap-badge {
  color: #b7d0ff;
  border-color: rgba(151,190,255,.22);
  background: rgba(87,142,255,.14);
}
.ro-capability-main:hover .ro-cap-badge {
  color: #e8f0ff;
  border-color: rgba(180,210,255,.4);
  background: rgba(110,160,255,.22);
}

.ro-capability-main {
  grid-row: span 2;
  min-height: 640px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(70,140,255,.42), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(40,100,230,.22), transparent 40%),
    linear-gradient(155deg, #0a1d4a 0%, #071536 48%, #050f28 100%);
  border-color: rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 30px 70px rgba(8,24,70,.28);
}
.ro-capability-main:hover {
  border-color: rgba(150,190,255,.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 40px 90px rgba(8,30,90,.4),
    0 0 0 1px rgba(100,160,255,.12);
  transform: translateY(-10px);
}
.ro-capability-main::after {
  border-color: rgba(140,180,255,.12);
  box-shadow: 0 0 0 30px rgba(100,150,255,.04);
}

/* Orbit rings on hero capability card */
.ro-cap-orbit {
  position: absolute;
  right: -40px;
  top: 18%;
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.ro-cap-orbit i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(140,185,255,.18);
  border-radius: 50%;
  animation: roCapOrbit 18s linear infinite;
}
.ro-cap-orbit i:last-child {
  inset: 28px;
  border-style: dashed;
  border-color: rgba(140,185,255,.12);
  animation-duration: 28s;
  animation-direction: reverse;
}
.ro-cap-orbit i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ab5ff;
  box-shadow: 0 0 12px rgba(120,180,255,.8);
  transform: translateY(-50%);
}
.ro-capability-main:hover .ro-cap-orbit { opacity: .85; }

.ro-capability-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 8px 24px;
  align-content: center;
  min-height: 220px;
}
.ro-capability-wide .ro-capability-top {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.ro-capability-wide .ro-cap-wide-body {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.ro-capability-wide .ro-game-line {
  grid-column: 1 / -1;
  grid-row: 2;
}

.ro-capability-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 0;
  border: 1px solid rgba(18,97,255,.15);
  border-radius: 15px;
  color: var(--ro-blue);
  background: rgba(18,97,255,.07);
  transition: transform .5s var(--ro-ease), box-shadow .45s ease, background .35s, border-color .35s;
}
.ro-capability-icon svg { width: 23px; transition: transform .5s var(--ro-ease); }
.ro-capability:hover .ro-capability-icon {
  transform: translateY(-3px) scale(1.06);
  border-color: rgba(18,97,255,.3);
  background: rgba(18,97,255,.12);
  box-shadow: 0 12px 28px rgba(18,97,255,.18);
}
.ro-capability:hover .ro-capability-icon svg { transform: scale(1.08) rotate(-6deg); }
.ro-capability-main .ro-capability-icon {
  color: #9dc0ff;
  border-color: rgba(151,190,255,.22);
  background: rgba(87,142,255,.14);
}
.ro-capability-main:hover .ro-capability-icon {
  color: #d4e5ff;
  border-color: rgba(180,210,255,.4);
  background: rgba(110,160,255,.22);
  box-shadow: 0 14px 32px rgba(40,100,230,.35);
}

.ro-capability-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 16px;
  color: var(--ro-blue);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .8;
  transition: text-shadow .5s ease, transform .5s var(--ro-ease);
}
.ro-capability:hover .ro-capability-number {
  transform: translateY(-2px);
  text-shadow: 0 10px 30px rgba(18,97,255,.18);
}
.ro-capability-main .ro-capability-number {
  color: #fff;
  font-size: clamp(4.5rem, 7vw, 7rem);
  text-shadow: 0 12px 40px rgba(40,100,255,.25);
}
.ro-capability-main:hover .ro-capability-number {
  text-shadow: 0 16px 50px rgba(90,150,255,.45);
}
.is-visible .ro-capability-number {
  animation: roNumPop .9s var(--ro-ease) both;
}

.ro-capability h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--ro-ink);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.035em;
}
.ro-capability-main h3 {
  color: #fff;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}
.ro-capability p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0;
  color: var(--ro-copy);
  font-size: .85rem;
  line-height: 1.7;
}
.ro-capability-main p {
  color: rgba(224,235,255,.58);
  font-size: .95rem;
}

/* Core card feature tags */
.ro-cap-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.ro-cap-tags li {
  padding: 6px 10px;
  border: 1px solid rgba(150,190,255,.18);
  border-radius: 8px;
  color: rgba(200,220,255,.72);
  background: rgba(90,140,255,.1);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  translate: 0 8px;
  transition: opacity .55s var(--ro-ease), translate .55s var(--ro-ease);
  transition-delay: calc(.45s + var(--t, 0) * .07s);
}
.is-visible .ro-cap-tags li {
  opacity: 1;
  translate: 0 0;
}

.ro-cap-tags li:nth-child(1) { --t: 0; }
.ro-cap-tags li:nth-child(2) { --t: 1; }
.ro-cap-tags li:nth-child(3) { --t: 2; }
.ro-cap-tags li:nth-child(4) { --t: 3; }
.ro-cap-tags li:nth-child(5) { --t: 4; }

/* Mini progress meters on side cards */
.ro-cap-meter {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(18,97,255,.08);
  overflow: hidden;
}
.ro-cap-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5b9bff, #1261ff);
  box-shadow: 0 0 12px rgba(80,140,255,.4);
}
.is-visible .ro-cap-meter span {
  animation: roMeterFill 1.15s .35s var(--ro-ease) forwards;
}
.ro-capability:hover .ro-cap-meter span {
  filter: brightness(1.12);
}

/* Signal graph — entrance then live pulse */
.ro-signal-graph {
  position: absolute;
  right: 30px;
  bottom: 35px;
  left: 30px;
  display: flex;
  height: 115px;
  align-items: flex-end;
  gap: 7px;
  opacity: .72;
  z-index: 1;
}
.ro-signal-graph i {
  flex: 1;
  height: 20%;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #8ab8ff 0%, #3d7ef0 55%, rgba(50,109,230,.15) 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  box-shadow: 0 0 14px rgba(90,150,255,.15);
}
.is-visible .ro-signal-graph i {
  animation:
    roBars 1s var(--ro-ease) forwards,
    roBarPulse 2.4s ease-in-out 1.1s infinite;
}
.ro-signal-graph i:nth-child(1)  { animation-delay: 0s, 1.1s; }
.ro-signal-graph i:nth-child(2)  { --h: 42%; animation-delay: .05s, 1.2s; }
.ro-signal-graph i:nth-child(3)  { --h: 70%; animation-delay: .1s, 1.3s; }
.ro-signal-graph i:nth-child(4)  { --h: 52%; animation-delay: .15s, 1.15s; }
.ro-signal-graph i:nth-child(5)  { --h: 88%; animation-delay: .2s, 1.35s; }
.ro-signal-graph i:nth-child(6)  { --h: 64%; animation-delay: .25s, 1.25s; }
.ro-signal-graph i:nth-child(7)  { --h: 52%; animation-delay: .15s, 1.4s; }
.ro-signal-graph i:nth-child(8)  { --h: 42%; animation-delay: .05s, 1.18s; }
.ro-signal-graph i:nth-child(9)  { --h: 88%; animation-delay: .2s, 1.32s; }
.ro-signal-graph i:nth-child(10) { --h: 98%; animation-delay: .3s, 1.22s; }
.ro-signal-graph i:nth-child(11) { --h: 70%; animation-delay: .1s, 1.28s; }
.ro-signal-graph i:nth-child(12) { --h: 64%; animation-delay: .25s, 1.38s; }
.ro-capability-main:hover .ro-signal-graph { opacity: .92; }
.ro-capability-main:hover .ro-signal-graph i {
  filter: brightness(1.15);
  box-shadow: 0 0 18px rgba(120,180,255,.35);
}

.ro-game-line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.ro-game-line span {
  padding: 8px 12px;
  border: 1px solid rgba(18,97,255,.12);
  border-radius: 10px;
  color: #5a6b84;
  background: linear-gradient(180deg, #f7faff, #eef4ff);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: 0;
  translate: 0 10px;
  scale: .96;
  transition:
    opacity .55s var(--ro-ease),
    translate .55s var(--ro-ease),
    scale .35s var(--ro-ease),
    border-color .3s,
    color .3s,
    box-shadow .35s,
    background .3s;
  transition-delay: calc(.35s + var(--i, 0) * .07s), calc(.35s + var(--i, 0) * .07s), 0s, 0s, 0s, 0s, 0s;
}
.is-visible .ro-game-line span {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}
.ro-game-line span:hover {
  translate: 0 -3px;
  scale: 1.04;
  border-color: rgba(18,97,255,.3);
  color: var(--ro-blue);
  background: #fff;
  box-shadow: 0 10px 22px rgba(18,97,255,.12);
}

.ro-game-line .ro-game-more {
  color: var(--ro-blue);
  border-style: dashed;
  border-color: rgba(18,97,255,.22);
  background: rgba(18,97,255,.06);
}

@keyframes roArchOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -24px) scale(1.08); }
}
@keyframes roLayerFill {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes roCapIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes roCapShine {
  from { left: -60%; }
  to { left: 130%; }
}
@keyframes roCapOrbit {
  to { transform: rotate(360deg); }
}
@keyframes roNumPop {
  0% { letter-spacing: -.1em; filter: blur(2px); }
  60% { letter-spacing: -.04em; filter: blur(0); }
  100% { letter-spacing: -.06em; filter: none; }
}
@keyframes roMeterFill {
  from { width: 0; }
  to { width: var(--fill, 60%); }
}
@keyframes roBarPulse {
  0%, 100% { filter: brightness(1); opacity: .88; }
  50% { filter: brightness(1.22); opacity: 1; }
}



/* Results ---------------------------------------------------------------- */

.ro-results {
  position: relative;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 55% at 88% 18%, rgba(54,128,255,.18), transparent 58%),
    radial-gradient(ellipse 50% 40% at 8% 88%, rgba(20,70,180,.14), transparent 55%),
    linear-gradient(155deg, #041028 0%, #071a42 48%, #061532 100%);
  overflow: hidden;
}
.ro-results::before {
  content: "";
  position: absolute;
  top: 6%;
  right: -16%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(139,180,255,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(100,155,255,.02), 0 0 0 160px rgba(100,155,255,.012);
  pointer-events: none;
}
.ro-results-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.ro-results-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: .55;
}
.ro-results-orb-a {
  top: -8%;
  right: 8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(72,140,255,.45), transparent 68%);
  animation: roResultsOrb 14s ease-in-out infinite;
}
.ro-results-orb-b {
  bottom: -12%;
  left: -4%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(28,90,220,.35), transparent 70%);
  animation: roResultsOrb 18s ease-in-out infinite reverse;
}
.ro-results-grid-fade {
  position: absolute;
  inset: 8% 4% auto;
  height: 55%;
  background-image:
    linear-gradient(rgba(130,170,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130,170,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 30%, #000 20%, transparent 75%);
  opacity: .7;
  animation: roGridDrift18 28s linear infinite;
}
.ro-results-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.ro-results-copy h2 { color: #fff; }
.ro-results-copy > p { margin: 28px 0 0; color: rgba(226,237,255,.57); max-width: 34rem; }

.ro-results-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.ro-results-stat {
  position: relative;
  padding: 16px 14px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ro-ease), transform .7s var(--ro-ease);
}
.ro-results-stat::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 20%;
  height: 70%;
  background: radial-gradient(circle, rgba(90,150,255,.22), transparent 65%);
  pointer-events: none;
}
.is-visible .ro-results-stat {
  opacity: 1;
  transform: translateY(0);
}
.is-visible .ro-results-stat:nth-child(1) { transition-delay: .12s; }
.is-visible .ro-results-stat:nth-child(2) { transition-delay: .22s; }
.is-visible .ro-results-stat:nth-child(3) { transition-delay: .32s; }
.ro-results-stat b {
  display: block;
  color: #fff;
  font-family: var(--ro-display);
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ro-results-stat-latency b {
  background: linear-gradient(90deg, #9ec4ff, #5eead4 70%, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ro-results-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.ro-results-stat small {
  display: block;
  margin-top: 4px;
  color: rgba(210,225,255,.38);
  font-size: .58rem;
  line-height: 1.35;
}

.ro-results-points { display: flex; flex-direction: column; gap: 13px; margin-top: 28px; }
.ro-results-points span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .55s var(--ro-ease), transform .55s var(--ro-ease);
}
.is-visible .ro-results-points span { opacity: 1; transform: translateX(0); }
.is-visible .ro-results-points span:nth-child(1) { transition-delay: .28s; }
.is-visible .ro-results-points span:nth-child(2) { transition-delay: .38s; }
.is-visible .ro-results-points span:nth-child(3) { transition-delay: .48s; }
.ro-results-points i {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border: 2px solid #8ab6ff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(104,158,255,.08);
  animation: roPulse 2.8s ease-in-out infinite;
}
.ro-results-points span:nth-child(2) i { animation-delay: .4s; }
.ro-results-points span:nth-child(3) i { animation-delay: .8s; }
.ro-results-copy .ro-results-note {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(221,234,255,.34);
  font-size: .72rem;
  line-height: 1.65;
}

.ro-performance-console {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.025));
  box-shadow:
    0 45px 100px rgba(0,4,24,.35),
    0 0 0 1px rgba(90,140,255,.06),
    inset 0 1px 0 rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.ro-performance-console::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(120,170,255,.08) 48%, transparent 66%);
  background-size: 220% 100%;
  pointer-events: none;
  opacity: 0;
}
.is-visible.ro-performance-console::before,
.ro-performance-console.is-visible::before {
  animation: roConsoleSheen 2.4s .35s var(--ro-ease) forwards;
}
.ro-console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 12px 18px;
}
.ro-console-head-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ro-console-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 4px 10px 4px 8px;
  border: 1px solid rgba(94,234,212,.22);
  border-radius: 999px;
  color: #9ff5e4;
  background: rgba(16,185,129,.08);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ro-console-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52,211,153,.55);
  animation: roLivePulse 1.8s ease-out infinite;
}
.ro-console-head strong {
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.ro-console-head small {
  color: rgba(255,255,255,.31);
  font-size: .61rem;
  text-align: right;
  line-height: 1.4;
  padding-top: 4px;
}

.ro-console-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 4px 14px;
}
.ro-console-metric {
  position: relative;
  padding: 14px 12px 12px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(4,13,32,.45);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.98);
  transition: opacity .65s var(--ro-ease), transform .65s var(--ro-ease), border-color .4s ease, box-shadow .4s ease;
}
.is-visible .ro-console-metric {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.is-visible .ro-console-metric:nth-child(1) { transition-delay: .08s; }
.is-visible .ro-console-metric:nth-child(2) { transition-delay: .16s; }
.is-visible .ro-console-metric:nth-child(3) { transition-delay: .24s; }
.is-visible .ro-console-metric:nth-child(4) { transition-delay: .32s; }
.ro-console-metric-hot {
  border-color: rgba(94,234,212,.18);
  background:
    linear-gradient(165deg, rgba(16,185,129,.1), rgba(4,13,32,.5));
  box-shadow: inset 0 0 0 1px rgba(94,234,212,.04);
}
.ro-console-metric > span {
  display: block;
  color: rgba(210,225,255,.48);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ro-console-metric b {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 8px;
  color: #fff;
  font-family: var(--ro-mono);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ro-console-metric b em {
  font-style: normal;
  font-family: inherit;
}
.ro-console-metric b sup {
  margin-left: 1px;
  color: rgba(190,215,255,.55);
  font-size: .55em;
  font-weight: 600;
  letter-spacing: 0;
  top: -0.35em;
}
.ro-console-metric small {
  display: block;
  margin-top: 8px;
  font-size: .58rem;
  font-weight: 700;
}
.ro-metric-up { color: #7dd3fc; }
.ro-metric-down { color: #5eead4; }

.ro-console-chart {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background:
    radial-gradient(ellipse 80% 50% at 80% 0%, rgba(54,128,255,.12), transparent 55%),
    rgba(4,13,32,.55);
  overflow: hidden;
}
.ro-console-chart-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}
.ro-console-chart-label span {
  color: rgba(255,255,255,.72);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.ro-console-chart-label small {
  color: rgba(210,225,255,.32);
  font-size: .55rem;
  font-family: var(--ro-mono);
}

.ro-chart-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 158px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s var(--ro-ease) var(--row-delay, 0s), transform .6s var(--ro-ease) var(--row-delay, 0s);
}
.is-visible .ro-chart-row {
  opacity: 1;
  transform: translateY(0);
}
.ro-chart-row > div:first-child { display: flex; flex-direction: column; }
.ro-chart-row > div:first-child span { color: rgba(255,255,255,.76); font-size: .72rem; font-weight: 700; }
.ro-chart-row > div:first-child small { margin-top: 3px; color: rgba(255,255,255,.3); font-size: .56rem; }
.ro-chart-track {
  position: relative;
  height: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  overflow: visible;
}
.ro-chart-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(157,178,214,.28), rgba(201,216,241,.6));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
.ro-chart-track b {
  position: absolute;
  top: 50%;
  right: 9px;
  color: rgba(255,255,255,.75);
  font-size: .65rem;
  font-family: var(--ro-mono);
  font-weight: 700;
  transform: translateY(-50%);
  font-variant-numeric: tabular-nums;
}
.ro-chart-row-featured {
  border-color: rgba(112,164,255,.28);
  background:
    linear-gradient(90deg, rgba(35,91,203,.14), rgba(35,91,203,.05));
  box-shadow: 0 0 0 1px rgba(80,140,255,.06), 0 12px 36px rgba(20,70,180,.12);
}
.ro-chart-row-featured .ro-chart-track i {
  background: linear-gradient(90deg, #175bdc, #4b91ff 72%, #91baff);
  box-shadow: 0 0 25px rgba(54,128,255,.3), inset 0 1px 0 rgba(255,255,255,.28);
}
.ro-chart-row-featured .ro-chart-track b { color: #fff; }
.is-visible .ro-chart-track i {
  animation: roChartGrow 1.35s calc(var(--row-delay, .1s) + .15s) var(--ro-ease) forwards;
}
.is-visible .ro-chart-row-featured .ro-chart-track i {
  animation:
    roChartGrow 1.45s calc(var(--row-delay, .1s) + .15s) var(--ro-ease) forwards,
    roBarPulse 2.8s calc(var(--row-delay, .1s) + 1.6s) ease-in-out infinite;
}

/* Latency compare bars --------------------------------------------------- */
.ro-latency-block {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.ro-latency-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s var(--ro-ease) var(--row-delay, 0s), transform .6s var(--ro-ease) var(--row-delay, 0s);
}
.is-visible .ro-latency-row {
  opacity: 1;
  transform: translateY(0);
}
.ro-latency-meta { display: flex; flex-direction: column; gap: 3px; }
.ro-latency-meta span {
  color: rgba(255,255,255,.78);
  font-size: .7rem;
  font-weight: 700;
}
.ro-latency-meta small {
  color: rgba(210,225,255,.34);
  font-size: .54rem;
}
.ro-latency-compare {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ro-latency-bar {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
.ro-latency-bar i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
}
.ro-latency-bar-stock i {
  background: linear-gradient(90deg, rgba(148,163,184,.35), rgba(203,213,225,.55));
}
.ro-latency-bar-radiant i {
  background: linear-gradient(90deg, #0d9488, #2dd4bf 55%, #99f6e4);
  box-shadow: 0 0 18px rgba(45,212,191,.28);
}
.ro-latency-bar b {
  position: absolute;
  top: 50%;
  right: 8px;
  color: rgba(255,255,255,.78);
  font-family: var(--ro-mono);
  font-size: .52rem;
  font-weight: 700;
  transform: translateY(-50%);
  font-variant-numeric: tabular-nums;
}
.ro-latency-bar-radiant b { color: #ecfeff; }
.is-visible .ro-latency-bar i {
  animation: roLatGrow 1.2s calc(var(--row-delay, .2s) + .2s) var(--ro-ease) forwards;
}
.ro-latency-legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.ro-latency-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(210,225,255,.42);
  font-size: .55rem;
  font-weight: 700;
}
.ro-latency-legend i {
  width: 10px;
  height: 4px;
  border-radius: 999px;
}
.ro-latency-legend i.stock { background: rgba(203,213,225,.55); }
.ro-latency-legend i.radiant { background: linear-gradient(90deg, #2dd4bf, #99f6e4); }

/* Frame pacing graph ----------------------------------------------------- */
.ro-pacing-block {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.ro-pacing-graph {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.ro-pacing-lane {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
}
.ro-pacing-lane > span {
  color: rgba(210,225,255,.4);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ro-pacing-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  padding: 4px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
}
.ro-pacing-bars i {
  flex: 1;
  height: 0;
  min-width: 0;
  border-radius: 2px 2px 1px 1px;
  transform-origin: bottom center;
}
.ro-pacing-lane-stock .ro-pacing-bars i {
  background: linear-gradient(180deg, rgba(186,198,220,.55), rgba(148,163,184,.25));
}
.ro-pacing-lane-radiant .ro-pacing-bars i {
  background: linear-gradient(180deg, #7dd3fc, #3b82f6 70%, #1d4ed8);
  box-shadow: 0 0 8px rgba(59,130,246,.2);
}
.is-visible .ro-pacing-bars i {
  animation: roPaceRise .7s calc(var(--i, 0) * .035s + .55s) var(--ro-ease) forwards;
}
.ro-pacing-bars i:nth-child(1) { --i: 0; }
.ro-pacing-bars i:nth-child(2) { --i: 1; }
.ro-pacing-bars i:nth-child(3) { --i: 2; }
.ro-pacing-bars i:nth-child(4) { --i: 3; }
.ro-pacing-bars i:nth-child(5) { --i: 4; }
.ro-pacing-bars i:nth-child(6) { --i: 5; }
.ro-pacing-bars i:nth-child(7) { --i: 6; }
.ro-pacing-bars i:nth-child(8) { --i: 7; }
.ro-pacing-bars i:nth-child(9) { --i: 8; }
.ro-pacing-bars i:nth-child(10) { --i: 9; }
.ro-pacing-bars i:nth-child(11) { --i: 10; }
.ro-pacing-bars i:nth-child(12) { --i: 11; }
.ro-pacing-bars i:nth-child(13) { --i: 12; }
.ro-pacing-bars i:nth-child(14) { --i: 13; }
.ro-pacing-bars i:nth-child(15) { --i: 14; }
.ro-pacing-bars i:nth-child(16) { --i: 15; }

.ro-console-footer {
  display: grid;
  grid-template-columns: 1fr repeat(4, auto);
  gap: 28px;
  padding: 16px 12px 4px;
  color: rgba(255,255,255,.27);
  font-family: var(--ro-mono);
  font-size: .55rem;
}

@keyframes roResultsOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: .5; }
  50% { transform: translate(-18px, 22px) scale(1.08); opacity: .72; }
}
@keyframes roLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
  70% { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}
@keyframes roConsoleSheen {
  0% { opacity: 0; background-position: 120% 0; }
  35% { opacity: 1; }
  100% { opacity: 0; background-position: -40% 0; }
}
@keyframes roLatGrow { to { width: var(--lat); } }
@keyframes roPaceRise { to { height: var(--h, 50%); } }


/* Safety ----------------------------------------------------------------- */

/* ==========================================================================
   PACKET FLOW / “HIT REG” COMPARISON
   Dual-panel network path: unstable (red) vs stabilized (green).
   Truthful framing: server-authoritative hits; local jitter & queue only.
   ========================================================================== */

.ro-packetflow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(239, 68, 68, 0.06), transparent 55%),
    radial-gradient(ellipse 70% 45% at 85% 10%, rgba(16, 185, 129, 0.07), transparent 50%),
    linear-gradient(180deg, #f3f6fc 0%, #eef3fb 40%, #f7f9fe 100%);
}

.ro-packetflow-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ro-packetflow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.ro-packetflow-orb-a {
  top: -8%;
  left: -6%;
  width: 420px;
  height: 420px;
  background: rgba(239, 68, 68, 0.12);
}

.ro-packetflow-orb-b {
  top: 5%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: rgba(16, 185, 129, 0.11);
}

.ro-packetflow > .ro-shell { position: relative; z-index: 1; }

/* Checkpoint-style path: Server → Router → PC → Game */
.ro-netpath {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 8px 0 4px;
}

.ro-netpath-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-align: center;
  max-width: 140px;
}

.ro-netpath-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(18, 97, 255, 0.16);
  border-radius: 18px;
  color: var(--ro-blue);
  background: rgba(18, 97, 255, 0.06);
  box-shadow: 0 14px 30px rgba(18, 97, 255, 0.08);
  transition: transform 0.5s var(--ro-ease), box-shadow 0.5s;
}

.ro-netpath-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ro-netpath-step label {
  color: var(--ro-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.ro-netpath-step small {
  color: #8490a3;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.ro-netpath-track {
  position: relative;
  flex: 1 1 48px;
  height: 2px;
  margin: 28px 8px 0;
  background: rgba(18, 97, 255, 0.14);
  overflow: visible;
  min-width: 28px;
  max-width: 120px;
}

.ro-netpath-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ro-blue);
  box-shadow: 0 0 0 6px rgba(18, 97, 255, 0.12), 0 0 14px rgba(18, 97, 255, 0.5);
  transform: translate(-50%, -50%);
  animation: roNetpathTravel 3.4s ease-in-out infinite;
}

.ro-netpath-dot-b {
  width: 6px;
  height: 6px;
  opacity: 0.7;
  animation-duration: 3.4s;
  animation-delay: 1.7s;
  background: #72a8ff;
  box-shadow: 0 0 0 4px rgba(114, 168, 255, 0.15), 0 0 10px rgba(114, 168, 255, 0.4);
}

@keyframes roNetpathTravel {
  0% { left: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.ro-netpath.is-visible .ro-netpath-step:nth-child(1) .ro-netpath-icon {
  animation: roNetpathGlow 3.4s ease-in-out infinite;
}
.ro-netpath.is-visible .ro-netpath-step:nth-child(3) .ro-netpath-icon {
  animation: roNetpathGlow 3.4s 0.7s ease-in-out infinite;
}
.ro-netpath.is-visible .ro-netpath-step:nth-child(5) .ro-netpath-icon {
  animation: roNetpathGlow 3.4s 1.4s ease-in-out infinite;
}
.ro-netpath.is-visible .ro-netpath-step:nth-child(7) .ro-netpath-icon {
  animation: roNetpathGlow 3.4s 2.1s ease-in-out infinite;
}

@keyframes roNetpathGlow {
  0%, 100% { box-shadow: 0 14px 30px rgba(18, 97, 255, 0.08); transform: scale(1); }
  40% { box-shadow: 0 14px 36px rgba(18, 97, 255, 0.22), 0 0 0 8px rgba(18, 97, 255, 0.08); transform: scale(1.04); }
}

.ro-packetflow-pathnote {
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0 12px;
  color: var(--ro-copy);
  font-size: 0.84rem;
  line-height: 1.75;
  text-align: center;
}

.ro-packetflow-pathnote strong {
  color: var(--ro-ink);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}

/* Split comparison cards */
.ro-packetflow-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 36px;
}

.ro-pf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 26px 26px;
  border-radius: 28px;
  border: 1px solid rgba(10, 34, 83, 0.1);
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 28, 72, 0.06), inset 0 1px 0 #fff;
  overflow: hidden;
  transition: transform 0.45s var(--ro-ease), box-shadow 0.45s ease;
}

.ro-pf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(8, 28, 72, 0.1), inset 0 1px 0 #fff;
}

.ro-pf-card-bad {
  border-color: rgba(239, 68, 68, 0.18);
  background:
    linear-gradient(165deg, rgba(254, 242, 242, 0.9), #fff 42%),
    #fff;
}

.ro-pf-card-good {
  border-color: rgba(16, 185, 129, 0.22);
  background:
    linear-gradient(165deg, rgba(236, 253, 245, 0.95), #fff 42%),
    #fff;
  box-shadow: 0 24px 60px rgba(6, 95, 70, 0.07), inset 0 1px 0 #fff;
}

.ro-pf-card-head { display: flex; flex-direction: column; gap: 8px; }

.ro-pf-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ro-pf-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 18%, transparent);
}

.ro-pf-status-bad {
  color: #dc2626;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.ro-pf-status-good {
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.ro-pf-card-head > strong {
  margin-top: 4px;
  color: var(--ro-ink);
  font-family: var(--ro-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.ro-pf-card-head > p {
  margin: 0;
  color: var(--ro-copy);
  font-size: 0.8rem;
  line-height: 1.7;
}

/* Mini router → PC → game wire */
.ro-pf-path-mini {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(10, 34, 83, 0.03);
  border: 1px solid rgba(10, 34, 83, 0.06);
}

.ro-pf-node {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 10px;
  color: #64748b;
  background: #fff;
  border: 1px solid rgba(100, 116, 139, 0.2);
  font-family: var(--ro-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ro-pf-node-good {
  color: #047857;
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(236, 253, 245, 0.9);
}

.ro-pf-wire {
  position: relative;
  flex: 1 1 auto;
  height: 2px;
  margin: 0 6px;
  background: rgba(148, 163, 184, 0.35);
  overflow: hidden;
  min-width: 36px;
}

.ro-pf-wire span {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  opacity: 0;
}

.ro-pf-wire-bad {
  background: rgba(239, 68, 68, 0.2);
}

.ro-pf-wire-bad span {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.7);
  animation: roPfPacketBad 2.4s linear infinite;
}

.ro-pf-wire-bad span:nth-child(1) { animation-delay: 0s; }
.ro-pf-wire-bad span:nth-child(2) { animation-delay: 0.35s; }
.ro-pf-wire-bad span:nth-child(3) { animation-delay: 0.85s; }
.ro-pf-wire-bad span:nth-child(4) { animation-delay: 1.2s; }
.ro-pf-wire-bad span:nth-child(5) { animation-delay: 1.7s; }

.ro-pf-wire-delay span:nth-child(1) { animation-duration: 3.1s; }
.ro-pf-wire-delay span:nth-child(2) { animation-duration: 2.2s; animation-delay: 0.5s; }
.ro-pf-wire-delay span:nth-child(3) { animation-duration: 3.6s; animation-delay: 1.1s; }
.ro-pf-wire-delay span:nth-child(4) { animation-duration: 2.0s; animation-delay: 0.2s; }

.ro-pf-wire-good {
  background: rgba(16, 185, 129, 0.22);
}

.ro-pf-wire-good span {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.75);
  animation: roPfPacketGood 1.35s linear infinite;
}

.ro-pf-wire-good span:nth-child(1) { animation-delay: 0s; }
.ro-pf-wire-good span:nth-child(2) { animation-delay: 0.27s; }
.ro-pf-wire-good span:nth-child(3) { animation-delay: 0.54s; }
.ro-pf-wire-good span:nth-child(4) { animation-delay: 0.81s; }
.ro-pf-wire-good span:nth-child(5) { animation-delay: 1.08s; }

@keyframes roPfPacketBad {
  0% { left: -8%; opacity: 0; transform: scale(0.6); }
  12% { opacity: 1; transform: scale(1.15); }
  35% { opacity: 0.35; transform: scale(0.7); }
  55% { opacity: 1; transform: scale(1.2); }
  78% { opacity: 0.4; }
  100% { left: 108%; opacity: 0; transform: scale(0.5); }
}

@keyframes roPfPacketGood {
  0% { left: -6%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 106%; opacity: 0; }
}

/* Charts */
.ro-pf-chart-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(10, 21, 49, 0.03);
  border: 1px solid rgba(10, 34, 83, 0.07);
}

.ro-pf-card-bad .ro-pf-chart-block {
  background: rgba(239, 68, 68, 0.04);
  border-color: rgba(239, 68, 68, 0.1);
}

.ro-pf-card-good .ro-pf-chart-block {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.12);
}

.ro-pf-chart-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.ro-pf-chart-label span {
  color: var(--ro-ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ro-pf-chart-label small {
  color: #8490a3;
  font-family: var(--ro-mono);
  font-size: 0.52rem;
  font-weight: 600;
}

.ro-pf-spark {
  width: 100%;
  height: 88px;
  display: block;
}

.ro-pf-spark-line {
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.ro-pf-spark-fill {
  opacity: 0;
  transform-origin: bottom;
}

.ro-pf-spark-line-bad { stroke: #ef4444; }
.ro-pf-spark-fill-bad { fill: url(#roPfBadFill); }
.ro-pf-spark-line-good { stroke: #10b981; }
.ro-pf-spark-fill-good { fill: url(#roPfGoodFill); }

.is-visible .ro-pf-spark-line,
.ro-pf-card.is-visible .ro-pf-spark-line {
  animation: roPfDraw 1.6s 0.25s var(--ro-ease) forwards;
}

.is-visible .ro-pf-spark-fill,
.ro-pf-card.is-visible .ro-pf-spark-fill {
  animation: roPfFillIn 1.1s 0.55s ease forwards;
}

@keyframes roPfDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes roPfFillIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ro-pf-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  padding: 0 2px;
}

.ro-pf-bars i {
  flex: 1;
  height: 0;
  border-radius: 4px 4px 2px 2px;
  transform-origin: bottom;
}

.ro-pf-bars-bad i {
  background: linear-gradient(180deg, #f87171, #dc2626 70%, #991b1b);
  opacity: 0.85;
}

.ro-pf-bars-good i {
  background: linear-gradient(180deg, #6ee7b7, #10b981 65%, #047857);
  opacity: 0.92;
}

.is-visible .ro-pf-bars i,
.ro-pf-card.is-visible .ro-pf-bars i {
  animation: roPfBarRise 0.7s calc(var(--i, 0) * 0.04s + 0.4s) var(--ro-ease) forwards;
}

.ro-pf-bars i:nth-child(1) { --i: 0; }
.ro-pf-bars i:nth-child(2) { --i: 1; }
.ro-pf-bars i:nth-child(3) { --i: 2; }
.ro-pf-bars i:nth-child(4) { --i: 3; }
.ro-pf-bars i:nth-child(5) { --i: 4; }
.ro-pf-bars i:nth-child(6) { --i: 5; }
.ro-pf-bars i:nth-child(7) { --i: 6; }
.ro-pf-bars i:nth-child(8) { --i: 7; }
.ro-pf-bars i:nth-child(9) { --i: 8; }
.ro-pf-bars i:nth-child(10) { --i: 9; }
.ro-pf-bars i:nth-child(11) { --i: 10; }
.ro-pf-bars i:nth-child(12) { --i: 11; }
.ro-pf-bars i:nth-child(13) { --i: 12; }
.ro-pf-bars i:nth-child(14) { --i: 13; }
.ro-pf-bars i:nth-child(15) { --i: 14; }
.ro-pf-bars i:nth-child(16) { --i: 15; }

@keyframes roPfBarRise {
  from { height: 0; opacity: 0.3; }
  to { height: var(--h, 50%); opacity: 1; }
}

/* Subtle ongoing pulse on bad bars to sell instability */
.ro-pf-card-bad.is-visible .ro-pf-bars-bad i {
  animation:
    roPfBarRise 0.7s calc(var(--i, 0) * 0.04s + 0.4s) var(--ro-ease) forwards,
    roPfBarJitter 2.8s calc(var(--i, 0) * 0.11s + 1.4s) ease-in-out infinite;
}

@keyframes roPfBarJitter {
  0%, 100% { filter: brightness(1); }
  40% { filter: brightness(1.15); }
  55% { filter: brightness(0.85); }
}

.ro-pf-bars-caption {
  color: #8490a3;
  font-family: var(--ro-mono);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ro-pf-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ro-pf-metrics li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(10, 34, 83, 0.03);
  border: 1px solid rgba(10, 34, 83, 0.06);
}

.ro-pf-metrics span {
  color: #8490a3;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ro-pf-metrics b {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ro-pf-bad-num { color: #dc2626; }
.ro-pf-good-num { color: #059669; }

.ro-pf-outcome {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 16px;
}

.ro-pf-outcome strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ro-pf-outcome p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.65;
}

.ro-pf-outcome-bad {
  color: #7f1d1d;
  background: rgba(254, 226, 226, 0.65);
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.ro-pf-outcome-bad strong { color: #b91c1c; }

.ro-pf-outcome-good {
  color: #064e3b;
  background: rgba(209, 250, 229, 0.55);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.ro-pf-outcome-good strong { color: #047857; }

/* Truth panel */
.ro-pf-truth {
  position: relative;
  padding: 36px 40px 32px;
  border-radius: 28px;
  border: 1px solid rgba(18, 97, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.9)),
    #fff;
  box-shadow: 0 28px 70px rgba(8, 40, 110, 0.07), inset 0 1px 0 #fff;
}

.ro-pf-truth-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--ro-blue);
  background: rgba(18, 97, 255, 0.08);
  border: 1px solid rgba(18, 97, 255, 0.14);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ro-pf-truth h3 {
  margin: 0 0 22px;
  max-width: 720px;
  color: var(--ro-ink);
  font-family: var(--ro-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.ro-pf-truth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 20px;
}

.ro-pf-truth-grid h4 {
  margin: 0 0 8px;
  color: var(--ro-ink);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.ro-pf-truth-grid p {
  margin: 0;
  color: var(--ro-copy);
  font-size: 0.78rem;
  line-height: 1.7;
}

.ro-pf-truth-grid strong {
  color: var(--ro-ink);
  font-weight: 700;
}

.ro-pf-truth-foot {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--ro-line);
  color: #8490a3;
  font-size: 0.72rem;
  line-height: 1.6;
}

.ro-safety { background: #fff; }


.ro-pipeline { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 900px; margin: 0 auto 70px; }
.ro-pipeline-step { display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 0 0 auto; }
.ro-pipeline-icon { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(18,97,255,.16); border-radius: 18px; color: var(--ro-blue); background: rgba(18,97,255,.06); box-shadow: 0 14px 30px rgba(18,97,255,.08); transition: transform .5s var(--ro-ease), box-shadow .5s; }
.ro-pipeline-icon svg { width: 26px; }
.ro-pipeline-step label { color: var(--ro-ink); font-size: .68rem; font-weight: 800; letter-spacing: .04em; }
.ro-pipeline-track { position: relative; flex: 1 1 60px; height: 2px; margin: 0 6px 26px; background: rgba(18,97,255,.14); overflow: visible; }
.ro-pipeline-dot { position: absolute; top: 50%; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--ro-blue); box-shadow: 0 0 0 6px rgba(18,97,255,.12), 0 0 14px rgba(18,97,255,.5); transform: translate(-50%,-50%); animation: roPipelineTravel 3.2s ease-in-out infinite; }
.ro-pipeline-track:nth-child(4) .ro-pipeline-dot { animation-delay: .8s; }
.ro-pipeline-track:nth-child(6) .ro-pipeline-dot { animation-delay: 1.6s; }
.ro-pipeline-track:nth-child(8) .ro-pipeline-dot { animation-delay: 2.4s; }
@keyframes roPipelineTravel { 0% { left: 0; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
.ro-pipeline.is-visible .ro-pipeline-icon:nth-child(1) { animation: roPipelineGlow 3.2s ease-in-out infinite; }

.ro-safety-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.ro-safety-seal { position: relative; display: flex; min-height: 540px; align-items: center; justify-content: center; flex-direction: column; border: 1px solid rgba(8,44,113,.1); border-radius: 40px; background: radial-gradient(circle, rgba(29,102,255,.09), transparent 48%), #f7f9ff; overflow: hidden; }
.ro-safety-seal > svg { position: relative; z-index: 2; width: 84px; color: var(--ro-blue); stroke-width: 1.25; filter: drop-shadow(0 15px 25px rgba(18,97,255,.18)); }
.ro-safety-seal > strong { position: relative; z-index: 2; margin-top: 24px; color: var(--ro-ink); font-size: 1.15rem; font-weight: 800; letter-spacing: -.03em; }
.ro-safety-seal > span { position: relative; z-index: 2; margin-top: 8px; color: #8490a3; font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.ro-seal-rings { position: absolute; inset: 50%; width: 420px; height: 420px; transform: translate(-50%,-50%); }
.ro-seal-rings i { position: absolute; border: 1px solid rgba(18,97,255,.11); border-radius: 50%; }
.ro-seal-rings i:nth-child(1) { inset: 0; animation: roCore 22s linear infinite; }
.ro-seal-rings i:nth-child(2) { inset: 58px; border-style: dashed; animation: roCore 16s linear infinite reverse; }
.ro-seal-rings i:nth-child(3) { inset: 117px; border-color: rgba(18,97,255,.22); }
.ro-safety-list { display: flex; flex-direction: column; }
.ro-safety-list article { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--ro-line); }
.ro-safety-list article:last-child { border-bottom: 0; }
.ro-safety-list article > span { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(18,97,255,.14); border-radius: 15px; color: var(--ro-blue); background: rgba(18,97,255,.05); font-family: var(--ro-mono); font-size: .62rem; }
.ro-safety-list h3 { margin: 0 0 8px; color: var(--ro-ink); font-size: 1.18rem; font-weight: 800; letter-spacing: -.035em; }
.ro-safety-list p { margin: 0; color: var(--ro-copy); font-size: .86rem; line-height: 1.7; }

/* Founder ---------------------------------------------------------------- */

.ro-founder { padding-top: 0; background: #fff; }
.ro-founder-card { display: grid; grid-template-columns: minmax(300px, .58fr) 1.42fr; min-height: 630px; padding: 14px; border-radius: 42px; color: #fff; background: linear-gradient(140deg, #07142f, #071f58 65%, #0a48cf); box-shadow: 0 42px 100px rgba(12,50,119,.18); overflow: hidden; }
.ro-founder-portrait { position: relative; min-height: 600px; border-radius: 30px; overflow: hidden; }
.ro-founder-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,11,28,.72), transparent 40%); }
.ro-founder-portrait img { width: 100%; height: 100%; object-fit: cover; }
.ro-founder-portrait > div { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: flex; flex-direction: column; }
.ro-founder-portrait strong { font-size: .86rem; font-weight: 800; }
.ro-founder-portrait span { margin-top: 4px; color: rgba(255,255,255,.5); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.ro-founder-story { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 7vw, 100px); }
.ro-founder-story .ro-overline { color: #9ec1ff; }
.ro-founder-story h2 { max-width: 760px; margin: 25px 0 0; color: #fff; font-family: var(--ro-display); font-size: clamp(2.6rem, 4.7vw, 5rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.03; }
.ro-founder-story blockquote { max-width: 790px; margin: 30px 0 0; color: rgba(230,239,255,.61); font-size: clamp(.96rem, 1.25vw, 1.12rem); line-height: 1.85; }
.ro-founder-signoff { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.ro-founder-signoff > span { color: rgba(255,255,255,.72); font-size: .75rem; font-weight: 700; }
.ro-founder-signoff a { display: inline-flex; align-items: center; gap: 8px; color: #a8c8ff; font-size: .72rem; font-weight: 700; }
.ro-founder-signoff svg { width: 16px; }

/* Pricing ---------------------------------------------------------------- */

.ro-pricing { background: linear-gradient(180deg, #eff5ff, #f8faff 42%, #edf4ff); overflow: hidden; }
.ro-pricing-atmosphere div { position: absolute; border: 1px solid rgba(18,97,255,.08); border-radius: 50%; }
.ro-pricing-atmosphere div:first-child { top: -430px; left: 50%; width: 930px; height: 930px; transform: translateX(-50%); box-shadow: 0 0 0 90px rgba(18,97,255,.02), 0 0 0 180px rgba(18,97,255,.012); }
.ro-pricing-atmosphere div:last-child { right: -260px; bottom: -420px; width: 700px; height: 700px; }
.ro-anchor-alias { position: absolute; top: 0; }
.ro-pricing-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 18px; align-items: stretch; max-width: 1160px; margin: 0 auto; }
.ro-free-plan, .ro-lifetime-plan { position: relative; padding: clamp(30px, 4vw, 48px); border-radius: 34px; }
.ro-free-plan { display: flex; flex-direction: column; border: 1px solid rgba(9,47,117,.12); background: rgba(255,255,255,.72); box-shadow: inset 0 1px 0 #fff, 0 30px 70px rgba(18,66,143,.08); }
.ro-free-plan h3, .ro-lifetime-plan h3 { margin: 16px 0 0; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 900; letter-spacing: -.055em; }
.ro-plan-price { display: flex; align-items: flex-end; gap: 10px; margin-top: 25px; }
.ro-plan-price strong { color: var(--ro-ink); font-size: clamp(3.6rem, 5.8vw, 5.3rem); font-weight: 900; letter-spacing: -.075em; line-height: .8; }
.ro-plan-price span { margin-bottom: 4px; color: #8290a7; font-size: .7rem; font-weight: 700; }
.ro-free-plan > p { margin: 27px 0 0; color: var(--ro-copy); font-size: .88rem; line-height: 1.7; }
.ro-free-plan ul, .ro-lifetime-list { display: flex; flex-direction: column; gap: 14px; padding: 27px 0; margin: 28px 0; border-top: 1px solid var(--ro-line); border-bottom: 1px solid var(--ro-line); list-style: none; }
.ro-free-plan li, .ro-lifetime-list li { display: flex; align-items: flex-start; gap: 10px; color: #516078; font-size: .78rem; line-height: 1.5; }
.ro-free-plan li svg, .ro-lifetime-list li svg { width: 16px; min-width: 16px; color: var(--ro-blue); stroke-width: 2.5; }
.ro-free-plan .ro-button { margin-top: auto; }

.ro-lifetime-plan { color: #fff; border: 1px solid rgba(153,190,255,.32); background: radial-gradient(circle at 90% 0%, rgba(65,137,255,.45), transparent 32%), linear-gradient(145deg, #0b50dc 0%, #063ab2 52%, #062b88 100%); box-shadow: 0 42px 90px rgba(6,56,169,.28), inset 0 1px 0 rgba(255,255,255,.28), inset 0 -1px 0 rgba(0,13,64,.28); overflow: hidden; transform-style: preserve-3d; transition: transform .25s ease-out; }
.ro-lifetime-plan::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; pointer-events: none; }
.ro-plan-glass { position: absolute; top: -180px; right: -150px; width: 450px; height: 450px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.035), 0 0 0 90px rgba(255,255,255,.018); }
.ro-plan-sweep { position: absolute; inset: -30% auto -30% -70%; width: 40%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent); transform: skewX(-18deg); animation: roPlanSweep 7s 1.5s ease-in-out infinite; }
.ro-lifetime-plan > *:not(.ro-plan-glass,.ro-plan-sweep) { position: relative; z-index: 2; }
.ro-lifetime-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.ro-lifetime-plan .ro-plan-label { color: #c9ddff; }
.ro-best-value { padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 100px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.ro-lifetime-price { display: flex; align-items: flex-end; gap: 18px; margin-top: 25px; }
.ro-lifetime-price > strong { font-size: clamp(5rem, 8vw, 7.8rem); font-weight: 900; letter-spacing: -.085em; line-height: .76; }
.ro-lifetime-price > div { display: flex; flex-direction: column; padding-bottom: 2px; }
.ro-lifetime-price b { font-size: .9rem; font-weight: 800; }
.ro-lifetime-price span { margin-top: 3px; color: rgba(255,255,255,.48); font-size: .62rem; }
.ro-lifetime-lede { max-width: 580px; margin: 30px 0 0; color: rgba(236,243,255,.67); font-size: .9rem; line-height: 1.7; }
.ro-lifetime-includes { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 28px; }
.ro-lifetime-includes > div { display: flex; min-height: 90px; flex-direction: column; justify-content: center; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.07); }
.ro-lifetime-includes strong { font-size: 1.2rem; font-weight: 900; }
.ro-lifetime-includes span { margin-top: 5px; color: rgba(255,255,255,.46); font-size: .56rem; line-height: 1.3; }
.ro-lifetime-list { border-color: rgba(255,255,255,.13); }
.ro-lifetime-list li { color: rgba(255,255,255,.7); }
.ro-lifetime-list li svg { color: #fff; }
.ro-checkout-trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; color: rgba(255,255,255,.48); font-size: .61rem; }
.ro-checkout-trust svg { width: 15px; }

/* Reviews ---------------------------------------------------------------- */


.ro-reviews { background: #fff; }
.cv-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cv-rev-card { display: flex; min-height: 290px; flex-direction: column; padding: 30px; border: 1px solid rgba(8,44,113,.1); border-radius: 26px; background: #f8faff; box-shadow: inset 0 1px 0 #fff; transition: transform .4s var(--ro-ease), box-shadow .4s; }
.cv-rev-card:hover { transform: translateY(-6px); box-shadow: 0 26px 55px rgba(14,55,127,.09); }
.cv-rev-stars { color: var(--ro-blue); font-size: .82rem; letter-spacing: .12em; }
.cv-rev-text { flex: 1; margin: 25px 0; color: var(--ro-ink); font-size: .9rem; line-height: 1.75; }
.cv-rev-who { display: flex; align-items: center; gap: 12px; }
.cv-rev-av { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 13px; color: #fff; background: var(--ro-blue); font-size: .78rem; font-weight: 800; }
.cv-rev-meta { display: flex; flex-direction: column; }
.cv-rev-meta b { color: var(--ro-ink); font-size: .72rem; }
.cv-rev-meta small { margin-top: 3px; color: #75839a; font-size: .57rem; }
.ro-centered-action { margin-top: 40px; text-align: center; }

/* FAQ -------------------------------------------------------------------- */

.ro-faq { background: #f4f7fd; }
.ro-faq-layout { display: grid; grid-template-columns: .67fr 1.33fr; gap: clamp(70px, 9vw, 140px); align-items: start; }
.ro-faq-heading { position: sticky; top: 125px; }
.ro-faq-heading h2 { font-size: clamp(2.9rem, 4.7vw, 5rem); }
.ro-faq-heading > p { max-width: 430px; margin: 28px 0 25px; }
.ro-faq-list { border-top: 1px solid var(--ro-line); }
.ro-faq-list details { border-bottom: 1px solid var(--ro-line); }
.ro-faq-list summary { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 24px; color: var(--ro-ink); font-size: 1rem; font-weight: 800; letter-spacing: -.025em; list-style: none; cursor: pointer; }
.ro-faq-list summary::-webkit-details-marker { display: none; }
.ro-faq-list summary i { position: relative; width: 32px; height: 32px; flex: 0 0 32px; border: 1px solid rgba(18,97,255,.13); border-radius: 11px; background: rgba(18,97,255,.05); }
.ro-faq-list summary i::before, .ro-faq-list summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 1.5px; border-radius: 2px; background: var(--ro-blue); transform: translate(-50%,-50%); transition: transform .3s var(--ro-ease); }
.ro-faq-list summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.ro-faq-list details[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }
.ro-faq-list details > p { max-width: 760px; margin: -3px 52px 28px 0; color: var(--ro-copy); font-size: .85rem; line-height: 1.8; }

/* Closing and footer ------------------------------------------------------ */

.ro-closing { position: relative; padding: clamp(110px, 13vw, 190px) 0; color: #fff; background: linear-gradient(135deg, #0d59eb 0%, #0a4bce 48%, #07369e 100%); overflow: hidden; }
.ro-closing::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.17), transparent 38%); }
.ro-closing-lines i { position: absolute; top: 50%; left: 50%; width: 1300px; height: 480px; border: 1px solid rgba(255,255,255,.15); border-radius: 240px; transform: translate(-50%,-50%) rotate(-12deg); }
.ro-closing-lines i:nth-child(2) { width: 1120px; height: 350px; border-color: rgba(255,255,255,.09); }
.ro-closing-lines i:nth-child(3) { width: 930px; height: 230px; border-color: rgba(255,255,255,.07); }
.ro-closing-inner { z-index: 2; display: flex; align-items: center; flex-direction: column; text-align: center; }
.ro-closing-inner > img { width: 88px; margin-bottom: 30px; filter: drop-shadow(0 18px 32px rgba(0,24,95,.24)); }
.ro-closing .ro-overline { color: rgba(255,255,255,.64); }
.ro-closing h2 { color: #fff; font-size: clamp(3.5rem, 7vw, 7.2rem); }
.ro-closing h2 em {
  color: #c5dbff;
  background: none;
  -webkit-text-fill-color: currentColor;
  filter: none;
  animation: none;
  font-weight: 800;
}


.ro-closing-inner > p { max-width: 650px; margin: 30px auto 0; color: rgba(255,255,255,.65); }
.ro-closing .ro-hero-actions { justify-content: center; }

.footer { margin: 0; padding: 78px 0 0; color: #fff; background: #061126; border: 0; }
.footer-content { display: grid; grid-template-columns: 1.8fr repeat(3,1fr); gap: 70px; width: min(1360px, calc(100% - 64px)); margin: 0 auto; padding: 0 0 70px; }
.ro-footer-brand p { max-width: 320px; margin: 24px 0 0; color: rgba(224,235,255,.4); font-size: .78rem; line-height: 1.7; }
.footer .nav-title { margin: 0 0 22px; color: rgba(255,255,255,.72); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer .nav-links { display: flex; flex-direction: column; gap: 12px; }
.footer .nav-link { width: fit-content; color: rgba(224,235,255,.4); font-size: .72rem; transition: color .25s, transform .25s; }
.footer .nav-link:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.bottom-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; width: min(1360px, calc(100% - 64px)); margin: 0 auto; padding: 28px 0 36px; }
.footer .copyright { max-width: 900px; margin: 0; color: rgba(224,235,255,.27); font-size: .59rem; line-height: 1.7; }
.bottom-content > span { color: rgba(224,235,255,.32); font-size: .58rem; white-space: nowrap; }

/* Sticky conversion bar -------------------------------------------------- */

.cv-sticky { position: fixed; right: 22px; bottom: 22px; left: 22px; z-index: 9000; display: flex; max-width: 760px; align-items: center; justify-content: space-between; gap: 20px; margin: 0 auto; padding: 10px 10px 10px 15px; border: 1px solid rgba(255,255,255,.17); border-radius: 23px; color: #fff; background: rgba(5,16,43,.84); box-shadow: 0 24px 60px rgba(0,8,31,.34), inset 0 1px 0 rgba(255,255,255,.09); -webkit-backdrop-filter: blur(24px) saturate(135%); backdrop-filter: blur(24px) saturate(135%); transform: translateY(140%); transition: transform .55s var(--ro-ease); }
.cv-sticky.on { transform: translateY(0); }
.cv-sticky-brand { display: flex; align-items: center; gap: 10px; }
.cv-sticky-brand img { width: 36px; }
.cv-sticky-brand > span { display: flex; flex-direction: column; }
.cv-sticky-brand b { font-size: .7rem; }
.cv-sticky-brand small { margin-top: 2px; color: rgba(255,255,255,.38); font-size: .54rem; }
.cv-sticky-acts { display: flex; gap: 7px; }
.cv-sticky .ro-button { min-height: 44px; padding-inline: 17px; border-radius: 13px; font-size: .68rem; }

/* Reveal and motion ------------------------------------------------------- */

.no-js [data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .85s var(--ro-ease), transform .85s var(--ro-ease); }
.js [data-reveal="hero"] { transform: translateY(20px); }
.js [data-reveal][data-delay="1"] { transition-delay: .1s; }
.js [data-reveal][data-delay="2"] { transition-delay: .2s; }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes roBreathe { 0%,100% { transform: scale(.95); opacity: .42; } 50% { transform: scale(1.08); opacity: .66; } }
@keyframes roPulse { 0%,100% { opacity: .7; box-shadow: 0 0 0 5px rgba(133,178,255,.09); } 50% { opacity: 1; box-shadow: 0 0 0 9px rgba(133,178,255,.02); } }
@keyframes roTextFlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes roPremiumShine { 0%, 12% { background-position: 100% 50%; } 48%, 100% { background-position: 0% 50%; } }
@keyframes roShineHalo {
  0%, 100% { opacity: .7; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes roSpecularSweep {
  0%, 15% { background-position: 120% 50%; opacity: 0; }
  35% { opacity: .85; }
  55%, 100% { background-position: -20% 50%; opacity: 0; }
}

@keyframes roOnPanelPulse { 0%,100% { box-shadow: 0 18px 44px rgba(10,156,91,.08); } 50% { box-shadow: 0 22px 58px rgba(10,156,91,.18), 0 0 0 1px rgba(19,195,115,.08); } }
@keyframes roOffSignal { 0%,100% { box-shadow: 0 0 0 5px rgba(214,47,61,.08); opacity: .65; } 50% { box-shadow: 0 0 0 9px rgba(214,47,61,.02); opacity: 1; } }
@keyframes roOnSignal { 0%,100% { box-shadow: 0 0 0 5px rgba(10,156,91,.1), 0 0 8px rgba(10,156,91,.15); } 50% { box-shadow: 0 0 0 9px rgba(10,156,91,.02), 0 0 18px rgba(10,156,91,.36); } }
@keyframes roMetricIn { to { opacity: 1; transform: translateY(0); } }
@keyframes roOrbit { to { transform: rotate(353deg); } }
@keyframes roScan { 0%,12% { top: 0; opacity: 0; } 20% { opacity: 1; } 72% { top: 100%; opacity: .7; } 78%,100% { top: 100%; opacity: 0; } }
@keyframes roFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes roCore { to { transform: rotate(360deg); } }
@keyframes roGrow { to { transform: scaleX(1); } }
@keyframes roBars { from { height: 0; transform: scaleY(0); } to { height: var(--h, 34%); transform: scaleY(1); } }
@keyframes roChartGrow { to { width: var(--bar); } }
@keyframes roPlanSweep { 0%,15% { left: -70%; opacity: 0; } 32% { opacity: 1; } 52%,100% { left: 140%; opacity: 0; } }

/* Brand lockup (horizontal banner logo) ----------------------------------- */

.ro-brand-lockup { gap: 0; }
.ro-brand-lockup-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* Lift muted silver/blue lockup so it reads brighter and fuller on dark nav */
  filter: brightness(1.22) contrast(1.12) saturate(1.28);
  -webkit-filter: brightness(1.22) contrast(1.12) saturate(1.28);
}
.nav-container .ro-brand-lockup-img {
  filter: brightness(1.28) contrast(1.14) saturate(1.35);
  -webkit-filter: brightness(1.28) contrast(1.14) saturate(1.35);
}
.footer .ro-brand-lockup-img {
  height: 42px;
  filter: brightness(1.18) contrast(1.1) saturate(1.22);
  -webkit-filter: brightness(1.18) contrast(1.1) saturate(1.22);
}

/* Founder emblem panel (replaces stock/photo treatment) ------------------- */

.ro-founder-emblem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(circle at 50% 30%, rgba(43,110,255,.35), transparent 55%), linear-gradient(160deg, #071a3f, #051230 80%);
}
.ro-founder-emblem-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(133,177,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(133,177,255,.16) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
}
.ro-founder-emblem-rings { position: absolute; inset: 50% auto auto 50%; width: 300px; height: 300px; transform: translate(-50%,-50%); }
.ro-founder-emblem-rings i { position: absolute; border: 1px solid rgba(133,177,255,.16); border-radius: 50%; }
.ro-founder-emblem-rings i:nth-child(1) { inset: 0; animation: roCore 26s linear infinite; }
.ro-founder-emblem-rings i:nth-child(2) { inset: 34px; border-style: dashed; animation: roCore 19s linear infinite reverse; }
.ro-founder-emblem-rings i:nth-child(3) { inset: 68px; border-color: rgba(133,177,255,.3); }
.ro-founder-emblem-mark { position: relative; z-index: 2; width: 108px; height: 108px; object-fit: contain; filter: drop-shadow(0 18px 34px rgba(0,40,150,.4)); }
.ro-founder-telemetry { position: absolute; right: 24px; bottom: 78px; left: 24px; z-index: 2; display: flex; align-items: flex-end; gap: 5px; height: 44px; opacity: .55; }
.ro-founder-telemetry span { flex: 1; height: 20%; border-radius: 3px 3px 1px 1px; background: linear-gradient(180deg, #6da2ff, rgba(50,109,230,.15)); transform: scaleY(0); transform-origin: bottom; }
.ro-founder-telemetry span:nth-child(1) { height: 45%; } .ro-founder-telemetry span:nth-child(2) { height: 72%; }
.ro-founder-telemetry span:nth-child(3) { height: 38%; } .ro-founder-telemetry span:nth-child(4) { height: 90%; }
.ro-founder-telemetry span:nth-child(5) { height: 60%; } .ro-founder-telemetry span:nth-child(6) { height: 80%; }
.ro-founder-telemetry span:nth-child(7) { height: 50%; } .ro-founder-telemetry span:nth-child(8) { height: 68%; }
.is-visible .ro-founder-telemetry span { animation: roBars 1s var(--ro-ease) forwards; animation-delay: calc(var(--i, 0) * 60ms); }
.ro-founder-emblem > div:last-child { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: flex; flex-direction: column; }

/* Pricing ownership comparison (redesigned, explicit-example framing) ----- */

.ro-ownership-comparison {
  display: block;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 30px clamp(22px, 4vw, 40px);
  border: 1px solid rgba(9,47,117,.1);
  border-radius: 26px;
  background: rgba(255,255,255,.62);
  box-shadow: inset 0 1px 0 #fff, 0 30px 70px rgba(18,66,143,.06);
}
.ro-ownership-caption { margin-bottom: 22px; color: #7887a0; font-size: .68rem; font-weight: 600; line-height: 1.6; }
.ro-ownership-row { display: grid; grid-template-columns: 210px 1fr; gap: 18px; align-items: center; margin-bottom: 14px; }
.ro-ownership-row:last-of-type { margin-bottom: 20px; }
.ro-ownership-row > span { color: #56637a; font-size: .74rem; font-weight: 700; }
.ro-ownership-bar { position: relative; height: 30px; border-radius: 9px; background: rgba(9,47,117,.055); overflow: hidden; }
.ro-ownership-bar i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8997ac, #bdc7d5); }
.is-visible .ro-ownership-bar i { animation: roOwnGrow 1.1s .1s var(--ro-ease) forwards; }
.ro-ownership-bar b { position: absolute; inset: 50% 12px auto auto; color: var(--ro-ink); font-size: .68rem; font-weight: 800; transform: translateY(-50%); }
.ro-ownership-bar.is-radiant i { background: linear-gradient(90deg, #0e55e6, #5595ff); box-shadow: 0 0 16px rgba(20,100,230,.25); }
.ro-ownership-bar.is-radiant b { color: var(--ro-blue-deep); }
.ro-ownership-scale { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding-top: 18px; border-top: 1px solid var(--ro-line); }
.ro-ownership-scale span { color: #94a1b6; font-size: .62rem; font-weight: 600; text-align: center; line-height: 1.6; }
.ro-ownership-scale b { display: block; margin-top: 3px; color: var(--ro-ink); font-size: .82rem; font-weight: 800; }
@keyframes roOwnGrow { to { width: var(--cost); } }

/* Pipeline sequential glow (each icon pulses shortly after the traveling dot passes) */
@keyframes roPipelineGlow { 0%,100% { box-shadow: 0 14px 30px rgba(18,97,255,.08); } 50% { box-shadow: 0 14px 34px rgba(18,97,255,.28); } }

/* Reusable scroll-reveal variants ----------------------------------------- */

.js [data-reveal="side-left"] { transform: translate(-32px, 0); }
.js [data-reveal="side-right"] { transform: translate(32px, 0); }
.js [data-reveal="side-left"].is-visible,
.js [data-reveal="side-right"].is-visible { transform: translate(0, 0); }
.js [data-reveal="scale"] { transform: scale(.97); }
.js [data-reveal="scale"].is-visible { transform: scale(1); }
.js [data-reveal][data-delay="3"] { transition-delay: .3s; }
.js [data-reveal][data-delay="4"] { transition-delay: .4s; }

/* Product tour wheel: center sharp/full; sides soft-blur (see .cv-slide rules above) */
/* IntersectionObserver in home-redesign.js still toggles .cv-active as a backup. */

/* Nav active-tab sliding indicator ---------------------------------------- */

.nav-container .nav-tab-container { position: relative; }
.nav-container .nav-tab.active { transition: color .22s var(--ro-ease), background .32s var(--ro-ease), box-shadow .32s var(--ro-ease); }

/* Pointer-tilt clamp note: JS caps rotation to ±3deg; app-frame keeps its
   authored -3deg baseline yaw so the total swing stays within spec. */

/* ==========================================================================
   MOTION PASS 2 — AAA-grade choreography layer
   Scroll-progress driven parallax, ambient continuous motion, typography
   choreography, sequenced activations, and pointer-reactive lighting.
   All large-area ambient motion below uses `translate` (composited,
   transform-family) rather than animated background-position, per the
   performance constraint. `translate` composes independently of the
   `transform` property, so it layers safely on top of existing keyframe
   animations without fighting for the same CSS property.
   ========================================================================== */

/* ---- A + D: Hero layered parallax (scroll-progress driven) -------------- */
/* --sp is written by JS (0..1) on the [data-depth] ancestor and inherited
   by descendants. Each plane gets a different multiplier for depth. */
[data-depth] { --sp: 0; }

.ro-hero .ro-ambient-one,
.ro-hero .ro-ambient-two { translate: 0 calc(var(--sp, 0) * 34px); }
.ro-hero .ro-logo-road-a,
.ro-hero .ro-logo-road-b { translate: 0 calc(var(--sp, 0) * 58px); }
.ro-hero-copy { translate: 0 calc(var(--sp, 0) * -10px); }
.ro-hero-product { translate: 0 calc(var(--sp, 0) * -22px); }
.ro-float-chip-top { translate: 0 calc(var(--sp, 0) * -38px); }
.ro-float-chip-bottom { translate: 0 calc(var(--sp, 0) * 26px); }
.ro-proof-rail { translate: 0 calc(var(--sp, 0) * -8px); }

/* ---- G: Product tour depth (scroll-progress on section) ---------------- */
.ro-showcase-shell { translate: 0 calc(var(--sp, 0) * -14px); }

/* ---- Architecture section depth ---------------------------------------- */
.ro-architecture .ro-arch-orb-a { translate: 0 calc(var(--sp, 0) * 28px); }
.ro-architecture .ro-arch-orb-b { translate: 0 calc(var(--sp, 0) * -22px); }
.ro-architecture .ro-capability-map { translate: 0 calc(var(--sp, 0) * -10px); }

/* ---- I: Results build depth --------------------------------------------- */
.ro-results-copy { translate: 0 calc(var(--sp, 0) * -12px); }
.ro-performance-console { translate: 0 calc(var(--sp, 0) * 10px); }
.ro-results-orb-a { translate: 0 calc(var(--sp, 0) * 24px); }
.ro-results-orb-b { translate: 0 calc(var(--sp, 0) * -18px); }



/* ---- N: Closing finale depth --------------------------------------------- */
.ro-closing-lines { translate: 0 calc(var(--sp, 0) * 20px); }
.ro-closing-inner { translate: 0 calc(var(--sp, 0) * -8px); }

/* ---- A: Ambient continuous motion (transform-only seamless tile drift) -- */
/* Oversized (inset beyond the visible box by >= one tile) so the periodic
   translate loop never reveals an edge; existing mask-image/opacity already
   fades the pattern at the boundary. */
.ro-calibration-system::before {

  inset: -24px;
  translate: 0 0;
  animation: roGridDrift18 22s linear infinite;
}
.ro-founder-emblem-grid {
  inset: -40px;
  animation: roGridDrift34 34s linear infinite;
}
@keyframes roGridDrift18 { to { translate: -18px -18px; } }
@keyframes roGridDrift34 { to { translate: -34px -34px; } }

/* Slow idle rotation on existing decorative ring/orbit outlines (pure
   transform, cheap even continuously). */
.ro-showcase::before { animation: roCore 70s linear infinite; }
.ro-results::before { animation: roCore 85s linear infinite reverse; }
.ro-pricing-atmosphere div:first-child { animation: roCore 60s linear infinite; }
.ro-pricing-atmosphere div:last-child { animation: roCore 75s linear infinite reverse; }
.ro-closing-lines i:nth-child(1) { animation: roCore 90s linear infinite; }
.ro-closing-lines i:nth-child(2) { animation: roCore 110s linear infinite reverse; }
.ro-closing-lines i:nth-child(3) { animation: roCore 130s linear infinite; }

/* Founder emblem idle illumination breathe (very subtle, after activation) */
.ro-founder-emblem-mark { animation: roEmblemGlow 7s ease-in-out infinite; }
@keyframes roEmblemGlow {
  0%, 100% { filter: drop-shadow(0 18px 34px rgba(0,40,150,.4)); }
  50% { filter: drop-shadow(0 20px 42px rgba(40,110,255,.55)); }
}

/* ---- E: Typography choreography (major headlines only) ----------------- */
/* Masked line reveal via clip-path — applied only to h1/h2 within existing
   [data-reveal] wrappers, riding the same one-time is-visible trigger. */
.js [data-reveal] h1,
.js [data-reveal] .ro-section-intro h2,
.js [data-reveal] .ro-results-copy h2,
.js .ro-results-copy[data-reveal] h2,
.js [data-reveal] .ro-faq-heading h2,
.js .ro-founder-story h2,
.js .ro-closing-inner h2 {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ro-ease) .08s;
}
[data-reveal].is-visible h1,
[data-reveal].is-visible .ro-section-intro h2,
[data-reveal].is-visible .ro-results-copy h2,
.ro-results-copy[data-reveal].is-visible h2,
[data-reveal].is-visible .ro-faq-heading h2,
.ro-founder-card.is-visible .ro-founder-story h2,
.ro-closing-inner.is-visible h2 {
  clip-path: inset(0 0 0% 0);
}

/* Closing headline gets an added blur-to-sharp pass for finale emphasis */
.js .ro-closing-inner h2 {
  filter: blur(16px);
  transition: clip-path 1s var(--ro-ease) .08s, filter 1.1s ease .1s;
}
.ro-closing-inner.is-visible h2 { filter: blur(0); }

/* ---- F: Technology activation sequence ---------------------------------- */
.ro-calibration-stage .ro-hardware-core > img {
  opacity: 0;
  scale: .7;
  transition: opacity .6s ease .1s, scale .7s cubic-bezier(.34,1.56,.64,1) .1s;
}
.ro-calibration-stage.is-visible .ro-hardware-core > img { opacity: 1; scale: 1; }

.ro-calibration-copy article {
  opacity: 0;
  translate: 0 16px;
  transition: opacity .6s ease, translate .6s var(--ro-ease);
}
.ro-calibration-stage.is-visible .ro-calibration-copy article:nth-child(1) { opacity: 1; translate: 0 0; transition-delay: .15s; }
.ro-calibration-stage.is-visible .ro-calibration-copy article:nth-child(2) { opacity: 1; translate: 0 0; transition-delay: .32s; }
.ro-calibration-stage.is-visible .ro-calibration-copy article:nth-child(3) { opacity: 1; translate: 0 0; transition-delay: .49s; }

/* ---- J: Safety sequential activation + connector line ------------------- */
.ro-safety-list { position: relative; }
.ro-safety-list::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: linear-gradient(180deg, rgba(18,97,255,.35), rgba(18,97,255,.05));
  scale: 1 0;
  transform-origin: top;
  transition: scale 1.2s var(--ro-ease) .15s;
}
.ro-safety-list.is-visible::before { scale: 1 1; }

/* ---- H + L: Pointer-reactive card lighting (single active listener) ----- */
/* JS attaches --mx/--my only to the element under the pointer; all cards
   share this rule but only the hovered one carries live coordinates. */
.ro-capability,
.ro-free-plan,
.ro-lifetime-plan {
  isolation: isolate;
}
.ro-capability::before,
.ro-free-plan::before,
.ro-lifetime-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(120,170,255,.16), transparent 72%);
}
.ro-lifetime-plan::before {
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.14), transparent 72%);
}
.ro-capability:hover::before,
.ro-free-plan:hover::before,
.ro-lifetime-plan:hover::before { opacity: 1; }

/* ---- G: Product tour — smoother momentum + pointer depth on active slide */
.cv-carousel { scroll-snap-stop: always; }
.cv-slide-cap { transition: opacity .4s ease, translate .4s var(--ro-ease), filter .4s ease; }
.cv-slide:not(.cv-active) .cv-slide-cap { opacity: .45; filter: blur(0.4px); }
.cv-slide.cv-active .cv-slide-cap { opacity: 1; filter: none; }

/* ---- O: Microinteraction audit additions -------------------------------- */
.cv-arrow:active { transform: translateY(-50%) scale(.94); }
.cv-dot:focus-visible,
.cv-arrow:focus-visible { outline: 2px solid var(--ro-sky); outline-offset: 2px; }
.ro-faq-list summary:focus-visible { outline: 2px solid var(--ro-sky); outline-offset: -2px; border-radius: 10px; }
.ro-text-link:focus-visible,
.footer .nav-link:focus-visible { outline: 2px solid var(--ro-sky); outline-offset: 3px; border-radius: 4px; }
.nav-container .nav-tab:active { transform: scale(.96); }

/* ---- Q: Reduced motion — disable all Motion Pass 2 systems -------------- */
/* Forced off: this homepage always animates regardless of the OS/browser
   reduced-motion preference. The (width: 0px) clause never matches, which
   keeps the rule block intact (for future re-enabling) while making it inert. */
@media (prefers-reduced-motion: reduce) and (width: 0px) {
  [data-depth] *,
  .ro-hero .ro-ambient-one, .ro-hero .ro-ambient-two,
  .ro-hero .ro-logo-road-a, .ro-hero .ro-logo-road-b,
  .ro-hero-copy, .ro-hero-product, .ro-float-chip-top, .ro-float-chip-bottom,
  .ro-proof-rail, .ro-showcase-shell, .ro-results-copy, .ro-performance-console,
  .ro-closing-lines, .ro-closing-inner, .cv-slide {
    translate: none !important;
  }
  .js [data-reveal] h1,
  .js [data-reveal] .ro-section-intro h2,
  .js [data-reveal] .ro-results-copy h2,
  .js [data-reveal] .ro-faq-heading h2,
  .js .ro-founder-story h2,
  .js .ro-closing-inner h2 {
    clip-path: none !important;
    filter: none !important;
  }
  .ro-premise::before, .ro-calibration-system::before, .ro-founder-emblem-grid,
  .ro-showcase::before, .ro-results::before,
  .ro-pricing-atmosphere div, .ro-closing-lines i, .ro-founder-emblem-mark {
    animation: none !important;
  }
  .ro-safety-list::before { scale: 1 1 !important; transition: none !important; }
}

/* Responsive -------------------------------------------------------------- */



@media (max-width: 1240px) {
  .ro-hero-grid { grid-template-columns: .8fr 1.25fr; gap: 40px; }

  .ro-hero h1 { font-size: clamp(3.75rem, 6.4vw, 6rem); }
  .ro-capability-map { grid-template-columns: 1fr 1fr; }
  .ro-capability-main { grid-row: span 2; }
  .ro-capability-wide { grid-column: span 2; }
  .ro-ownership-row { grid-template-columns: 170px 1fr; }
  .ro-layer-rail-steps { gap: 10px 12px; }
}



@media (max-width: 1024px) {
  :root { --nav-height: 78px; }
  .ro-shell { width: min(100% - 40px, 920px); }
  .ro-section { padding: 110px 0; }
  .nav-container .nav { padding-inline: 20px !important; }
  .ro-brand-name { display: none; }
  .ro-hero { padding-top: 140px; }
  .ro-hero-grid { grid-template-columns: 1fr; gap: 85px; }
  .ro-hero-copy { max-width: 760px; text-align: center; margin-inline: auto; }
  .ro-kicker, .ro-hero-actions { justify-content: center; margin-inline: auto; }
  .ro-hero-lede { margin-inline: auto; }
  .ro-hero-assurance { justify-content: center; }
  .ro-hero-product { width: min(920px, 96%); margin-inline: auto; }

  .ro-proof-rail { margin-top: 100px; }
  .ro-section-intro-split { grid-template-columns: 1fr; gap: 30px; }
  .ro-section-intro-split > p { max-width: 680px; }
  .ro-calibration-stage { grid-template-columns: 1fr; }
  .ro-rent-owner { grid-template-columns: 1fr; }
  .ro-rent-vs { padding: 4px 0; }
  .ro-results-grid { grid-template-columns: 1fr; }
  .ro-results-copy { max-width: 760px; }
  .ro-console-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .ro-packetflow-split { grid-template-columns: 1fr; }
  .ro-pf-truth-grid { grid-template-columns: 1fr; gap: 18px; }
  .ro-netpath { flex-wrap: wrap; gap: 18px 0; justify-content: center; }
  .ro-netpath-track { flex-basis: 36px; margin-top: 28px; }
  .ro-pf-truth { padding: 28px 24px; }
  .ro-pipeline { flex-wrap: wrap; gap: 20px 0; }
  .ro-pipeline-track { flex-basis: 40px; }
  .ro-safety-layout { grid-template-columns: 1fr; }

  .ro-safety-seal { min-height: 450px; }
  .ro-founder-card { grid-template-columns: .8fr 1.2fr; }
  .ro-founder-story { padding: 48px; }
  .ro-pricing-layout { grid-template-columns: 1fr; max-width: 760px; }
  .ro-free-plan { order: 2; }
  .ro-lifetime-plan { order: 1; }
  .ro-ownership-comparison { max-width: 760px; }
  .ro-ownership-row { grid-template-columns: 1fr; gap: 8px; }

  .cv-reviews { grid-template-columns: 1fr 1fr; }
  .ro-faq-layout { grid-template-columns: 1fr; gap: 60px; }
  .ro-faq-heading { position: static; max-width: 700px; }
}

@media (max-width: 760px) {
  .ro-shell, .footer-content, .bottom-content { width: min(100% - 28px, 680px); }
  .ro-section { padding: 86px 0; }
  .ro-section-intro-center { margin-bottom: 50px; }
  .ro-section-intro h2, .ro-results-copy h2, .ro-faq-heading h2 { font-size: clamp(2.55rem, 11vw, 4.3rem); }
  .ro-section-intro-split { margin-bottom: 52px; }
  .nav-container .nav { padding-inline: 14px !important; }
  .nav-container .nav-signup-btn, .nav-container .nav-dashboard-btn { padding-inline: 13px !important; }
  .ro-hero { padding: 122px 0 30px; }
  .ro-hero-copy { width: 100%; overflow: hidden; }
  .ro-hero h1 { max-width: 100%; font-size: clamp(2.6rem, 10.6vw, 4rem); letter-spacing: -.045em; }
  .ro-hero-lede { font-size: .95rem; }
  .ro-hero-product { width: 100%; }
  .ro-app-frame { border-radius: 20px; transform: none !important; }
  .ro-app-frame-top { height: 43px; padding: 0 13px; }
  .ro-app-identity { font-size: .58rem; }
  .ro-app-identity img { width: 22px; }
  .ro-float-chip { min-width: 150px; padding: 9px 10px; border-radius: 14px; }
  .ro-float-chip-top { top: -34px; right: -3px; }
  .ro-float-chip-bottom { bottom: -32px; left: -3px; }
  .ro-float-icon { width: 32px; height: 32px; border-radius: 10px; }
  .ro-float-icon svg { width: 17px; }
  .ro-proof-rail { grid-template-columns: 1fr 1fr; border-radius: 22px; }
  .ro-proof-rail > div { min-height: 90px; padding: 18px 20px; }
  .ro-proof-rail > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .ro-proof-rail > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.09); }
  .ro-calibration-stage { padding: 8px; border-radius: 29px; }
  .ro-calibration-system { min-height: 540px; padding: 20px; border-radius: 22px; }
  .ro-fps-video-panel { min-height: 0; padding: 0; }
  .ro-hardware-core { height: 275px; }
  .ro-calibration-copy { padding: 15px 20px; }
  .ro-fps-comparison-copy { padding: 16px 8px 8px; }
  .ro-calibration-copy article { grid-template-columns: 40px 1fr; gap: 16px; padding: 25px 0; }
  .ro-showcase-shell { border-radius: 25px; padding: 8px 8px 22px; }
  .cv-slide { flex-basis: 86vw; border-radius: 17px; }
  .cv-slide-cap { display: block; min-height: 82px; }
  .cv-slide-cap span { display: block; margin-top: 5px; text-align: left; }
  .cv-arrow { display: none; }
  .cv-dots { max-width: 230px; margin-inline: auto; flex-wrap: wrap; }
  .cv-dot:nth-child(n+11) { display: none; }
  .ro-capability-map { grid-template-columns: 1fr; }
  .ro-capability-main { min-height: 520px; grid-row: auto; }
  .ro-capability-wide { grid-column: auto; grid-template-columns: auto 1fr; }
  .ro-layer-rail { margin-bottom: 28px; }
  .ro-layer-rail-steps span { font-size: .55rem; }
  .ro-cap-orbit { width: 200px; height: 200px; right: -60px; opacity: .4; }
  .ro-capability-top { margin-bottom: 28px; }

  .ro-performance-console { padding: 8px; border-radius: 25px; }
  .ro-console-chart { padding: 14px; }
  .ro-chart-row { grid-template-columns: 1fr; gap: 10px; }
  .ro-latency-row { grid-template-columns: 1fr; gap: 8px; }
  .ro-results-stat-row { grid-template-columns: 1fr; }
  .ro-console-metrics { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ro-console-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ro-console-head small { text-align: left; }
  .ro-console-footer { gap: 13px; }
  .ro-pacing-bars { height: 30px; }

  .ro-netpath-step { max-width: 110px; }
  .ro-netpath-icon { width: 48px; height: 48px; border-radius: 14px; }
  .ro-netpath-icon svg { width: 22px; height: 22px; }
  .ro-netpath-step label { font-size: 0.62rem; }
  .ro-netpath-step small { font-size: 0.52rem; }
  .ro-packetflow-pathnote { font-size: 0.78rem; margin-bottom: 36px; }
  .ro-pf-card { padding: 22px 18px 20px; border-radius: 22px; }
  .ro-pf-card-head > strong { font-size: 1.12rem; }
  .ro-pf-metrics { grid-template-columns: 1fr; }
  .ro-pf-truth h3 { font-size: 1.25rem; }

  .ro-founder-card { grid-template-columns: 1fr; padding: 8px; border-radius: 30px; }

  .ro-founder-portrait { min-height: 440px; border-radius: 23px; }
  .ro-founder-story { padding: 42px 24px; }
  .ro-founder-story h2 { font-size: clamp(2.5rem, 10vw, 4.2rem); }
  .ro-free-plan, .ro-lifetime-plan { padding: 32px 24px; border-radius: 27px; }
  .ro-lifetime-includes { grid-template-columns: 1fr 1fr; }
  .ro-lifetime-plan { transform: none !important; }
  .cv-reviews { grid-template-columns: 1fr; }
  .ro-closing h2 { font-size: clamp(3.2rem, 14vw, 5.4rem); }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 48px 26px; }
  .ro-footer-brand { grid-column: 1 / -1; }
  .bottom-content { align-items: flex-start; flex-direction: column; }
  .cv-sticky { right: 10px; bottom: 10px; left: 10px; padding-left: 10px; }
  .cv-sticky-brand > span { display: none; }
  .cv-sticky-acts { flex: 1; }
  .cv-sticky .ro-button { flex: 1; }
}

@media (max-width: 520px) {
  .nav-container #signinBtn,
  html[data-auth="out"] .nav-container #signinBtn { display: none !important; }
  .ro-hero-actions { flex-direction: column; width: 100%; }
  .ro-hero-actions .ro-button { width: 100%; }
  .ro-hero-assurance { gap: 9px 14px; }
  .ro-hero-assurance span { font-size: .62rem; }
  .ro-hardware-specs { grid-template-columns: 1fr; }
  .ro-calibration-system { min-height: 700px; }
  .ro-fps-video-panel { min-height: 0; }
  .ro-fps-state-label { flex-wrap: wrap; }
  .ro-fps-state-label small { width: 100%; margin-left: 18px; }
  .ro-capability-wide { grid-template-columns: 1fr; }
  .ro-capability-wide .ro-capability-top { flex-direction: row; align-items: center; width: 100%; }
  .ro-capability-wide .ro-cap-wide-body { grid-column: 1; }
  .ro-game-line { grid-column: auto; }
  .ro-layer-rail-steps { justify-content: flex-start; }
  .ro-arch-orb-a, .ro-arch-orb-b { width: 260px; height: 260px; }

  .ro-lifetime-price { align-items: flex-start; flex-direction: column; }
  .ro-lifetime-price > div { padding: 0; }
  .ro-faq-list summary { min-height: 84px; font-size: .9rem; }
  .footer-content { grid-template-columns: 1fr; }
  .ro-footer-brand { grid-column: auto; }
  .cv-sticky .ro-button { padding-inline: 10px; font-size: .61rem; }
}

@media (prefers-reduced-motion: reduce) and (width: 0px) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .ro-app-frame, .ro-lifetime-plan { transform: none !important; }
  .ro-hardware-specs span { transform: scaleX(1); }
  .ro-chart-track i { width: var(--bar); }
  .ro-latency-bar i { width: var(--lat); }
  .ro-pacing-bars i { height: var(--h, 50%); }
  .ro-results-stat,
  .ro-console-metric,
  .ro-chart-row,
  .ro-latency-row,
  .ro-results-points span {
    opacity: 1 !important;
    transform: none !important;
  }
  .ro-signal-graph i { height: var(--h, 34%); transform: scaleY(1); }

  .ro-cap-meter span { width: var(--fill, 60%); }
  .ro-layer-rail-track i { width: 100%; }
  .ro-cap-tags li, .ro-game-line span, .ro-layer-rail-steps span { opacity: 1; transform: none; }
  .ro-arch-orb, .ro-cap-orbit i { animation: none !important; }
  .ro-pf-bars i { height: var(--h, 50%); }
  .ro-pf-spark-line { stroke-dashoffset: 0; }
  .ro-pf-spark-fill { opacity: 1; }
}


