/*
Theme Name: Rank Vision
Theme URI: https://resultbharats.com/
Author: Rank Vision
Author URI: https://resultbharats.com/
Description: A premium Rank Vision WordPress theme with a mobile-friendly homepage, full desktop-mode inner pages, update cards, social media controls, status badges, centered footer, and dark/bright mode.
Version: 1.0.26.5
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rank-vision
Tags: blog, news, custom-logo, custom-menu, featured-images, translation-ready, accessibility-ready
*/

:root {
  --rv-bg: #f4f7fb;
  --rv-surface: #ffffff;
  --rv-surface-2: #eef3f9;
  --rv-text: #18212f;
  --rv-muted: #697586;
  --rv-border: #dce4ee;
  --rv-primary: #0f5bd7;
  --rv-primary-dark: #0a3f9b;
  --rv-accent: #ffb703;
  --rv-success: #14804a;
  --rv-danger: #c62828;
  --rv-shadow: 0 12px 35px rgba(25, 45, 78, .09);
  --rv-radius: 18px;
  --rv-max: 1180px;
}

html[data-theme="dark"] {
  --rv-bg: #0d1118;
  --rv-surface: #151b24;
  --rv-surface-2: #1b2430;
  --rv-text: #eef4ff;
  --rv-muted: #aab5c4;
  --rv-border: #2a3544;
  --rv-primary: #69a4ff;
  --rv-primary-dark: #9bc2ff;
  --rv-accent: #ffc94a;
  --rv-success: #59d18d;
  --rv-danger: #ff7a7a;
  --rv-shadow: 0 16px 44px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rv-bg);
  color: var(--rv-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  transition: background-color .2s ease, color .2s ease;
}
img { max-width: 100%; height: auto; }
a { color: var(--rv-primary); text-decoration: none; }
a:hover { color: var(--rv-primary-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.screen-reader-text:focus {
  position: fixed !important;
  left: 16px; top: 16px;
  width: auto; height: auto;
  padding: 10px 14px; margin: 0;
  overflow: visible; clip: auto;
  background: var(--rv-surface); color: var(--rv-text);
  z-index: 100000; border-radius: 8px;
}

.rv-container { width: min(calc(100% - 32px), var(--rv-max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: color-mix(in srgb, var(--rv-surface) 92%, transparent);
  border-bottom: 1px solid var(--rv-border);
  backdrop-filter: blur(14px);
}
.admin-bar .site-header { top: 32px; }
.rv-header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
}
.site-branding { min-width: 0; }
.custom-logo-link { display: inline-flex; align-items: center; margin-right: 12px; vertical-align: middle; }
.custom-logo { max-height: 48px; width: auto; }
.rv-brand-text { display: inline-flex; flex-direction: column; vertical-align: middle; min-width: 0; }
.site-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -.04em;
  color: var(--rv-text);
}
.site-title a { color: inherit; }
.site-tagline {
  margin: 5px 0 0;
  color: var(--rv-muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.main-navigation ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.main-navigation li { position: relative; }
.main-navigation a {
  display: block;
  padding: 10px 12px;
  color: var(--rv-text);
  font-size: .94rem;
  font-weight: 700;
  border-radius: 10px;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a { background: var(--rv-surface-2); color: var(--rv-primary); }
.main-navigation .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 210px;
  padding: 8px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  background: var(--rv-surface);
  border: 1px solid var(--rv-border);
  border-radius: 14px;
  box-shadow: var(--rv-shadow);
}
.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu { display: flex; }
.main-navigation .sub-menu a { white-space: nowrap; }

.rv-header-actions { display: flex; align-items: center; gap: 8px; }
.rv-icon-button {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--rv-border);
  border-radius: 12px;
  background: var(--rv-surface);
  color: var(--rv-text);
  box-shadow: 0 4px 14px rgba(20, 35, 60, .05);
}
.rv-icon-button:hover { border-color: var(--rv-primary); color: var(--rv-primary); }
.rv-theme-icon { width: 21px; height: 21px; display: block; }
.rv-icon-sun { display: none; }
html[data-theme="dark"] .rv-icon-sun { display: block; }
html[data-theme="dark"] .rv-icon-moon { display: none; }
.rv-menu-toggle { display: none; }

.site-main { min-height: 60vh; }
.rv-home-hero { padding: 48px 0 26px; }
.rv-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--rv-border);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 10%, color-mix(in srgb, var(--rv-primary) 18%, transparent), transparent 32%),
    linear-gradient(135deg, var(--rv-surface), var(--rv-surface-2));
  box-shadow: var(--rv-shadow);
}
.rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--rv-primary);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rv-eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--rv-primary); box-shadow: 0 0 0 6px color-mix(in srgb, var(--rv-primary) 13%, transparent); }
.rv-hero-title { max-width: 760px; margin: 0; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -.05em; }
.rv-hero-copy { max-width: 680px; margin: 18px 0 0; color: var(--rv-muted); font-size: clamp(1rem, 2vw, 1.12rem); }

.rv-feed-section { padding: 20px 0 64px; }
.rv-section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.rv-section-title { margin: 0; font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -.03em; }
.rv-section-note { margin: 0; color: var(--rv-muted); font-size: .92rem; }
.rv-post-list { display: grid; gap: 12px; }
.rv-post-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 20px 22px;
  background: var(--rv-surface);
  border: 1px solid var(--rv-border);
  border-radius: var(--rv-radius);
  box-shadow: 0 8px 25px rgba(25, 45, 78, .045);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.rv-post-card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--rv-primary) 45%, var(--rv-border)); box-shadow: var(--rv-shadow); }
.rv-post-title { margin: 0; font-size: clamp(1rem, 2.2vw, 1.18rem); line-height: 1.45; font-weight: 780; }
.rv-post-title a { color: var(--rv-text); }
.rv-post-title a:hover { color: var(--rv-primary); }
.rv-post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-top: 8px; color: var(--rv-muted); font-size: .84rem; }
.rv-updated { display: inline-flex; align-items: center; gap: 6px; }
.rv-updated svg { width: 15px; height: 15px; }
.rv-arrow {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--rv-surface-2);
  color: var(--rv-primary);
  transition: transform .18s ease, background .18s ease;
}
.rv-post-card:hover .rv-arrow { transform: translateX(3px); background: color-mix(in srgb, var(--rv-primary) 13%, var(--rv-surface)); }
.rv-arrow svg { width: 19px; height: 19px; }

