.rv-home-body {
  background: #fffaf2;
  color: #112138;
  font-family: "Manrope", system-ui, sans-serif;
  --rv-control-height: 48px;
  --rv-badge-visual-height: 44px;
}

.rv-home-body main.pb7 {
  padding-bottom: 0;
}

.rv-home-body * {
  box-sizing: border-box;
}

.rv-home-body a {
  color: inherit;
}

.rv-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.rv-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 242, 0.82);
  border-bottom: 1px solid rgba(17, 33, 56, 0.08);
}

.rv-topbar .rv-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.rv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.rv-brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a18, #ffd400);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.18);
}

.rv-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rv-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2d3d57;
  font-weight: 600;
  min-height: 40px;
  padding: 0 0.8rem;
  border-radius: 999px;
}

.rv-nav a:hover {
  background: rgba(17, 33, 56, 0.05);
}

.rv-nav .rv-nav-cta {
  background: #112138;
  color: #fff;
}

.rv-nav .rv-nav-cta:hover {
  background: #0a1528;
}

.rv-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 2rem;
  isolation: isolate;
}

.rv-hero::before,
.rv-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.rv-hero::before {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 35% 35%, #9ff6d0, #43d9bd 55%, transparent 70%);
  top: -80px;
  right: -40px;
}

.rv-hero::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 45% 45%, #ffd772, #ff8f4d 55%, transparent 72%);
  bottom: -130px;
  left: -60px;
}

.rv-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.rv-kicker {
  margin: 0 0 0.7rem;
  color: #ff6d2d;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.rv-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.rv-lead {
  margin: 1rem 0 0;
  color: #42526b;
  font-size: 1.06rem;
  line-height: 1.6;
  max-width: 60ch;
}

.rv-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.rv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  min-height: var(--rv-control-height);
  padding: 0 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.rv-btn:hover {
  transform: translateY(-1px);
}

.rv-btn-primary {
  background: linear-gradient(135deg, #ff7a18, #ffb300);
  color: #0b1422;
  box-shadow: 0 10px 22px rgba(255, 122, 24, 0.24);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.rv-btn-primary:hover {
  box-shadow: 0 12px 28px rgba(255, 122, 24, 0.3);
}

.rv-btn-secondary {
  background: #ffffff;
  color: #112138;
  border: 1px solid rgba(17, 33, 56, 0.12);
}

.rv-btn-secondary:hover {
  background: #f6f8fb;
}

.rv-btn-light {
  background: linear-gradient(135deg, #90ffe1, #42dfbe);
  box-shadow: 0 10px 24px rgba(66, 223, 190, 0.22);
}

.rv-btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.rv-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.rv-helper {
  margin: 0.85rem 0 0;
  color: #5b687b;
  font-size: 0.95rem;
}

.rv-inline-link {
  display: inline-flex;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: 800;
  color: #112138;
  border-bottom: 2px solid rgba(17, 33, 56, 0.18);
  padding-bottom: 0.15rem;
}

.rv-inline-link:hover {
  border-color: #ff7a18;
}

.rv-chip-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.rv-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 33, 56, 0.05);
  color: #20314b;
  font-weight: 700;
  font-size: 0.85rem;
}

.rv-visual {
  position: relative;
  min-height: 520px;
}

.rv-panel {
  position: absolute;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 33, 56, 0.08);
  box-shadow: 0 18px 44px rgba(17, 33, 56, 0.12);
  backdrop-filter: blur(10px);
}

.rv-panel-main {
  top: 10px;
  left: 10px;
  right: 60px;
  padding: 1.1rem;
}

.rv-panel-main h3 {
  margin: 0.85rem 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

.rv-panel-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rv-pill {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.rv-pill-orange {
  background: #fff0d8;
  color: #b55b00;
}

.rv-pill-cyan {
  background: #dffcf5;
  color: #047f69;
}

.rv-mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.rv-mini-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #3f4f67;
  font-weight: 600;
}

.rv-mini-list span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #42dfbe;
  flex: 0 0 auto;
}

.rv-progress {
  height: 10px;
  margin-top: 0.9rem;
  background: #eef2f7;
  border-radius: 999px;
  overflow: hidden;
}