.rv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .68rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.rv-badge--new { color: #075f35; background: #d8f8e7; }
.rv-badge--coming-soon { color: #7a4200; background: #fff0c2; }
.rv-badge--updated { color: #0b4a91; background: #dcebff; }
.rv-badge--live { color: #8c1420; background: #ffe0e3; }
.rv-badge--result-out { color: #6334a1; background: #eee2ff; }
.rv-badge--answer-key { color: #07577a; background: #d7f3ff; }
.rv-badge--admit-card { color: #7e3b08; background: #ffe6d3; }
.rv-badge--important { color: #7a0d0d; background: #ffdede; }
.rv-badge--closed { color: #48515d; background: #e5e9ee; }
html[data-theme="dark"] .rv-badge { filter: saturate(.85) brightness(.9); }

.navigation.pagination { margin-top: 26px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers {
  min-width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  padding: 0 10px;
  border: 1px solid var(--rv-border);
  border-radius: 10px;
  background: var(--rv-surface);
  color: var(--rv-text);
  font-weight: 750;
}
.page-numbers.current, .page-numbers:hover { background: var(--rv-primary); border-color: var(--rv-primary); color: #fff; }

.rv-content-wrap { padding: 44px 0 64px; }
.rv-content-card {
  padding: clamp(22px, 4vw, 42px);
  background: var(--rv-surface);
  border: 1px solid var(--rv-border);
  border-radius: 24px;
  box-shadow: var(--rv-shadow);
}
.entry-header { margin-bottom: 28px; }
.entry-title { margin: 0; font-size: clamp(1.8rem, 4.2vw, 3.1rem); line-height: 1.15; letter-spacing: -.045em; }
.entry-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 12px; color: var(--rv-muted); font-size: .88rem; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2, .entry-content h3, .entry-content h4 { line-height: 1.25; letter-spacing: -.025em; }
.entry-content table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.entry-content th, .entry-content td { padding: 11px 13px; border: 1px solid var(--rv-border); text-align: left; }
.entry-content blockquote { margin: 1.5em 0; padding: 14px 18px; border-left: 4px solid var(--rv-primary); background: var(--rv-surface-2); border-radius: 0 12px 12px 0; }
.entry-content pre { max-width: 100%; overflow-x: auto; padding: 16px; border-radius: 12px; background: #111827; color: #f8fafc; }
.entry-content input, .entry-content textarea, .entry-content select,
.search-form input[type="search"] { max-width: 100%; padding: 11px 13px; border: 1px solid var(--rv-border); border-radius: 10px; background: var(--rv-bg); color: var(--rv-text); }
button, input[type="submit"], .wp-element-button, .wp-block-button__link {
  border: 0;
  border-radius: 10px;
  background: var(--rv-primary);
  color: #fff;
  padding: 11px 16px;
  font-weight: 750;
}

.rv-empty {
  padding: 36px 22px;
  text-align: center;
  border: 1px dashed var(--rv-border);
  border-radius: var(--rv-radius);
  background: var(--rv-surface);
  color: var(--rv-muted);
}

.site-footer { border-top: 1px solid var(--rv-border); background: var(--rv-surface); }
.rv-footer-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 24px; }
.rv-footer-brand { font-weight: 850; color: var(--rv-text); }
.rv-footer-copy { margin: 4px 0 0; color: var(--rv-muted); font-size: .86rem; }
.footer-navigation ul { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 18px; margin: 0; padding: 0; }
.footer-navigation a { color: var(--rv-muted); font-size: .9rem; font-weight: 650; }
.footer-navigation a:hover { color: var(--rv-primary); }

.alignwide { width: min(1200px, calc(100vw - 32px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.wp-caption, .gallery-caption { color: var(--rv-muted); }
.sticky { outline: 2px solid color-mix(in srgb, var(--rv-primary) 22%, transparent); }
.bypostauthor { font-weight: inherit; }

@media (max-width: 900px) {
  .admin-bar .site-header { top: 46px; }
  .rv-header-inner { grid-template-columns: minmax(0, 1fr) auto; min-height: 68px; }
  .rv-header-actions { grid-column: 2; grid-row: 1; }
  .rv-menu-toggle { display: inline-grid; }
  .main-navigation {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 14px;
  }
  .main-navigation.is-open { display: block; }
  .main-navigation ul { flex-direction: column; align-items: stretch; gap: 3px; }
  .main-navigation a { padding: 11px 12px; }
  .main-navigation .sub-menu { position: static; display: flex; min-width: 0; margin: 3px 0 4px 14px; padding: 4px; box-shadow: none; background: var(--rv-surface-2); }
  .rv-section-head { align-items: start; flex-direction: column; gap: 5px; }
}

@media (max-width: 640px) {
  .rv-container { width: min(calc(100% - 22px), var(--rv-max)); }
  .site-tagline { font-size: .65rem; }
  .custom-logo { max-height: 40px; }
  .rv-home-hero { padding-top: 26px; }
  .rv-hero-card { border-radius: 20px; }
  .rv-feed-section { padding-top: 10px; }
  .rv-post-card { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 17px; }
  .rv-arrow { display: none; }
  .rv-content-wrap { padding-top: 26px; }
  .rv-content-card { border-radius: 18px; }
  .rv-footer-inner { flex-direction: column; align-items: flex-start; min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
.navigation.pagination .page-numbers { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.navigation.pagination .page-numbers li { margin: 0; }
.navigation.pagination a.page-numbers,
.navigation.pagination span.page-numbers { padding: 0 10px; }


/* ==========================================================
   Rank Vision v1.0.5 — mobile homepage critical CSS lock
   Built from the locked v1.0.0 master baseline.
   ========================================================== */

:root {
  --rv-max: 1560px;
  --rv-home-max: 1120px;
  --rv-brand-gradient: linear-gradient(135deg, #087cf0 0%, #7c3aed 100%);
}

html, body { min-height: 100%; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 8% 4%, color-mix(in srgb, var(--rv-primary) 7%, transparent), transparent 24rem),
    var(--rv-bg);
}
.site-main { flex: 1 0 auto; }
.site-footer { margin-top: auto; }

/* The homepage is responsive. Inner pages keep a desktop canvas. */
.rv-home-responsive .rv-container {
  width: min(calc(100% - 32px), var(--rv-home-max));
}
.rv-force-desktop {
  min-width: 1280px;
}
.rv-force-desktop .rv-container {
  width: 100%;
  max-width: none;
  padding-inline: 8px;
}
.rv-force-desktop .rv-content-wrap {
  padding: 18px 0 28px;
}
.rv-force-desktop .rv-content-card {
  width: 100%;
  padding: 18px;
  border-radius: 18px;
}
.rv-force-desktop .entry-header {
  margin-bottom: 18px;
}
.rv-force-desktop .entry-content {
  width: 100%;
  max-width: none;
  overflow: visible;
}
.rv-force-desktop .entry-content > * {
  max-width: none;
}
.rv-force-desktop .alignwide,
.rv-force-desktop .alignfull {
  width: 100%;
  max-width: none;
  margin-left: 0;
  transform: none;
}

/* Premium header polish. */
.site-header {
  box-shadow: 0 8px 30px rgba(16, 35, 66, .05);
}
.rv-header-inner { max-width: var(--rv-max); }
.site-title a {
  background: linear-gradient(110deg, var(--rv-text) 0 42%, #0a74ed 42% 73%, #5e35d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
html[data-theme="dark"] .site-title a {
  background: linear-gradient(110deg, #ffffff 0 42%, #49b5ff 42% 73%, #9c72ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Homepage hero and social actions. */
.rv-home-main { overflow: clip; }
.rv-home-hero { padding: 34px 0 18px; }
.rv-hero-card {
  isolation: isolate;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 18%, color-mix(in srgb, var(--rv-primary) 22%, transparent) 0 9%, transparent 9.4%),
    radial-gradient(circle at 92% 19%, transparent 0 16%, color-mix(in srgb, var(--rv-primary) 10%, transparent) 16.5% 25%, transparent 25.5%),
    linear-gradient(135deg, var(--rv-surface), color-mix(in srgb, var(--rv-surface-2) 86%, #c7dbff));
  box-shadow: 0 24px 60px rgba(26, 57, 110, .12);
}
.rv-hero-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -75px;
  bottom: -95px;
  width: 230px;
  height: 230px;
  border-radius: 42% 58% 60% 40%;
  background: color-mix(in srgb, var(--rv-primary) 10%, transparent);
  transform: rotate(18deg);
}
.rv-hero-title {
  background: linear-gradient(120deg, var(--rv-text), var(--rv-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rv-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}
.rv-social-links--hero { margin-top: 24px; }
.rv-social-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--rv-border) 82%, transparent);
  border-radius: 14px;
  background: var(--rv-surface);
  color: var(--rv-text);
  box-shadow: 0 8px 22px rgba(20, 45, 85, .10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.rv-social-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 13px 28px rgba(20, 45, 85, .17);
}
/* Explicit dimensions prevent WordPress/plugin SVG rules and stale mobile CSS from enlarging icons. */
.rv-social-link > svg,
.rv-social-link .rv-social-icon {
  display: block !important;
  width: 21px !important;
  height: 21px !important;
  min-width: 21px !important;
  min-height: 21px !important;
  max-width: 21px !important;
  max-height: 21px !important;
  flex: 0 0 21px !important;
  overflow: visible;
}
.rv-social-link--facebook:hover,
.rv-social-links--floating .rv-social-link--facebook { background: #1877f2; color: #fff; }
.rv-social-link--youtube:hover,
.rv-social-links--floating .rv-social-link--youtube { background: #ff0000; color: #fff; }
.rv-social-link--x:hover,
.rv-social-links--floating .rv-social-link--x { background: #111111; color: #fff; }
.rv-social-link--telegram:hover,
.rv-social-links--floating .rv-social-link--telegram { background: #229ed9; color: #fff; }

/* Floating social rail, sitewide. */
.rv-floating-social {
  position: fixed;
  z-index: 920;
  left: 10px;
  top: 52%;
  transform: translateY(-50%);
  padding: 7px;
  border: 1px solid var(--rv-border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--rv-surface) 94%, transparent);
  box-shadow: 0 18px 45px rgba(10, 28, 58, .18);
  backdrop-filter: blur(12px);
}
.rv-social-links--floating {
  flex-direction: column;
  gap: 7px;
}
.rv-social-links--floating .rv-social-link {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
}
.rv-social-links--floating .rv-social-link:hover { transform: translateX(3px); }

/* Homepage update cards. */
.rv-feed-section { padding: 24px 0 58px; }
.rv-section-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--rv-primary);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rv-post-list { gap: 14px; }
.rv-post-card {
  padding: 17px 18px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(25, 45, 78, .055);
}
.rv-post-card-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.rv-post-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #0eb66d, #06a65f);
  color: #fff;
  box-shadow: 0 10px 24px rgba(5, 166, 95, .24);
}
.rv-post-icon svg { width: 24px; height: 24px; }
.rv-post-card:nth-child(4n+2) .rv-post-icon {
  background: linear-gradient(145deg, #ff9f0a, #f27b00);
  box-shadow: 0 10px 24px rgba(242, 123, 0, .22);
}
.rv-post-card:nth-child(4n+3) .rv-post-icon {
  background: linear-gradient(145deg, #8b5cf6, #6535dd);
  box-shadow: 0 10px 24px rgba(101, 53, 221, .22);
}
.rv-post-card:nth-child(4n+4) .rv-post-icon {
  background: linear-gradient(145deg, #ff4f9a, #e92c7d);
  box-shadow: 0 10px 24px rgba(233, 44, 125, .20);
}

/* Homepage performance CTA. */
.rv-home-cta {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid color-mix(in srgb, var(--rv-primary) 18%, var(--rv-border));
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 50%, color-mix(in srgb, #7c3aed 17%, transparent), transparent 25%),
    linear-gradient(135deg, color-mix(in srgb, var(--rv-primary) 10%, var(--rv-surface)), var(--rv-surface));
  box-shadow: var(--rv-shadow);
}
.rv-home-cta::after {
  content: "↗";
  position: absolute;
  right: 4%;
  top: 2%;
  color: color-mix(in srgb, var(--rv-primary) 14%, transparent);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}
.rv-home-cta > * { position: relative; z-index: 1; }
.rv-cta-kicker {
  color: var(--rv-primary);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rv-home-cta h2 { margin: 4px 0 5px; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.15; }
.rv-home-cta p { margin: 0; color: var(--rv-muted); }
.rv-cta-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--rv-brand-gradient);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(31, 91, 220, .25);
}
.rv-cta-button:hover { color: #fff; transform: translateY(-2px); }

/* Footer content is always centered and stays at the bottom. */
.site-footer {
  background:
    radial-gradient(circle at 50% 0, color-mix(in srgb, var(--rv-primary) 10%, transparent), transparent 32rem),
    var(--rv-surface);
}
.rv-footer-inner {
  min-height: 130px;
  justify-content: center;
  text-align: center;
}
.rv-footer-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.rv-footer-brand { font-size: 1rem; }
.rv-footer-copy { margin: 0; }
.rv-social-links--footer { justify-content: center; gap: 8px; }
.rv-social-links--footer .rv-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: none;
}
.rv-social-links--footer .rv-social-link > svg,
.rv-social-links--footer .rv-social-link .rv-social-icon {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex-basis: 16px !important;
}
.footer-navigation ul { justify-content: center; }

/* Responsive homepage only. Non-home pages use the fixed desktop viewport. */
@media (max-width: 900px) {
  .rv-home-responsive .site-header { background: color-mix(in srgb, #071426 94%, transparent); border-bottom-color: rgba(255,255,255,.09); }
  .rv-home-responsive .site-title a {
    background: linear-gradient(110deg, #ffffff 0 42%, #49b5ff 42% 73%, #9c72ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .rv-home-responsive .site-tagline { color: #b9c7db; }
  .rv-home-responsive .rv-icon-button { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: #fff; box-shadow: none; }
  .rv-home-responsive .main-navigation { background: #071426; border-radius: 0 0 16px 16px; }
  .rv-home-responsive .main-navigation a { color: #eef6ff; }
  .rv-home-responsive .main-navigation a:hover { background: rgba(255,255,255,.08); color: #72b9ff; }
}

@media (max-width: 640px) {
  .rv-home-responsive .rv-container { width: min(calc(100% - 24px), var(--rv-home-max)); }
  .rv-home-responsive .rv-header-inner { min-height: 74px; }
  .rv-home-responsive .site-title { font-size: 1.18rem; }
  .rv-home-responsive .site-tagline { font-size: .57rem; letter-spacing: .055em; }
  .rv-home-responsive .rv-home-hero { padding: 18px 0 12px; }
  .rv-home-responsive .rv-hero-card { padding: 24px 20px; border-radius: 22px; }
  .rv-home-responsive .rv-hero-title { font-size: 2.05rem; }
  .rv-home-responsive .rv-hero-copy { margin-top: 12px; font-size: .96rem; }
  .rv-home-responsive .rv-social-links--hero { margin-top: 20px; gap: 9px; }
  .rv-home-responsive .rv-social-links--hero .rv-social-link { width: 42px; height: 42px; }
  .rv-home-responsive .rv-feed-section { padding: 16px 0 38px; }
  .rv-home-responsive .rv-section-head { margin-bottom: 14px; }
  .rv-home-responsive .rv-section-note { display: none; }
  .rv-home-responsive .rv-post-card { grid-template-columns: minmax(0, 1fr) auto; gap: 9px; padding: 14px 13px; }
  .rv-home-responsive .rv-post-card-main { gap: 11px; }
  .rv-home-responsive .rv-post-icon { width: 42px; height: 42px; flex-basis: 42px; border-radius: 12px; }
  .rv-home-responsive .rv-post-icon svg { width: 21px; height: 21px; }
  .rv-home-responsive .rv-post-title { font-size: .96rem; line-height: 1.38; }
  .rv-home-responsive .rv-post-meta { margin-top: 6px; gap: 6px 9px; font-size: .72rem; }
  .rv-home-responsive .rv-arrow { display: grid; width: 34px; height: 34px; }
  .rv-home-responsive .rv-home-cta { margin-top: 20px; padding: 22px 18px; flex-direction: column; align-items: flex-start; }
  .rv-home-responsive .rv-cta-button { width: 100%; justify-content: center; }
  .rv-home-responsive .rv-footer-inner { align-items: center; padding-block: 26px; }
  .rv-floating-social { left: 4px; padding: 5px; border-radius: 14px; }
  .rv-social-links--floating .rv-social-link { width: 34px; height: 34px; border-radius: 10px; }
  .rv-social-links--floating .rv-social-link > svg,
  .rv-social-links--floating .rv-social-link .rv-social-icon {
    width: 17px !important;
    height: 17px !important;
    min-width: 17px !important;
    min-height: 17px !important;
    max-width: 17px !important;
    max-height: 17px !important;
    flex-basis: 17px !important;
  }
}

/* Mobile hard safety net: keeps all social controls compact even when third-party CSS is aggressive. */
@media (max-width: 782px) {
  .rv-social-links {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  .rv-social-link {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .rv-social-links--floating .rv-social-link {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
  }
  .rv-social-links--footer .rv-social-link {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
  }
}

@media print {
  .site-header, .site-footer, .rv-floating-social { display: none !important; }
  body { display: block; background: #fff; }
  .rv-content-wrap { padding: 0; }
  .rv-content-card { border: 0; box-shadow: none; padding: 0; }
}


/* v1.0.5 final homepage SVG/card safety net. */
body.rv-home-responsive .rv-post-icon,
body.rv-home-responsive .rv-post-icon svg,
body.rv-home-responsive .rv-arrow svg,
body.rv-home-responsive .rv-social-link,
body.rv-home-responsive .rv-social-link svg { box-sizing: border-box !important; }
body.rv-home-responsive .rv-post-icon svg { width: 21px !important; height: 21px !important; max-width: 21px !important; max-height: 21px !important; }


/* ==========================================================
   Rank Vision v1.0.7 — section table, brand socials & video
   ========================================================== */

/* Preserve each social network's official visual identity. */
.rv-social-link--facebook { color: #1877f2; }
.rv-social-link--youtube { color: #ff0000; }
.rv-social-link--x { color: #111111; }
.rv-social-link--telegram { color: #229ed9; }
html[data-theme="dark"] .rv-social-link--x:not(:hover) { color: #ffffff; background: #111111; }
.rv-social-links--floating .rv-social-link--facebook,
.rv-social-links--footer .rv-social-link--facebook { background: #1877f2; color: #ffffff; }
.rv-social-links--floating .rv-social-link--youtube,
.rv-social-links--footer .rv-social-link--youtube { background: #ff0000; color: #ffffff; }
.rv-social-links--floating .rv-social-link--x,
.rv-social-links--footer .rv-social-link--x { background: #111111; color: #ffffff; }
.rv-social-links--floating .rv-social-link--telegram,
.rv-social-links--footer .rv-social-link--telegram { background: #229ed9; color: #ffffff; }

/* Homepage YouTube introduction section. */
.rv-home-video {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid color-mix(in srgb, var(--rv-primary) 20%, var(--rv-border));
  border-radius: 24px;
  background:
    radial-gradient(circle at 95% 8%, color-mix(in srgb, #ff0000 11%, transparent), transparent 25%),
    linear-gradient(135deg, var(--rv-surface), var(--rv-surface-2));
  box-shadow: var(--rv-shadow);
}
.rv-home-video-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.rv-video-kicker {
  display: block;
  margin-bottom: 5px;
  color: #e00000;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rv-home-video h2 {
  margin: 0;
  color: var(--rv-text);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}
.rv-home-video-copy {
  max-width: 620px;
  margin: 7px 0 0;
  color: var(--rv-muted);
}
.rv-video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #05070b;
  box-shadow: 0 18px 45px rgba(7, 20, 45, .20);
}
.rv-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.rv-video-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  border: 2px dashed var(--rv-border);
  border-radius: 18px;
  color: var(--rv-muted);
  background: color-mix(in srgb, var(--rv-surface-2) 78%, transparent);
}
.rv-video-placeholder a { font-weight: 800; }

@media (max-width: 640px) {
  .rv-home-responsive .rv-home-video { margin-top: 20px; padding: 16px; border-radius: 20px; }
  .rv-home-responsive .rv-home-video-head { display: block; margin-bottom: 14px; }
  .rv-home-responsive .rv-video-frame { border-radius: 14px; }
  .rv-home-responsive .rv-video-placeholder { min-height: 190px; padding: 20px; }
}


/* ==========================================================
   Rank Vision v1.0.12 — RankVision v2.4.8 bundle
   Built from the locked v1.0.0 master baseline.
   ========================================================== */
.rv-content-card.rv-about-page {
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.rv-about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 50px;
  margin: 0 0 24px;
  border: 1px solid color-mix(in srgb, var(--rv-primary) 22%, var(--rv-border));
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 20%, color-mix(in srgb, #60a5fa 30%, transparent) 0 7%, transparent 7.5%),
    radial-gradient(circle at 88% 20%, transparent 0 14%, color-mix(in srgb, #7c3aed 14%, transparent) 14.5% 22%, transparent 22.5%),
    linear-gradient(132deg, color-mix(in srgb, var(--rv-surface) 94%, #dbeafe), color-mix(in srgb, var(--rv-surface-2) 78%, #e9d5ff));
  box-shadow: 0 24px 70px rgba(31, 68, 125, .14);
}
.rv-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .25;
  background-image:
    linear-gradient(color-mix(in srgb, var(--rv-primary) 13%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--rv-primary) 13%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}
.rv-about-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -58px;
  bottom: -90px;
  width: 310px;
  height: 310px;
  border-radius: 46% 54% 63% 37%;
  background: linear-gradient(145deg, color-mix(in srgb, #0ea5e9 18%, transparent), color-mix(in srgb, #7c3aed 20%, transparent));
  transform: rotate(18deg);
}
.rv-about-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--rv-primary) 22%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--rv-surface) 76%, transparent);
  color: var(--rv-primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.rv-about-eyebrow svg { width: 17px; height: 17px; }
.rv-about-hero .entry-title {
  max-width: 790px;
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -.055em;
  background: linear-gradient(115deg, var(--rv-text) 0 42%, #087cf0 52%, #6d28d9 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rv-about-intro {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--rv-muted);
  font-size: 18px;
  line-height: 1.7;
}
.rv-about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.rv-about-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--rv-border) 76%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--rv-surface) 84%, transparent);
  color: var(--rv-text);
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(28, 55, 100, .07);
  backdrop-filter: blur(10px);
}
.rv-about-chip svg { width: 16px; height: 16px; color: var(--rv-primary); }
.rv-about-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}
.rv-about-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 14px;
}
.rv-about-toc-card,
.rv-about-trust-card {
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--rv-border);
  border-radius: 18px;
  background: var(--rv-surface);
  box-shadow: 0 13px 34px rgba(28, 55, 100, .08);
}
.rv-about-sidebar-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  color: var(--rv-text);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.rv-about-sidebar-label svg { width: 17px; height: 17px; color: var(--rv-primary); }
.rv-about-toc { display: grid; gap: 6px; }
.rv-about-toc a {
  position: relative;
  display: block;
  padding: 9px 10px 9px 15px;
  border-radius: 10px;
  color: var(--rv-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.rv-about-toc a::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--rv-muted) 55%, transparent);
  transform: translateY(-50%);
}
.rv-about-toc a:hover,
.rv-about-toc a.is-active {
  background: color-mix(in srgb, var(--rv-primary) 10%, var(--rv-surface));
  color: var(--rv-primary);
  transform: translateX(2px);
}
.rv-about-toc a.is-active::before { height: 18px; border-radius: 6px; background: var(--rv-primary); }
.rv-about-trust-card {
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, #f59e0b 14%, transparent), transparent 48%),
    var(--rv-surface);
}
.rv-about-trust-card p { margin: 0; color: var(--rv-muted); font-size: 12px; line-height: 1.65; }
.rv-about-trust-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #fff4d8;
  color: #9a5a00;
}
.rv-about-trust-icon svg { width: 20px; height: 20px; }
.rv-about-content {
  min-width: 0;
  counter-reset: rv-guide-section;
}
.rv-about-content > .rv-guide-section,
.rv-about-content > .rv-guide-intro {
  position: relative;
  overflow: hidden;
  margin: 0 0 18px;
  padding: 28px 30px;
  border: 1px solid var(--rv-border);
  border-radius: 20px;
  background: var(--rv-surface);
  box-shadow: 0 15px 38px rgba(28, 55, 100, .075);
}
.rv-about-content > .rv-guide-section {
  counter-increment: rv-guide-section;
}
.rv-about-content > .rv-guide-section::before {
  content: counter(rv-guide-section, decimal-leading-zero);
  position: absolute;
  right: 22px;
  top: 14px;
  color: color-mix(in srgb, var(--rv-primary) 12%, transparent);
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
  pointer-events: none;
}
.rv-about-content > .rv-guide-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0ea5e9, #6d28d9);
}
.rv-about-content .rv-guide-intro {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rv-primary) 7%, var(--rv-surface)), var(--rv-surface));
}
.rv-about-content h2,
.rv-about-content h3 {
  position: relative;
  z-index: 1;
  color: var(--rv-text);
}
.rv-about-content h2 {
  max-width: 82%;
  margin: 0 0 18px;
  padding-bottom: 12px;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: -.035em;
}
.rv-about-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #7c3aed);
}
.rv-about-content h3 {
  margin: 24px 0 10px;
  font-size: 19px;
}
.rv-about-content p {
  margin: 0 0 16px;
  color: color-mix(in srgb, var(--rv-text) 80%, var(--rv-muted));
  font-size: 15px;
  line-height: 1.85;
}
.rv-about-content strong { color: var(--rv-text); font-weight: 850; }
.rv-about-content ul,
.rv-about-content ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}
.rv-about-content li {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 12px 11px 42px;
  border: 1px solid color-mix(in srgb, var(--rv-border) 85%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--rv-surface-2) 66%, var(--rv-surface));
  color: var(--rv-text);
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
}
.rv-about-content li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  transform: translateY(-50%);
  box-shadow: 0 5px 12px rgba(37, 99, 235, .22);
}
.rv-about-content .wp-block-table,
.rv-about-content table {
  width: 100%;
  max-width: 100%;
  display: table;
  margin: 18px 0 24px;
  overflow: hidden;
  border: 1px solid var(--rv-border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  background: var(--rv-surface);
  box-shadow: 0 10px 28px rgba(28, 55, 100, .06);
}
.rv-about-content .wp-block-table { display: block; overflow-x: auto; }
.rv-about-content .wp-block-table table { margin: 0; min-width: 680px; box-shadow: none; }
.rv-about-content th {
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--rv-primary) 18%, var(--rv-border));
  background: linear-gradient(135deg, color-mix(in srgb, #0ea5e9 13%, var(--rv-surface)), color-mix(in srgb, #7c3aed 10%, var(--rv-surface)));
  color: var(--rv-text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.rv-about-content td {
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid var(--rv-border);
  color: color-mix(in srgb, var(--rv-text) 82%, var(--rv-muted));
  font-size: 13px;
  line-height: 1.5;
}
.rv-about-content tr:last-child td { border-bottom: 0; }
.rv-about-content tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--rv-surface-2) 54%, transparent); }
.rv-about-content tbody tr:hover td { background: color-mix(in srgb, var(--rv-primary) 7%, var(--rv-surface)); }
.rv-about-content blockquote {
  position: relative;
  margin: 22px 0;
  padding: 18px 20px 18px 58px;
  border: 1px solid #ecd18e;
  border-left: 4px solid #d69000;
  border-radius: 14px;
  background: #fff9e8;
  color: #6f4a00;
  box-shadow: 0 10px 25px rgba(153, 99, 0, .07);
}
.rv-about-content blockquote::before {
  content: "!";
  position: absolute;
  left: 17px;
  top: 17px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #e6a500;
  color: #fff;
  font-weight: 900;
}
.rv-about-content blockquote p { color: inherit; }
.rv-about-content a:not(.wp-element-button) {
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--rv-primary) 35%, transparent);
  text-underline-offset: 3px;
}
.rv-about-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #2563eb, #7c3aed);
  box-shadow: 0 0 12px rgba(37, 99, 235, .45);
  pointer-events: none;
}
.admin-bar .rv-about-progress { top: 32px; }
html[data-theme="dark"] .rv-about-content blockquote {
  border-color: #725813;
  background: #29230f;
  color: #f6d77a;
}
html[data-theme="dark"] .rv-about-trust-icon { background: #33270d; color: #f4bd43; }
@media (max-width: 1040px) {
  .rv-about-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 16px; }
  .rv-about-hero { padding-inline: 38px; }
  .rv-about-content > .rv-guide-section,
  .rv-about-content > .rv-guide-intro { padding: 24px; }
}
@media print {
  .rv-about-sidebar,
  .rv-about-progress { display: none !important; }
  .rv-about-layout { display: block; }
  .rv-about-hero,
  .rv-about-content > .rv-guide-section,
  .rv-about-content > .rv-guide-intro { box-shadow: none; break-inside: avoid; }
}


/* ==========================================================
   Rank Vision v1.0.13 — About icon clamp + draggable socials
   ========================================================== */
.rv-about-page .rv-about-eyebrow > svg,
.rv-about-page .rv-about-chip > svg,
.rv-about-page .rv-about-sidebar-label > svg,
.rv-about-page .rv-about-trust-icon > svg {
  display: block !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
}
.rv-about-page .rv-about-eyebrow > svg {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  min-height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
  flex-basis: 17px !important;
}
.rv-about-page .rv-about-chip > svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex-basis: 16px !important;
}
.rv-about-page .rv-about-sidebar-label > svg {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  min-height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
  flex-basis: 17px !important;
}
.rv-about-page .rv-about-trust-icon > svg {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
}

.rv-floating-social {
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  will-change: left, top;
}
.rv-floating-social.is-user-positioned {
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
}
.rv-floating-social.is-dragging {
  cursor: grabbing;
  box-shadow: 0 22px 54px rgba(10, 28, 58, .30);
}
.rv-floating-social__handle {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 22px;
  display: grid;
  place-items: center;
  margin: -2px 0 5px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: color-mix(in srgb, var(--rv-surface-2) 88%, transparent);
  color: var(--rv-muted);
  cursor: grab;
  touch-action: none;
}
.rv-floating-social__handle:hover,
.rv-floating-social__handle:focus-visible {
  color: var(--rv-primary);
  background: color-mix(in srgb, var(--rv-primary) 10%, var(--rv-surface));
  outline: none;
}
.rv-floating-social.is-dragging .rv-floating-social__handle { cursor: grabbing; }
.rv-floating-social__handle > svg {
  display: block !important;
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  min-height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
}
@media (max-width: 782px) {
  .rv-floating-social__handle { height: 20px; margin-bottom: 4px; }
  .rv-floating-social__handle > svg {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
  }
}

/* ==========================================================
   Rank Vision v1.0.14 — responsive About guide + mobile drag
   Built incrementally from the locked v1.0.0 master baseline.
   ========================================================== */
body.rv-about-responsive {
  min-width: 0;
  overflow-x: hidden;
}
body.rv-about-responsive .rv-about-content,
body.rv-about-responsive .rv-about-layout,
body.rv-about-responsive .rv-content-card {
  min-width: 0;
  max-width: 100%;
}

/* A clearly visible drag grip is useful on touchscreens even when another
   inner page intentionally keeps the 1280px desktop viewport. */
@media (pointer: coarse) {
  .rv-floating-social__handle {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    touch-action: none !important;
    overscroll-behavior: contain;
  }
  .rv-floating-social__handle::after {
    content: "MOVE";
    margin-left: 3px;
    color: currentColor;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .06em;
  }
}

@media (max-width: 782px) {
  body.rv-about-responsive .rv-container {
    width: min(calc(100% - 24px), 1120px);
    margin-inline: auto;
  }
  body.rv-about-responsive .rv-content-wrap { padding: 18px 0 38px; }
  body.rv-about-responsive .rv-about-hero {
    min-height: 0;
    margin-bottom: 16px;
    padding: 27px 20px;
    border-radius: 22px;
  }
  body.rv-about-responsive .rv-about-hero .entry-title {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 46px);
  }
  body.rv-about-responsive .rv-about-intro { margin-top: 14px; font-size: 15px; }
  body.rv-about-responsive .rv-about-chips { margin-top: 18px; gap: 8px; }
  body.rv-about-responsive .rv-about-chip { min-height: 32px; padding: 7px 10px; font-size: 10px; }
  body.rv-about-responsive .rv-about-layout { display: block; }
  body.rv-about-responsive .rv-about-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }
  body.rv-about-responsive .rv-about-toc-card,
  body.rv-about-responsive .rv-about-trust-card { padding: 14px; border-radius: 16px; }
  body.rv-about-responsive .rv-about-toc {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }
  body.rv-about-responsive .rv-about-toc::-webkit-scrollbar { display: none; }
  body.rv-about-responsive .rv-about-toc a {
    flex: 0 0 auto;
    max-width: 250px;
    padding: 8px 11px;
    border: 1px solid var(--rv-border);
    border-radius: 999px;
    background: var(--rv-surface-2);
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  body.rv-about-responsive .rv-about-toc a::before { display: none; }
  body.rv-about-responsive .rv-about-toc a.is-active { background: var(--rv-primary); color: #fff; transform: none; }
  body.rv-about-responsive .rv-about-content > .rv-guide-section,
  body.rv-about-responsive .rv-about-content > .rv-guide-intro {
    margin-bottom: 13px;
    padding: 20px 17px;
    border-radius: 18px;
  }
  body.rv-about-responsive .rv-about-content > .rv-guide-section::before { right: 14px; font-size: 46px; }
  body.rv-about-responsive .rv-about-content h2 { max-width: 88%; font-size: 23px; }
  body.rv-about-responsive .rv-about-content h3 { font-size: 18px; }
  body.rv-about-responsive .rv-about-content p { font-size: 14px; line-height: 1.75; }
  body.rv-about-responsive .rv-about-content ul,
  body.rv-about-responsive .rv-about-content ol { grid-template-columns: 1fr; }
  body.rv-about-responsive .rv-about-content .wp-block-table,
  body.rv-about-responsive .rv-about-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.rv-about-responsive .rv-about-content .wp-block-table table { display: table; min-width: 620px; }
  body.rv-about-responsive .rv-floating-social {
    z-index: 9999;
    max-width: 54px;
    padding: 5px;
    border-radius: 15px;
  }
  body.rv-about-responsive .rv-floating-social__handle {
    min-height: 34px;
    height: 34px;
    margin: 0 0 5px;
  }
}


/* ==========================================================
   Rank Vision v1.0.15 — public-mobile cache and drag hard fix
   ========================================================== */
.rv-floating-social[data-rv-drag-version="1.0.15"] {
  position: fixed !important;
  z-index: 2147483000 !important;
  touch-action: none !important;
  overscroll-behavior: contain !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}
.rv-floating-social[data-rv-drag-version="1.0.15"] .rv-floating-social__handle {
  min-height: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  margin: 0 0 5px !important;
  padding: 0 3px !important;
  background: color-mix(in srgb, var(--rv-primary) 12%, var(--rv-surface)) !important;
  color: var(--rv-primary) !important;
  cursor: grab !important;
  touch-action: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
}
.rv-floating-social[data-rv-drag-version="1.0.15"] .rv-floating-social__handle::after {
  content: "MOVE" !important;
  font-size: 7px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: .06em !important;
}
.rv-floating-social[data-rv-drag-version="1.0.15"].is-dragging .rv-floating-social__handle { cursor: grabbing !important; }
html.rv-social-is-dragging, html.rv-social-is-dragging body { overscroll-behavior: none !important; }

@media (max-width: 782px) {
  /* Do not depend solely on a new body class: the page component itself is
     enough to activate the responsive guide after a cache/plugin rewrite. */
  body:has(.rv-about-page) { min-width: 0 !important; width: 100% !important; overflow-x: hidden !important; }
  body:has(.rv-about-page) .rv-container { width: min(calc(100% - 24px), 1120px) !important; margin-inline: auto !important; }
  .rv-about-page { width: 100% !important; max-width: 100% !important; min-width: 0 !important; margin: 0 !important; padding: 0 !important; }
  .rv-about-page .rv-about-hero { min-height: 0 !important; margin: 0 0 16px !important; padding: 27px 20px !important; border-radius: 22px !important; background: linear-gradient(135deg, color-mix(in srgb,#0ea5e9 17%,var(--rv-surface)), color-mix(in srgb,#7c3aed 14%,var(--rv-surface))) !important; box-shadow: 0 18px 48px rgba(31,68,125,.14) !important; }
  .rv-about-page .rv-about-hero .entry-title { max-width: 100% !important; font-size: clamp(34px,11vw,46px) !important; line-height: 1.03 !important; }
  .rv-about-page .rv-about-intro { font-size: 15px !important; line-height: 1.65 !important; }
  .rv-about-page .rv-about-chips { display: flex !important; flex-wrap: wrap !important; gap: 8px !important; }
  .rv-about-page .rv-about-layout { display: block !important; width: 100% !important; max-width: 100% !important; }
  .rv-about-page .rv-about-sidebar { position: static !important; display: grid !important; grid-template-columns: 1fr !important; gap: 12px !important; margin: 0 0 14px !important; }
  .rv-about-page .rv-about-toc-card, .rv-about-page .rv-about-trust-card { padding: 14px !important; border: 1px solid var(--rv-border) !important; border-radius: 16px !important; background: var(--rv-surface) !important; box-shadow: 0 10px 26px rgba(28,55,100,.07) !important; }
  .rv-about-page .rv-about-toc { display: flex !important; gap: 7px !important; overflow-x: auto !important; padding-bottom: 3px !important; scrollbar-width: none !important; }
  .rv-about-page .rv-about-toc a { flex: 0 0 auto !important; max-width: 250px !important; padding: 8px 11px !important; border: 1px solid var(--rv-border) !important; border-radius: 999px !important; background: var(--rv-surface-2) !important; font-size: 10px !important; white-space: nowrap !important; }
  .rv-about-page .rv-about-content { width: 100% !important; max-width: 100% !important; min-width: 0 !important; }
  .rv-about-page .rv-about-content > .rv-guide-section, .rv-about-page .rv-about-content > .rv-guide-intro { width: 100% !important; max-width: 100% !important; margin: 0 0 13px !important; padding: 20px 17px !important; border: 1px solid var(--rv-border) !important; border-radius: 18px !important; background: var(--rv-surface) !important; box-shadow: 0 12px 30px rgba(28,55,100,.07) !important; box-sizing: border-box !important; }
  .rv-about-page .rv-about-content h2 { max-width: 88% !important; font-size: 23px !important; line-height: 1.28 !important; }
  .rv-about-page .rv-about-content h3 { font-size: 18px !important; }
  .rv-about-page .rv-about-content p { font-size: 14px !important; line-height: 1.75 !important; overflow-wrap: anywhere !important; }
  .rv-about-page .rv-about-content ul, .rv-about-page .rv-about-content ol { grid-template-columns: 1fr !important; gap: 8px !important; }
  .rv-about-page .rv-about-content .wp-block-table, .rv-about-page .rv-about-content table { display: block !important; width: 100% !important; max-width: 100% !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; }
  .rv-floating-social[data-rv-drag-version="1.0.15"] { left: 6px; top: 50%; max-width: 56px !important; padding: 5px !important; border-radius: 15px !important; }
  .rv-floating-social[data-rv-drag-version="1.0.15"] .rv-social-links--floating .rv-social-link { width: 40px !important; height: 40px !important; min-width: 40px !important; min-height: 40px !important; max-width: 40px !important; max-height: 40px !important; }
}


/* ==========================================================
   Rank Vision v1.0.17 — professional responsive About guide
   The authoritative mobile rules are printed in wp_head so cache/minify
   plugins cannot restore the old 1280px desktop canvas on phones.
   ========================================================== */
body.rv-about-responsive { min-width: 0; max-width: 100%; }
body.rv-about-responsive .rv-about-layout { min-width: 0; }
body.rv-about-responsive .rv-about-content { min-width: 0; }


/* Rank Vision v1.0.18 — public/cache-safe introduction video card. */
body.rv-home-responsive .rv-home-video {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
body.rv-home-responsive .rv-home-video-head,
body.rv-home-responsive .rv-home-video-head > div {
  display: block !important;
  width: 100% !important;
}
body.rv-home-responsive .rv-video-frame {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden !important;
}
body.rv-home-responsive .rv-video-frame iframe {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

/* ==========================================================
   Rank Vision v1.0.21 — deterministic RankVision compatibility
   One layout for logged-in and logged-out visitors.
   ========================================================== */
.rv-force-desktop .entry-content .akc-calculator,
.rv-force-desktop .entry-content .akc-public-result,
.rv-force-desktop .entry-content .akc-result-card {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
}
.rv-force-desktop .entry-content .akc-result-card {
  overflow: hidden !important;
}
.rv-force-desktop .entry-content .akc-result-card > .akc-table {
  box-sizing: border-box !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
}
.rv-force-desktop .entry-content .akc-result-card > .akc-table > table {
  display: table !important;
  width: 100% !important;
  min-width: 720px !important;
  max-width: none !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
}
.rv-force-desktop .entry-content .akc-result-card > .akc-table > table > thead { display: table-header-group !important; }
.rv-force-desktop .entry-content .akc-result-card > .akc-table > table > tbody { display: table-row-group !important; }
.rv-force-desktop .entry-content .akc-result-card > .akc-table > table > tbody > tr { display: table-row !important; }
.rv-force-desktop .entry-content .akc-result-card > .akc-table > table th,
.rv-force-desktop .entry-content .akc-result-card > .akc-table > table td {
  display: table-cell !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  vertical-align: middle !important;
}
.rv-force-desktop .entry-content .akc-result-card > .akc-table > table td::before {
  content: none !important;
  display: none !important;
}

/* ==========================================================
   Rank Vision v1.0.23 — standard single-page content layout
   Applies to normal WordPress Pages only. Rank Vision,
   Answer Key Calculator and Answer Review retain their layout.
   ========================================================== */
body.rv-standard-page-layout .rv-content-wrap {
  padding: 18px 0 30px;
}
body.rv-standard-page-layout .rv-standard-page-container {
  width: 100%;
  max-width: none;
  padding-inline: 6px;
}
body.rv-standard-page-layout .rv-standard-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 158px;
  align-items: start;
  gap: 14px;
  width: 100%;
}
body.rv-standard-page-layout .rv-standard-page-card {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 24px 30px 30px;
  border: 1px solid #dbe3ec;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(20, 44, 75, .06);
}
html[data-theme="dark"] body.rv-standard-page-layout .rv-standard-page-card {
  border-color: var(--rv-border);
  background: var(--rv-surface);
}
body.rv-standard-page-layout .rv-standard-page-header {
  margin: 0 0 15px;
  padding: 0;
}
body.rv-standard-page-layout .rv-standard-page-header .entry-title {
  margin: 0;
  color: #075f96;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.025em;
}
html[data-theme="dark"] body.rv-standard-page-layout .rv-standard-page-header .entry-title {
  color: var(--rv-primary);
}
body.rv-standard-page-layout .rv-standard-page-content {
  width: 100%;
  max-width: none;
  color: #27313d;
  font-size: 15px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}
html[data-theme="dark"] body.rv-standard-page-layout .rv-standard-page-content {
  color: var(--rv-text);
}
body.rv-standard-page-layout .rv-standard-page-content > :first-child {
  margin-top: 0;
}
body.rv-standard-page-layout .rv-standard-page-content p {
  margin: 0 0 14px;
}
body.rv-standard-page-layout .rv-standard-page-content ul,
body.rv-standard-page-layout .rv-standard-page-content ol {
  margin: 8px 0 18px 24px;
  padding: 0;
}
body.rv-standard-page-layout .rv-standard-page-content li {
  margin: 5px 0;
}
body.rv-standard-page-layout .rv-standard-page-content h2 {
  clear: both;
  margin: 25px 0 14px;
  padding: 8px 13px 8px 15px;
  border-left: 4px solid #ef3340;
  background: #edf4fb;
  color: #096394;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
}
body.rv-standard-page-layout .rv-standard-page-content h3 {
  margin: 21px 0 10px;
  padding: 6px 11px;
  border-left: 3px solid #ef3340;
  background: #f5f8fc;
  color: #0b6697;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}
html[data-theme="dark"] body.rv-standard-page-layout .rv-standard-page-content h2,
html[data-theme="dark"] body.rv-standard-page-layout .rv-standard-page-content h3 {
  background: color-mix(in srgb, var(--rv-primary) 10%, var(--rv-surface-2));
  color: var(--rv-primary);
}
body.rv-standard-page-layout .rv-standard-page-content h4,
body.rv-standard-page-layout .rv-standard-page-content h5,
body.rv-standard-page-layout .rv-standard-page-content h6 {
  color: #0b6697;
}
body.rv-standard-page-layout .rv-standard-page-content a {
  font-weight: 650;
}
body.rv-standard-page-layout .rv-standard-page-content hr {
  border: 0;
  border-top: 1px solid #dbe3ec;
  margin: 20px 0;
}
body.rv-standard-page-layout .rv-standard-page-content table,
body.rv-standard-page-layout .rv-standard-page-content .wp-block-table {
  max-width: 100%;
}
body.rv-standard-page-layout .rv-standard-page-content .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
body.rv-standard-page-layout .rv-standard-page-ad {
  position: sticky;
  top: 94px;
  min-width: 0;
}
body.rv-standard-page-layout .rv-standard-page-ad-box {
  display: flex;
  min-height: 610px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #d5dee8;
  border-radius: 7px;
  background: #fff;
  color: #9aa4b1;
  font-size: 12px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(20, 44, 75, .04);
}
html[data-theme="dark"] body.rv-standard-page-layout .rv-standard-page-ad-box {
  border-color: var(--rv-border);
  background: var(--rv-surface);
  color: var(--rv-muted);
}
body.rv-standard-page-layout .rv-standard-page-ad-box .widget,
body.rv-standard-page-layout .rv-standard-page-ad-box .widget_block,
body.rv-standard-page-layout .rv-standard-page-ad-box .wp-block-html {
  width: 100%;
  margin: 0;
  padding: 0;
}
body.rv-standard-page-layout .rv-standard-page-ad-box iframe,
body.rv-standard-page-layout .rv-standard-page-ad-box img,
body.rv-standard-page-layout .rv-standard-page-ad-box ins {
  max-width: 100%;
}
body.rv-standard-page-layout .rv-standard-page-ad-box .widget-title {
  margin: 0 0 8px;
  font-size: 13px;
}


/* ==========================================================
   Rank Vision v1.0.24 — permanent footer legal links
   ========================================================== */
.rv-footer-legal-navigation ul {
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
}
.rv-footer-legal-navigation li {
  display: inline-flex;
  align-items: center;
}
.rv-footer-legal-navigation li + li::before {
  content: "•";
  margin-right: 18px;
  color: var(--rv-border);
  font-size: .78rem;
}
.rv-footer-legal-navigation a {
  color: var(--rv-muted);
  font-size: .9rem;
  font-weight: 750;
}
.rv-footer-legal-navigation a:hover,
.rv-footer-legal-navigation a:focus-visible {
  color: var(--rv-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Rank Vision SEO discovery + contextual internal links (v1.0.26.1). */
.rv-seo-discovery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 22px;
  margin: 34px 0 4px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--rv-border);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--rv-surface), var(--rv-surface-2));
  box-shadow: 0 10px 30px rgba(25, 45, 78, .055);
}
.rv-seo-discovery__copy h2,
.rv-related-seo h2 { margin: 5px 0 10px; color: var(--rv-text); font-size: clamp(1.22rem, 2.6vw, 1.65rem); line-height: 1.25; letter-spacing: -.025em; }
.rv-seo-discovery__copy p { margin: 0; color: var(--rv-muted); font-size: .97rem; }
.rv-seo-discovery__links { padding: 18px; border: 1px solid var(--rv-border); border-radius: 16px; background: var(--rv-surface); }
.rv-seo-discovery__links h3 { margin: 0 0 10px; color: var(--rv-text); font-size: 1rem; }
.rv-seo-discovery__links ul, .rv-related-seo ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.rv-seo-discovery__links li, .rv-related-seo li { margin: 0; }
.rv-seo-discovery__links a, .rv-related-seo a { position: relative; display: block; padding: 9px 34px 9px 12px; border: 1px solid var(--rv-border); border-radius: 11px; background: color-mix(in srgb, var(--rv-surface) 86%, var(--rv-primary) 3%); color: var(--rv-text); font-size: .92rem; font-weight: 700; line-height: 1.4; }
.rv-seo-discovery__links a::after, .rv-related-seo a::after { content: "→"; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--rv-primary); }
.rv-seo-discovery__links a:hover, .rv-related-seo a:hover { border-color: color-mix(in srgb, var(--rv-primary) 45%, var(--rv-border)); color: var(--rv-primary); }
.rv-related-seo { margin-top: 28px; padding: 22px; border-top: 1px solid var(--rv-border); border-radius: 0 0 16px 16px; background: color-mix(in srgb, var(--rv-surface-2) 54%, transparent); }
.rv-related-seo ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) { .rv-seo-discovery { grid-template-columns: 1fr; } .rv-related-seo ul { grid-template-columns: 1fr; } }

/* Rank Vision v1.0.26.2 Answer Key SEO Network source styles are shipped in assets/css/rank-vision-1.0.26.2.css. */


/* ==========================================================
   Rank Vision v1.0.26.3 — premium screenshot-style footer
   ========================================================== */
.site-footer.rv-site-footer--v10263 {
  margin-top: auto;
  border-top: 0;
  background: #04172f;
  color: #f2f7ff;
}
.rv-site-footer--v10263 .rv-footer-topbar {
  background: linear-gradient(180deg, #1f5cb8 0%, #0f4aa8 100%);
  border-top: 3px solid #d4a657;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}
.rv-site-footer--v10263 .rv-footer-top-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.rv-site-footer--v10263 .rv-footer-top-navigation li {
  position: relative;
}
.rv-site-footer--v10263 .rv-footer-top-navigation li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.12);
}
.rv-site-footer--v10263 .rv-footer-top-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  color: #ffffff;
  font-size: .95rem;
  font-weight: 750;
  text-decoration: none;
}
.rv-site-footer--v10263 .rv-footer-top-navigation a:hover,
.rv-site-footer--v10263 .rv-footer-top-navigation a:focus-visible {
  background: rgba(255,255,255,.08);
  color: #ffffff;
}
.rv-site-footer--v10263 .rv-footer-main {
  background: linear-gradient(180deg, #04172f 0%, #071c39 100%);
}
.rv-site-footer--v10263 .rv-footer-main-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 40px;
  padding-top: 42px;
  padding-bottom: 32px;
}
.rv-site-footer--v10263 .rv-footer-panel {
  min-width: 0;
}
.rv-site-footer--v10263 .rv-footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rv-site-footer--v10263 .rv-footer-brand-badge {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.94);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: .04em;
  flex: 0 0 62px;
}
.rv-site-footer--v10263 .rv-footer-brand-name,
.rv-site-footer--v10263 .rv-footer-about-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  line-height: 1.2;
  font-weight: 800;
}
.rv-site-footer--v10263 .rv-footer-tagline,
.rv-site-footer--v10263 .rv-footer-about-copy {
  margin: 14px 0 0;
  color: rgba(233,241,255,.84);
  font-size: 1rem;
  line-height: 1.8;
}
.rv-site-footer--v10263 .rv-footer-panel--brand .rv-social-links--footer {
  justify-content: flex-start;
  gap: 14px;
  margin-top: 28px;
}
.rv-site-footer--v10263 .rv-social-links--footer .rv-social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: none;
}
.rv-site-footer--v10263 .rv-social-links--footer .rv-social-link > svg,
.rv-site-footer--v10263 .rv-social-links--footer .rv-social-link .rv-social-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex-basis: 20px !important;
}
.rv-site-footer--v10263 .rv-footer-panel--about {
  align-self: start;
  padding-top: 8px;
}
.rv-site-footer--v10263 .rv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  background: #04172f;
}
.rv-site-footer--v10263 .rv-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
.rv-site-footer--v10263 .rv-footer-copy,
.rv-site-footer--v10263 .rv-footer-made-india {
  margin: 0;
  color: rgba(238,244,255,.92);
  font-size: .96rem;
}
.rv-site-footer--v10263 .rv-footer-made-india span {
  display: inline-block;
  margin-inline: 2px;
}
html[data-theme="dark"] .rv-site-footer--v10263 {
  background: #051324;
}
html[data-theme="dark"] .rv-site-footer--v10263 .rv-footer-topbar {
  background: linear-gradient(180deg, #225fbf 0%, #124696 100%);
}
@media (max-width: 900px) {
  .rv-site-footer--v10263 .rv-footer-main-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 26px;
  }
  .rv-site-footer--v10263 .rv-footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-block: 18px;
  }
}
@media (max-width: 640px) {
  .rv-site-footer--v10263 .rv-footer-top-navigation ul {
    justify-content: flex-start;
  }
  .rv-site-footer--v10263 .rv-footer-top-navigation li {
    width: 50%;
  }
  .rv-site-footer--v10263 .rv-footer-top-navigation li::before,
  .rv-site-footer--v10263 .rv-footer-top-navigation li + li::before {
    display: none;
  }
  .rv-site-footer--v10263 .rv-footer-top-navigation a {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    justify-content: flex-start;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .rv-site-footer--v10263 .rv-footer-brand-lockup {
    align-items: flex-start;
  }
  .rv-site-footer--v10263 .rv-footer-brand-badge {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 1.3rem;
  }
  .rv-site-footer--v10263 .rv-footer-brand-name,
  .rv-site-footer--v10263 .rv-footer-about-title {
    font-size: 1.5rem;
  }
  .rv-site-footer--v10263 .rv-footer-tagline,
  .rv-site-footer--v10263 .rv-footer-about-copy {
    font-size: .98rem;
    line-height: 1.7;
  }
  .rv-site-footer--v10263 .rv-footer-panel--brand .rv-social-links--footer {
    gap: 12px;
  }
  .rv-site-footer--v10263 .rv-social-links--footer .rv-social-link {
    width: 46px;
    height: 46px;
  }
}


/* ==========================================================
   Rank Vision v1.0.26.4 — Result Bharats-style 3-column footer
   ========================================================== */
.site-footer.rv-site-footer--v10264 {
  margin-top: auto;
  border-top: 0;
  background: #04172f;
  color: #f2f7ff;
}
.rv-site-footer--v10264 .rv-footer-topbar {
  position: relative;
  background: linear-gradient(180deg, #1f5cb8 0%, #0f4aa8 100%);
  border-top: 3px solid #d4a657;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}
.rv-site-footer--v10264 .rv-footer-topbar::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 31%;
  height: 3px;
  background: #188b4b;
}
.rv-site-footer--v10264 .rv-footer-top-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.rv-site-footer--v10264 .rv-footer-top-navigation li { position: relative; }
.rv-site-footer--v10264 .rv-footer-top-navigation li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.13);
}
.rv-site-footer--v10264 .rv-footer-top-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 21px;
  color: #fff;
  font-size: .94rem;
  font-weight: 760;
  text-decoration: none;
}
.rv-site-footer--v10264 .rv-footer-top-navigation a:hover,
.rv-site-footer--v10264 .rv-footer-top-navigation a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.rv-site-footer--v10264 .rv-footer-main {
  background: linear-gradient(180deg, #04172f 0%, #061a35 100%);
}
.rv-site-footer--v10264 .rv-footer-main-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(180px, .62fr) minmax(300px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding-top: 46px;
  padding-bottom: 40px;
}
.rv-site-footer--v10264 .rv-footer-panel { min-width: 0; }
.rv-site-footer--v10264 .rv-footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 17px;
}
.rv-site-footer--v10264 .rv-footer-brand-badge {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255,255,255,.96);
  border-radius: 50%;
  color: #fff;
  font-size: 1.48rem;
  font-weight: 860;
  line-height: 1;
  letter-spacing: .025em;
}
.rv-site-footer--v10264 .rv-footer-brand-name,
.rv-site-footer--v10264 .rv-footer-about-title,
.rv-site-footer--v10264 .rv-footer-column-title {
  margin: 0;
  color: #fff;
  font-weight: 820;
  line-height: 1.25;
}
.rv-site-footer--v10264 .rv-footer-brand-name { font-size: clamp(1.55rem, 2vw, 1.9rem); }
.rv-site-footer--v10264 .rv-footer-about-title,
.rv-site-footer--v10264 .rv-footer-column-title { font-size: 1.16rem; }
.rv-site-footer--v10264 .rv-footer-column-title::after,
.rv-site-footer--v10264 .rv-footer-about-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0a53a, #fff 48%, #29a35a);
}
.rv-site-footer--v10264 .rv-footer-tagline,
.rv-site-footer--v10264 .rv-footer-about-copy {
  margin: 14px 0 0;
  color: rgba(231,239,252,.78);
  font-size: .98rem;
  line-height: 1.78;
}
.rv-site-footer--v10264 .rv-footer-panel--brand .rv-social-links--footer {
  justify-content: flex-start;
  gap: 12px;
  margin-top: 26px;
}
.rv-site-footer--v10264 .rv-social-links--footer .rv-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: none;
  transition: transform .2s ease, filter .2s ease;
}
.rv-site-footer--v10264 .rv-social-links--footer .rv-social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}
.rv-site-footer--v10264 .rv-social-links--footer .rv-social-link > svg,
.rv-site-footer--v10264 .rv-social-links--footer .rv-social-link .rv-social-icon {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-basis: 18px !important;
}
.rv-site-footer--v10264 .rv-footer-column-navigation ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.rv-site-footer--v10264 .rv-footer-column-navigation a,
.rv-site-footer--v10264 .rv-footer-mini-legal a {
  color: rgba(233,241,255,.82);
  font-size: .94rem;
  font-weight: 650;
  text-decoration: none;
}
.rv-site-footer--v10264 .rv-footer-column-navigation a::before {
  content: "›";
  display: inline-block;
  margin-right: 9px;
  color: #55b77a;
  font-size: 1.05rem;
  font-weight: 900;
}
.rv-site-footer--v10264 .rv-footer-column-navigation a:hover,
.rv-site-footer--v10264 .rv-footer-column-navigation a:focus-visible,
.rv-site-footer--v10264 .rv-footer-mini-legal a:hover,
.rv-site-footer--v10264 .rv-footer-mini-legal a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.rv-site-footer--v10264 .rv-footer-mini-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 19px;
}
.rv-site-footer--v10264 .rv-footer-mini-legal a + a {
  position: relative;
}
.rv-site-footer--v10264 .rv-footer-mini-legal a + a::before {
  content: "•";
  position: absolute;
  left: -11px;
  color: rgba(255,255,255,.28);
}
.rv-site-footer--v10264 .rv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  background: #04172f;
}
.rv-site-footer--v10264 .rv-footer-bottom-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.rv-site-footer--v10264 .rv-footer-copy,
.rv-site-footer--v10264 .rv-footer-made-india {
  margin: 0;
  color: rgba(236,243,255,.87);
  font-size: .92rem;
}
@media (max-width: 940px) {
  .rv-site-footer--v10264 .rv-footer-main-inner {
    grid-template-columns: 1fr 1fr;
  }
  .rv-site-footer--v10264 .rv-footer-panel--brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .rv-site-footer--v10264 .rv-footer-top-navigation ul { justify-content: flex-start; }
  .rv-site-footer--v10264 .rv-footer-top-navigation li { width: 50%; }
  .rv-site-footer--v10264 .rv-footer-top-navigation li + li::before { display: none; }
  .rv-site-footer--v10264 .rv-footer-top-navigation a {
    width: 100%;
    min-height: 49px;
    justify-content: flex-start;
    padding: 0 15px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .88rem;
  }
  .rv-site-footer--v10264 .rv-footer-main-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 34px;
    padding-bottom: 30px;
  }
  .rv-site-footer--v10264 .rv-footer-panel--brand { grid-column: auto; }
  .rv-site-footer--v10264 .rv-footer-brand-badge {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    font-size: 1.28rem;
  }
  .rv-site-footer--v10264 .rv-footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-block: 18px;
  }
}


/* Rank Vision v1.0.26.5 — floating social rail removed. */
.rv-floating-social,
#rank-vision-floating-social {
  display: none !important;
}