.rv-progress-fill {
  width: 74%;
  height: 100%;
  background: linear-gradient(90deg, #42dfbe, #7cf2d0, #ffd056);
}

.rv-panel-side {
  top: 220px;
  left: 60px;
  right: 0;
  padding: 1rem;
}

.rv-link-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.rv-link-box {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(17, 33, 56, 0.08);
  padding: 0.8rem;
  box-shadow: 0 8px 18px rgba(17, 33, 56, 0.08);
}

.rv-link-box strong {
  display: block;
  font-size: 0.95rem;
}

.rv-link-box small {
  color: #5b687b;
}

.rv-link-arrow {
  color: #ff7a18;
  font-weight: 900;
  text-align: center;
}

.rv-panel-tv {
  bottom: 0;
  right: 30px;
  width: min(360px, 86%);
  padding: 0.9rem;
}

.rv-tv-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #20314b;
}

.rv-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.rv-dot-live {
  background: #31d574;
  box-shadow: 0 0 0 4px rgba(49, 213, 116, 0.18);
}

.rv-tv-screen {
  margin-top: 0.7rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #112138, #0f3552);
  color: #fff;
  padding: 0.85rem;
}

.rv-tv-banner {
  display: inline-block;
  background: #ffb300;
  color: #0f1627;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
}

.rv-tv-cards {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.rv-tv-cards div {
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(66, 223, 190, 0.38));
}

.rv-panel-tv p {
  margin: 0.65rem 0 0;
  color: #57657a;
  font-weight: 700;
  font-size: 0.87rem;
}

.rv-strip {
  padding: 1rem 0 0.5rem;
}

.rv-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.rv-strip-grid > div {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 33, 56, 0.08);
  padding: 1rem;
}

.rv-strip-grid strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
}

.rv-strip-grid p {
  margin: 0;
  color: #57657a;
  line-height: 1.5;
}

.rv-section {
  padding: 4rem 0;
}

.rv-section-soft {
  background:
    radial-gradient(circle at 5% 15%, rgba(255, 217, 117, 0.22), transparent 45%),
    radial-gradient(circle at 95% 85%, rgba(66, 223, 190, 0.16), transparent 42%),
    #fffef8;
  border-top: 1px solid rgba(17, 33, 56, 0.05);
  border-bottom: 1px solid rgba(17, 33, 56, 0.05);
}

.rv-section-dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(66, 223, 190, 0.18), transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(255, 122, 24, 0.2), transparent 40%),
    #101c2f;
  color: #eef6ff;
}

.rv-section-head {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 760px;
}

.rv-section-head h2 {
  margin: 0.25rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.rv-section-head p:last-child {
  margin: 0.85rem 0 0;
  color: #55647a;
  line-height: 1.6;
}

.rv-section-head-left {
  text-align: left;
  margin: 0;
}

.rv-kicker-light {
  color: #86ffe0;
}

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

.rv-step {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(17, 33, 56, 0.08);
  padding: 1rem;
  box-shadow: 0 12px 26px rgba(17, 33, 56, 0.06);
}

.rv-step-num {
  display: inline-block;
  color: #ff6d2d;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
}

.rv-step h3 {
  margin: 0.5rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

.rv-step p {
  margin: 0.6rem 0 0;
  color: #57657a;
  line-height: 1.55;
}

.rv-app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.rv-app-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 33, 56, 0.08);
  border-radius: 22px;
  padding: 1.2rem;
  box-shadow: 0 16px 32px rgba(17, 33, 56, 0.08);
}

.rv-app-card h3 {
  margin: 0.55rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
}

.rv-card-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rv-app-cartelix .rv-card-badge {
  background: #e5fff7;
  color: #017d66;
}

.rv-app-tv .rv-card-badge {
  background: #fff0d8;
  color: #b75a00;
}

.rv-app-subtitle {
  margin: 0.45rem 0 0;
  color: #4e5d73;
  line-height: 1.55;
}

.rv-app-card ul {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.rv-app-card li {
  position: relative;
  padding-left: 1.15rem;
  color: #31425b;
  line-height: 1.45;
}

.rv-app-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #42dfbe;
}

.rv-app-tv li::before {
  background: #ff8a3d;
}

.rv-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.rv-platforms span {
  border-radius: 999px;
  background: rgba(17, 33, 56, 0.06);
  padding: 0.35rem 0.65rem;
  font-weight: 700;
  font-size: 0.8rem;
}

.rv-card-links {
  margin-top: 1rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.rv-card-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--rv-control-height);
  text-decoration: none;
  font-weight: 800;
  color: #112138;
  background: #fff;
  border: 1px solid rgba(17, 33, 56, 0.12);
  border-radius: 12px;
  padding: 0 0.8rem;
}

.rv-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.rv-benefits article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(17, 33, 56, 0.08);
  border-radius: 20px;
  padding: 1rem;
}

.rv-benefits h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

.rv-benefits p {
  margin: 0.5rem 0 0;
  color: #57657a;
  line-height: 1.55;
}

.rv-install-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.rv-section-dark h2 {
  margin: 0.25rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.6rem, 3.1vw, 2.6rem);
}

.rv-section-dark .rv-section-head p:last-child {
  color: rgba(238, 246, 255, 0.8);
}

.rv-cta-steps {
  display: grid;
  gap: 1rem;
}

.rv-cta-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: stretch;
}

.rv-step-giant {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #86ffe0;
  letter-spacing: 0.04em;
}

.rv-cta-step-card {
  border-radius: 20px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.rv-cta-step-kicker {
  margin: 0;
  color: #86ffe0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.rv-cta-step-card h3 {
  margin: 0.35rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  color: #fff;
}

.rv-cta-step-card > p:last-of-type {
  margin: 0.55rem 0 0;
  color: rgba(238, 246, 255, 0.84);
}

.rv-store-badges {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.rv-store-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--rv-control-height);
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.rv-store-badges a:hover {
  transform: translateY(-1px);
}

.rv-store-badges img {
  display: block;
  height: var(--rv-badge-visual-height);
  width: auto;
}

.rv-store-badges-single img {
  height: var(--rv-badge-visual-height);
}

.rv-apk-secondary {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  color: rgba(238, 246, 255, 0.85);
}

.rv-apk-secondary span {
  font-weight: 700;
}

.rv-apk-secondary a {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}

.rv-apk-secondary a:hover {
  border-color: #86ffe0;
}

.rv-faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.rv-faq-list {
  display: grid;
  gap: 0.75rem;
}

.rv-faq-list details {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(17, 33, 56, 0.08);
  padding: 0.9rem 1rem;
}

.rv-faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.rv-faq-list summary::-webkit-details-marker {
  display: none;
}

.rv-faq-list p {
  margin: 0.6rem 0 0;
  color: #56657b;
  line-height: 1.55;
}

.rv-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(17, 33, 56, 0.08);
  background: rgba(255, 255, 255, 0.66);
}

.rv-links-end {
  padding-top: 0;
}

.rv-links-end-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 33, 56, 0.08);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(17, 33, 56, 0.07);
}

.rv-links-end-card h2 {
  margin: 0.15rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.rv-links-end-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rv-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.rv-footer p {
  margin: 0.35rem 0 0;
  color: #5a687d;
}

.rv-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.rv-footer-links a {
  text-decoration: none;
  font-weight: 700;
  color: #22334d;
}

@media (max-width: 1040px) {
  .rv-hero-grid,
  .rv-install-grid,
  .rv-faq {
    grid-template-columns: 1fr;
  }

  .rv-visual {
    min-height: 470px;
  }

  .rv-panel-main {
    right: 20px;
  }

  .rv-panel-side {
    left: 20px;
  }

  .rv-panel-tv {
    right: 10px;
  }
}

@media (max-width: 900px) {
  .rv-strip-grid,
  .rv-steps,
  .rv-app-grid,
  .rv-benefits {
    grid-template-columns: 1fr;
  }

  .rv-cta-step {
    grid-template-columns: 1fr;
  }

  .rv-step-giant {
    min-height: 72px;
  }

  .rv-link-flow {
    grid-template-columns: 1fr;
  }

  .rv-link-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 720px) {
  .rv-topbar .rv-shell {
    min-height: auto;
    padding: 0.75rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .rv-nav {
    width: 100%;
  }

  .rv-nav a {
    padding: 0.5rem 0.7rem;
  }

  .rv-hero {
    padding-top: 1.7rem;
  }

  .rv-visual {
    min-height: 440px;
  }

  .rv-panel-main {
    left: 0;
    right: 0;
  }

  .rv-panel-side {
    left: 0;
    right: 0;
    top: 210px;
  }

  .rv-panel-tv {
    width: 100%;
    right: 0;
  }

  .rv-section {
    padding: 3rem 0;
  }

  .rv-title {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv-btn {
    transition: none;
  }

  .rv-btn:hover {
    transform: none;
  }
}
