:root {
  --rvn-nav-h: 64px;
  --bg-deep: #1A2332;
  --bg-ink: #0F1923;
  --bg-surface: #F4F6F8;
  --bg-white: #FFFFFF;
  --text-primary-dark: #F1F5F9;
  --text-muted-dark: #94A3B8;
  --text-primary-light: #1A2332;
  --text-muted-light: #475569;
  --text-accent-light: #155E30;
  --accent-ledger: #1A6B3C;
  --accent-positive: #22C55E;
  --accent-alert: #DC2626;
  --accent-watch: #D97706;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.12);
  --transition: 200ms ease;
  --max-w: 1200px;
  --gap: 32px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary-light);
  background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Satoshi', 'Inter', system-ui, sans-serif;
  line-height: 1.15;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.rvn-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.rvn-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.rvn-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--rvn-nav-h);
  background: var(--bg-ink);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}

.rvn-nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.rvn-nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.rvn-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.rvn-nav__logo img {
  height: 28px;
  width: auto;
}

.rvn-logo--dark { display: none; }
.rvn-logo--light { display: block; }

.rvn-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.rvn-nav__link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.rvn-nav__link:hover {
  color: var(--accent-positive);
  background: rgba(255,255,255,0.06);
}

.rvn-nav__cta {
  margin-left: 8px;
}

.rvn-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
}

.rvn-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.rvn-nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--rvn-nav-h);
  left: 0;
  right: 0;
  background: var(--bg-ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.rvn-nav__mobile-menu.rvn-nav__mobile-menu--open {
  display: flex;
}

.rvn-nav__mobile-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary-dark);
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rvn-nav__mobile-cta {
  margin-top: 12px;
  align-self: flex-start;
}

.rvn-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.rvn-btn--primary {
  background: var(--accent-ledger);
  color: #FFFFFF;
  border: 2px solid var(--accent-ledger);
}

.rvn-btn--primary:hover {
  background: #155E30;
  border-color: #155E30;
  box-shadow: 0 4px 14px rgba(26,107,60,0.4);
}

.rvn-btn--ghost-dark {
  background: transparent;
  color: var(--text-primary-dark);
  border: 2px solid rgba(241,245,249,0.3);
}

.rvn-btn--ghost-dark:hover {
  border-color: rgba(241,245,249,0.6);
  background: rgba(255,255,255,0.05);
}

.rvn-btn--ghost-light {
  background: transparent;
  color: var(--text-primary-light);
  border: 2px solid rgba(26,35,50,0.3);
}

.rvn-btn--ghost-light:hover {
  border-color: rgba(26,35,50,0.6);
  background: rgba(26,35,50,0.04);
}

.rvn-btn--outline-dark {
  background: transparent;
  color: var(--accent-positive);
  border: 2px solid var(--accent-ledger);
}

.rvn-btn--outline-dark:hover {
  background: var(--accent-ledger);
  color: #FFFFFF;
}

.rvn-btn--sm {
  padding: 7px 14px;
  font-size: 13px;
}

.rvn-btn--lg {
  padding: 14px 28px;
  font-size: 17px;
}

.rvn-section {
  padding-block: 80px;
}

.rvn-section--dark {
  background: var(--bg-deep);
  color: var(--text-primary-dark);
}

.rvn-section--dark-alt {
  background: var(--bg-ink);
  color: var(--text-primary-dark);
}

.rvn-section--light {
  background: var(--bg-surface);
  color: var(--text-primary-light);
}

.rvn-section--light-alt {
  background: var(--bg-white);
  color: var(--text-primary-light);
}

.rvn-section--white {
  background: var(--bg-white);
  color: var(--text-primary-light);
}

.rvn-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-accent-light);
  margin-bottom: 12px;
}

.rvn-section--dark .rvn-eyebrow,
.rvn-section--dark-alt .rvn-eyebrow {
  color: var(--accent-positive);
}

.rvn-section-title {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.rvn-section-sub {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  color: var(--text-muted-light);
}

.rvn-section--dark .rvn-section-sub,
.rvn-section--dark-alt .rvn-section-sub {
  color: var(--text-muted-dark);
}

.rvn-section-header {
  margin-bottom: 56px;
}

.rvn-section-header--center {
  text-align: center;
}

.rvn-section-header--center .rvn-section-sub {
  margin-inline: auto;
}

.rvn-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--rvn-nav-h) + 60px);
  padding-bottom: 80px;
  background: var(--bg-deep);
}

.rvn-hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.rvn-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.12);
  color: var(--accent-positive);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.rvn-hero__h1 {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  color: var(--text-primary-dark);
  margin-bottom: 24px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.rvn-hero__h1 span {
  color: var(--accent-positive);
}

.rvn-hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin-bottom: 40px;
  max-width: 500px;
}

.rvn-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.rvn-hero__text {
  min-width: 0;
}

.rvn-hero__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.rvn-pl-dashboard {
  background: #111E2D;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
}

.rvn-pl-dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rvn-pl-dashboard__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary-dark);
}

.rvn-pl-dashboard__date {
  font-size: 11px;
  color: var(--text-muted-dark);
}

.rvn-pl-table {
  width: 100%;
  border-collapse: collapse;
}

.rvn-pl-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  padding: 6px 8px;
  text-align: right;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.rvn-pl-table th:first-child { text-align: left; }

.rvn-pl-table td {
  padding: 8px 8px;
  text-align: right;
  color: var(--text-muted-dark);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'JetBrains Mono', monospace;
}

.rvn-pl-table td:first-child {
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--text-primary-dark);
  font-size: 12px;
}

.rvn-pl-table tr:last-child td { border-bottom: none; }

.rvn-pl-table tr:hover td { background: rgba(255,255,255,0.02); }

.rvn-pl-var--positive {
  color: var(--accent-positive);
  font-weight: 600;
}

.rvn-pl-var--negative {
  color: var(--accent-alert);
  font-weight: 600;
}

.rvn-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.rvn-badge--ok {
  background: rgba(34,197,94,0.15);
  color: var(--accent-positive);
  border: 1px solid rgba(34,197,94,0.25);
}

.rvn-badge--alert {
  background: rgba(220,38,38,0.15);
  color: #F87171;
  border: 1px solid rgba(220,38,38,0.25);
}

.rvn-badge--watch {
  background: rgba(217,119,6,0.15);
  color: #F59E0B;
  border: 1px solid rgba(217,119,6,0.25);
}

.rvn-problem-band {
  padding-block: 72px;
  background: var(--bg-ink);
}

.rvn-problem-band__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.rvn-problem-item {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
}

.rvn-problem-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(220,38,38,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-alert);
  font-size: 20px;
}

.rvn-problem-item__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary-dark);
  margin-bottom: 10px;
}

.rvn-problem-item__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

.rvn-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
}

.rvn-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-ledger) 0%, rgba(26,107,60,0.2) 100%);
}

.rvn-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.rvn-step__num {
  width: 56px;
  height: 56px;
  background: var(--accent-ledger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.rvn-step__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary-light);
  margin-bottom: 10px;
}

.rvn-step__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted-light);
}

.rvn-catches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.rvn-catch-tile {
  padding: 36px;
  background: var(--bg-surface);
  border: 1px solid rgba(26,35,50,0.08);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}

.rvn-catch-tile:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.rvn-catch-tile__icon {
  width: 52px;
  height: 52px;
  background: rgba(26,107,60,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-ledger);
  font-size: 24px;
}

.rvn-catch-tile__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary-light);
  margin-bottom: 12px;
}

.rvn-catch-tile__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted-light);
}

.rvn-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.rvn-pricing-card {
  background: var(--bg-deep);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.rvn-pricing-card--highlighted {
  background: var(--bg-white);
  border: 2px solid var(--accent-ledger);
  color: var(--text-primary-light);
  position: relative;
}

.rvn-pricing-card--highlighted .rvn-pricing-card__name,
.rvn-pricing-card--highlighted .rvn-pricing-card__price,
.rvn-pricing-card--highlighted .rvn-pricing-card__tagline { color: var(--text-primary-light); }

.rvn-pricing-card--highlighted .rvn-pricing-card__feature { color: var(--text-muted-light); }

.rvn-pricing-card__recommended {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-ledger);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 10px;
}

.rvn-pricing-card__badge {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  color: var(--accent-positive);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rvn-pricing-card__name {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary-dark);
  margin-bottom: 8px;
}

.rvn-pricing-card__price {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--text-primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.rvn-pricing-card__price sup {
  font-size: 20px;
  vertical-align: top;
  margin-top: 6px;
}

.rvn-pricing-card__price .rvn-cadence {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted-dark);
}

.rvn-pricing-card--highlighted .rvn-pricing-card__price .rvn-cadence { color: var(--text-muted-light); }

.rvn-pricing-card__tagline {
  font-size: 14px;
  color: var(--text-muted-dark);
  margin-bottom: 28px;
  line-height: 1.5;
}

.rvn-pricing-card__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.rvn-pricing-card--highlighted .rvn-pricing-card__divider {
  background: rgba(26,35,50,0.1);
}

.rvn-pricing-card__features {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rvn-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted-dark);
}

.rvn-pricing-card__feature i {
  color: var(--accent-positive);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.rvn-pricing-card .rvn-btn {
  width: 100%;
  justify-content: center;
}

.rvn-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.rvn-toggle-label {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted-light);
}

.rvn-toggle-label.active {
  color: var(--text-primary-light);
  font-weight: 600;
}

.rvn-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: #CBD5E1;
  border-radius: 13px;
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.rvn-toggle-switch.annual { background: var(--accent-ledger); }

.rvn-toggle-switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition);
}

.rvn-toggle-switch.annual::after { transform: translateX(22px); }

.rvn-toggle-save {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-ledger);
  background: rgba(26,107,60,0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

.rvn-faq {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rvn-faq__item {
  background: var(--bg-white);
  border: 1px solid rgba(26,35,50,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.rvn-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary-light);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: background var(--transition);
}

.rvn-faq__q:hover { background: rgba(26,35,50,0.02); }

.rvn-faq__q i {
  color: var(--accent-ledger);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.rvn-faq__item.rvn-faq__item--open .rvn-faq__q i {
  transform: rotate(180deg);
}

.rvn-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.rvn-faq__item.rvn-faq__item--open .rvn-faq__a {
  max-height: 600px;
}

.rvn-faq__a-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted-light);
}

.rvn-cta-band {
  padding-block: 80px;
  background: var(--bg-ink);
  text-align: center;
}

.rvn-cta-band__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: 24px;
}

.rvn-cta-band__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--text-primary-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.rvn-cta-band__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin-bottom: 36px;
}

.rvn-cta-band__form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin-inline: auto;
}

.rvn-cta-band__input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: var(--text-primary-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}

.rvn-cta-band__input::placeholder { color: var(--text-muted-dark); }

.rvn-cta-band__input:focus {
  border-color: var(--accent-positive);
}

.rvn-footer {
  background: var(--bg-ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 64px;
  padding-bottom: 32px;
}

.rvn-footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.rvn-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.rvn-footer__brand img {
  height: 26px;
  width: auto;
  margin-bottom: 16px;
}

.rvn-footer__tagline {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
  max-width: 240px;
}

.rvn-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted-dark);
  margin-bottom: 6px;
}

.rvn-footer__contact-item i {
  color: var(--accent-ledger);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.rvn-footer__contact-item a {
  color: var(--text-muted-dark);
  transition: color var(--transition);
}

.rvn-footer__contact-item a:hover { color: var(--accent-positive); }

.rvn-footer__col-heading {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-primary-dark);
  margin-bottom: 16px;
}

.rvn-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rvn-footer__col-link {
  font-size: 14px;
  color: var(--text-muted-dark);
  transition: color var(--transition);
}

.rvn-footer__col-link:hover { color: var(--accent-positive); }

.rvn-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.rvn-footer__copy {
  font-size: 13px;
  color: var(--text-muted-dark);
}

.rvn-footer__legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rvn-footer__legal-link {
  font-size: 13px;
  color: var(--text-muted-dark);
  transition: color var(--transition);
}

.rvn-footer__legal-link:hover { color: var(--accent-positive); }

.rvn-subhero {
  padding-top: calc(var(--rvn-nav-h) + 64px);
  padding-bottom: 64px;
}

.rvn-subhero--dark {
  background: var(--bg-deep);
}

.rvn-subhero--light {
  background: var(--bg-surface);
}

.rvn-subhero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}

.rvn-subhero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.12);
  color: var(--accent-positive);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.rvn-subhero--light .rvn-subhero__tag {
  background: rgba(26,107,60,0.08);
  color: var(--text-accent-light);
  border-color: rgba(26,107,60,0.2);
}

.rvn-subhero__h1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.1;
  color: var(--text-primary-dark);
  margin-bottom: 20px;
}

.rvn-subhero--light .rvn-subhero__h1 {
  color: var(--text-primary-light);
}

.rvn-subhero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted-dark);
  max-width: 600px;
  margin-inline: auto;
}

.rvn-subhero--light .rvn-subhero__sub {
  color: var(--text-muted-light);
}

.rvn-subhero__ornament {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 48px;
}

.rvn-subhero__stat {
  text-align: center;
}

.rvn-subhero__stat-num {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--accent-positive);
  display: block;
}

.rvn-subhero--light .rvn-subhero__stat-num {
  color: var(--accent-ledger);
}

.rvn-subhero__stat-label {
  font-size: 13px;
  color: var(--text-muted-dark);
  display: block;
  margin-top: 4px;
}

.rvn-subhero--light .rvn-subhero__stat-label {
  color: var(--text-muted-light);
}

.rvn-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.rvn-two-col__text { min-width: 0; }
.rvn-two-col__visual { min-width: 0; overflow: hidden; }
.rvn-two-col--flip .rvn-two-col__text { order: 2; }
.rvn-two-col--flip .rvn-two-col__visual { order: 1; }

.rvn-two-col__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text-primary-light);
  margin-bottom: 16px;
  line-height: 1.2;
}

.rvn-section--dark .rvn-two-col__title,
.rvn-section--dark-alt .rvn-two-col__title {
  color: var(--text-primary-dark);
}

.rvn-two-col__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted-light);
}

.rvn-section--dark .rvn-two-col__body,
.rvn-section--dark-alt .rvn-two-col__body {
  color: var(--text-muted-dark);
}

.rvn-two-col__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rvn-two-col__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted-light);
  line-height: 1.5;
}

.rvn-section--dark .rvn-two-col__list li,
.rvn-section--dark-alt .rvn-two-col__list li {
  color: var(--text-muted-dark);
}

.rvn-two-col__list li i {
  color: var(--accent-positive);
  margin-top: 2px;
  flex-shrink: 0;
}

.rvn-section--dark .rvn-two-col__list li i,
.rvn-section--dark-alt .rvn-two-col__list li i {
  color: var(--accent-positive);
}

.rvn-code-mock {
  background: #0A0F17;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.rvn-code-mock__bar {
  background: rgba(255,255,255,0.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rvn-code-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.rvn-code-mock__dot--red { background: #FF5F57; }
.rvn-code-mock__dot--yellow { background: #FEBC2E; }
.rvn-code-mock__dot--green { background: #28C840; }

.rvn-code-mock__filename {
  font-size: 12px;
  color: var(--text-muted-dark);
  margin-left: 4px;
}

.rvn-code-mock__body {
  padding: 20px;
  line-height: 1.7;
}

.rvn-code-mock__body .key { color: #7DD3FC; }
.rvn-code-mock__body .string { color: #86EFAC; }
.rvn-code-mock__body .number { color: #FCA5A5; }
.rvn-code-mock__body .comment { color: #64748B; }
.rvn-code-mock__body .punct { color: #94A3B8; }

.rvn-vendor-table {
  background: #111E2D;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

.rvn-vendor-table__header {
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rvn-vendor-table__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary-dark);
}

.rvn-vendor-table table {
  width: 100%;
  border-collapse: collapse;
}

.rvn-vendor-table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.rvn-vendor-table td {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted-dark);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'DM Sans', sans-serif;
}

.rvn-vendor-table td:first-child {
  color: var(--text-primary-dark);
  font-weight: 500;
}

.rvn-vendor-table tr:last-child td { border-bottom: none; }

.rvn-confidence {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-alert);
}

.rvn-confidence--high { color: #F87171; }
.rvn-confidence--med { color: #FCD34D; }

.rvn-integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.rvn-integration-card {
  padding: 28px 20px;
  background: var(--bg-white);
  border: 1px solid rgba(26,35,50,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.rvn-integration-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.rvn-integration-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(26,107,60,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-ledger);
  font-size: 24px;
}

.rvn-integration-card__name {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary-light);
}

.rvn-integration-card__method {
  font-size: 12px;
  color: var(--text-muted-light);
}

.rvn-security-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rvn-security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
}

.rvn-security-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(34,197,94,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-positive);
  font-size: 20px;
  flex-shrink: 0;
}

.rvn-security-item__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary-dark);
  margin-bottom: 6px;
}

.rvn-security-item__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

.rvn-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.rvn-team-card {
  background: var(--bg-white);
  border: 1px solid rgba(26,35,50,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}

.rvn-team-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 20px;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rvn-team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rvn-team-card__initials {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--text-primary-dark);
}

.rvn-team-card__name {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary-light);
  margin-bottom: 4px;
}

.rvn-team-card__role {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-accent-light);
  margin-bottom: 16px;
}

.rvn-team-card__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-light);
}

.rvn-contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.rvn-contact-two-col__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary-dark);
  margin-bottom: 16px;
}

.rvn-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rvn-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted-dark);
}

.rvn-contact-info__item i {
  color: var(--accent-positive);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.rvn-contact-info__item a {
  color: var(--text-muted-dark);
  transition: color var(--transition);
}

.rvn-contact-info__item a:hover { color: var(--accent-positive); }

.rvn-blog-featured-section {
  padding-block: 80px;
  background: var(--bg-ink);
}

.rvn-blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.rvn-blog-featured-card__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.rvn-blog-featured-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rvn-blog-featured-card__tag {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-positive);
  margin-bottom: 16px;
}

.rvn-blog-featured-card__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text-primary-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.rvn-blog-featured-card__title a {
  color: inherit;
}

.rvn-blog-featured-card__title a:hover {
  color: var(--accent-positive);
}

.rvn-blog-featured-card__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}

.rvn-blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted-dark);
  flex-wrap: wrap;
}

.rvn-blog-meta i { font-size: 12px; color: var(--text-muted-dark); }

.rvn-blog-grid-section {
  padding-block: 80px;
  background: var(--bg-surface);
}

.rvn-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rvn-blog-card {
  background: var(--bg-white);
  border: 1px solid rgba(26,35,50,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.rvn-blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.rvn-blog-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.rvn-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.rvn-blog-card:hover .rvn-blog-card__img img {
  transform: scale(1.04);
}

.rvn-blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rvn-blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.rvn-blog-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-accent-light);
  background: rgba(21,94,48,0.08);
  padding: 2px 8px;
  border-radius: 10px;
}

.rvn-blog-card__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary-light);
  margin-bottom: 10px;
  line-height: 1.3;
  flex: 1;
}

.rvn-blog-card__title a {
  color: inherit;
  transition: color var(--transition);
}

.rvn-blog-card__title a:hover { color: var(--accent-ledger); }

.rvn-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted-light);
  margin-top: 16px;
}

.rvn-article-page {
  background: var(--bg-white);
}

.rvn-article-header {
  padding-top: calc(var(--rvn-nav-h) + 48px);
  padding-bottom: 48px;
  background: var(--bg-surface);
}

.rvn-article-header__inner {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: 24px;
}

.rvn-article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-accent-light);
  margin-bottom: 24px;
  transition: gap var(--transition);
}

.rvn-article-back:hover { gap: 12px; }

.rvn-article-header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.rvn-article-header__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-accent-light);
  background: rgba(21,94,48,0.1);
  padding: 3px 10px;
  border-radius: 12px;
}

.rvn-article-header__h1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--text-primary-light);
  margin-bottom: 20px;
  line-height: 1.15;
}

.rvn-article-header__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted-light);
  flex-wrap: wrap;
}

.rvn-article-header__meta i { font-size: 13px; }

.rvn-article-cover {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-top: 40px;
}

.rvn-article-cover figure {
  margin: 0;
  max-width: 840px;
  margin-inline: auto;
}

.rvn-article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.rvn-article-body {
  max-width: 720px;
  margin-inline: auto;
  padding: 48px 24px 80px;
}

.rvn-article-body h2 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--text-primary-light);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.rvn-article-body h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary-light);
  margin-top: 32px;
  margin-bottom: 12px;
}

.rvn-article-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary-light);
  margin-bottom: 20px;
}

.rvn-article-body ul, .rvn-article-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.rvn-article-body ul { list-style: disc; }
.rvn-article-body ol { list-style: decimal; }

.rvn-article-body li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-primary-light);
  margin-bottom: 8px;
}

.rvn-article-body strong { font-weight: 700; }

.rvn-article-body blockquote {
  border-left: 3px solid var(--accent-ledger);
  padding: 12px 20px;
  margin: 28px 0;
  background: var(--bg-surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.rvn-article-body blockquote p {
  font-size: 17px;
  font-style: italic;
  color: var(--text-muted-light);
  margin: 0;
}

.rvn-article-related {
  max-width: 720px;
  margin-inline: auto;
  padding: 0 24px 80px;
  border-top: 1px solid rgba(26,35,50,0.08);
  padding-top: 48px;
}

.rvn-article-related__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary-light);
  margin-bottom: 24px;
}

.rvn-article-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rvn-article-related__card {
  padding: 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,35,50,0.07);
  transition: box-shadow var(--transition);
}

.rvn-article-related__card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.rvn-article-related__card-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary-light);
  line-height: 1.3;
  margin-bottom: 8px;
}

.rvn-article-related__card-title a {
  color: inherit;
  transition: color var(--transition);
}

.rvn-article-related__card-title a:hover { color: var(--accent-ledger); }

.rvn-article-related__card-meta {
  font-size: 12px;
  color: var(--text-muted-light);
}

.rvn-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  padding: 32px 24px;
}

.rvn-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-ink);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.rvn-login-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.rvn-login-card__logo img { height: 28px; width: auto; }

.rvn-login-card__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--text-primary-dark);
  text-align: center;
  margin-bottom: 8px;
}

.rvn-login-card__sub {
  font-size: 14px;
  color: var(--text-muted-dark);
  text-align: center;
  margin-bottom: 32px;
}

.rvn-form-group {
  margin-bottom: 20px;
}

.rvn-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary-dark);
  margin-bottom: 6px;
}

.rvn-form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: var(--text-primary-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}

.rvn-form-input::placeholder { color: var(--text-muted-dark); }

.rvn-form-input:focus { border-color: var(--accent-positive); }

.rvn-login-card__forgot {
  display: block;
  text-align: right;
  font-size: 13px;
  color: var(--accent-positive);
  margin-top: 6px;
  transition: opacity var(--transition);
}

.rvn-login-card__forgot:hover { opacity: 0.8; }

.rvn-login-card__submit {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
  padding-block: 13px;
  font-size: 16px;
}

.rvn-login-card__footer {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted-dark);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.rvn-login-card__footer a {
  color: var(--accent-positive);
  transition: opacity var(--transition);
}

.rvn-login-card__footer a:hover { opacity: 0.8; }

.rvn-legal-page {
  background: var(--bg-white);
}

.rvn-legal-hero {
  padding-top: calc(var(--rvn-nav-h) + 48px);
  padding-bottom: 48px;
  background: var(--bg-surface);
}

.rvn-legal-hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.rvn-legal-hero__h1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--text-primary-light);
  margin-bottom: 12px;
}

.rvn-legal-hero__meta {
  font-size: 15px;
  color: var(--text-muted-light);
}

.rvn-legal-content {
  max-width: 840px;
  margin-inline: auto;
  padding: 56px 24px 80px;
  background: var(--bg-white);
  color: var(--text-primary-light);
}

.rvn-legal-content h2 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary-light);
  margin-top: 40px;
  margin-bottom: 12px;
}

.rvn-legal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary-light);
  margin-bottom: 16px;
}

.rvn-legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.rvn-legal-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary-light);
  margin-bottom: 6px;
}

.rvn-pricing-hero-section {
  padding-top: calc(var(--rvn-nav-h) + 60px);
  padding-bottom: 60px;
  background: var(--bg-surface);
  text-align: center;
}

.rvn-pricing-hero-section__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.rvn-pricing-hero-section__h1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--text-primary-light);
  margin-bottom: 16px;
}

.rvn-pricing-hero-section__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted-light);
  max-width: 500px;
  margin-inline: auto;
}

.rvn-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.rvn-fade-in.rvn-visible {
  opacity: 1;
  transform: translateY(0);
}

.rvn-pricing-card__price-annual { display: none; }
.rvn-pricing-card__price-monthly { display: block; }

.rvn-toggle-switch.annual ~ .rvn-pricing-cards .rvn-pricing-card__price-annual { display: block; }
.rvn-toggle-switch.annual ~ .rvn-pricing-cards .rvn-pricing-card__price-monthly { display: none; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted-dark);
  flex: 1;
  min-width: 260px;
}

.cookie-banner__text a {
  color: var(--accent-positive);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  color: var(--text-primary-dark);
  background: rgba(255,255,255,0.08);
}

.cookie-banner__btn--primary {
  background: var(--accent-ledger);
  color: #FFFFFF;
  border-color: var(--accent-ledger);
}

.cookie-banner__btn--primary:hover {
  background: #155E30;
  border-color: #155E30;
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--text-muted-dark);
  border-color: rgba(255,255,255,0.2);
}

.cookie-banner__btn--secondary:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--text-primary-dark);
}

.rvn-blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.rvn-blog-filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted-light);
  background: var(--bg-white);
  border: 1px solid rgba(26,35,50,0.14);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.rvn-blog-filter-btn:hover {
  color: var(--accent-ledger);
  border-color: var(--accent-ledger);
}

.rvn-blog-filter-btn.is-active {
  background: var(--accent-ledger);
  color: #FFFFFF;
  border-color: var(--accent-ledger);
}

.rvn-blog-featured {
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(26,35,50,0.1);
  background: var(--bg-white);
  transition: box-shadow var(--transition), transform var(--transition);
}

.rvn-blog-featured:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.rvn-blog-featured__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 300px;
  color: inherit;
}

.rvn-blog-featured__img-wrap {
  overflow: hidden;
  min-height: 280px;
}

.rvn-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease;
}

.rvn-blog-featured:hover .rvn-blog-featured__img {
  transform: scale(1.03);
}

.rvn-blog-featured__text {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rvn-blog-featured__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--text-primary-light);
  margin-block: 10px 12px;
  line-height: 1.2;
}

.rvn-blog-featured__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}

.rvn-blog-card--grid {
  height: 100%;
}

.rvn-blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.rvn-blog-card__img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.rvn-blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.rvn-blog-card:hover .rvn-blog-card__img-wrap img {
  transform: scale(1.04);
}

.rvn-blog-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-light);
  margin-top: 10px;
  flex-grow: 1;
}

.rvn-blog-card__author {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted-light);
  margin-top: 14px;
}

.rvn-blog-card__date {
  font-size: 12px;
  color: var(--text-muted-light);
}

.rvn-blog-card__read {
  font-size: 12px;
  color: var(--text-muted-light);
}

.rvn-article-hero {
  padding-top: calc(var(--rvn-nav-h) + 60px);
  padding-bottom: 60px;
  background: var(--bg-ink);
}

.rvn-article-hero__inner {
  max-width: 840px;
  margin-inline: auto;
  padding-inline: 24px;
}

.rvn-article-hero .rvn-article-back {
  color: var(--accent-positive);
}

.rvn-article-hero .rvn-article-back:hover {
  color: #86EFAC;
}

.rvn-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.rvn-article-hero__meta .rvn-blog-card__tag {
  background: rgba(34,197,94,0.15);
  color: var(--accent-positive);
}

.rvn-article-hero__meta .rvn-blog-card__date,
.rvn-article-hero__meta .rvn-blog-card__read {
  color: var(--text-muted-dark);
}

.rvn-article-hero__h1 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 44px);
  color: var(--text-primary-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.rvn-article-hero__excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted-dark);
  margin-bottom: 32px;
  max-width: 680px;
}

.rvn-article-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rvn-article-hero__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent-ledger);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rvn-article-hero__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rvn-article-hero__author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary-dark);
}

.rvn-article-cover-section {
  background: var(--bg-white);
  padding-top: 0;
}

.rvn-article-cover-section .rvn-article-cover {
  padding-top: 40px;
}

.rvn-article-cover__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-width: 840px;
  margin-inline: auto;
}

.rvn-article-content {
  width: 100%;
}

.rvn-article-cta {
  margin-top: 56px;
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-ink) 0%, var(--bg-deep) 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.rvn-article-cta__title,
.rvn-article-body .rvn-article-cta__title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-primary-dark);
  margin-bottom: 12px;
}

.rvn-article-cta__body,
.rvn-article-body .rvn-article-cta__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}

.rvn-btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.rvn-login-card__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted-dark);
}

.rvn-login-card__legal-link {
  color: var(--text-muted-dark);
  transition: color var(--transition);
}

.rvn-login-card__legal-link:hover {
  color: var(--text-primary-dark);
}

@media (max-width: 1024px) {
  .rvn-hero__inner { gap: 48px; }
  .rvn-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .rvn-integration-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .rvn-nav__links { display: none; }
  .rvn-nav__hamburger { display: flex; }
  .rvn-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding-top: calc(var(--rvn-nav-h) + 48px);
  }
  .rvn-hero { min-height: auto; }
  .rvn-problem-band__inner { grid-template-columns: 1fr; }
  .rvn-steps { grid-template-columns: 1fr; }
  .rvn-steps::before { display: none; }
  .rvn-catches-grid { grid-template-columns: 1fr; }
  .rvn-pricing-cards { grid-template-columns: 1fr; }
  .rvn-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rvn-two-col--flip .rvn-two-col__text,
  .rvn-two-col--flip .rvn-two-col__visual { order: unset; }
  .rvn-security-list { grid-template-columns: 1fr; }
  .rvn-team-grid { grid-template-columns: 1fr; }
  .rvn-contact-two-col { grid-template-columns: 1fr; gap: 40px; }
  .rvn-blog-featured-card { grid-template-columns: 1fr; gap: 32px; }
  .rvn-blog-grid { grid-template-columns: 1fr; }
  .rvn-article-related__grid { grid-template-columns: 1fr; }
  .rvn-footer__top { grid-template-columns: 1fr; gap: 32px; }
  .rvn-footer__bottom { flex-direction: column; align-items: flex-start; }
  .rvn-integration-grid { grid-template-columns: repeat(2, 1fr); }
  .rvn-cta-band__form { flex-direction: column; }
  .rvn-subhero__ornament { gap: 28px; flex-wrap: wrap; }
  .rvn-blog-featured__link { grid-template-columns: 1fr; }
  .rvn-blog-featured__text { padding: 28px 24px; }
  .rvn-article-hero__excerpt { font-size: 15px; }
}

@media (max-width: 480px) {
  .rvn-hero__h1 { font-size: 30px; }
  .rvn-section { padding-block: 56px; }
  .rvn-hero__cta-row { flex-direction: column; align-items: flex-start; }
  .rvn-login-card { padding: 36px 24px; }
  .rvn-integration-grid { grid-template-columns: 1fr; }
  .rvn-blog-grid { grid-template-columns: 1fr; }
}

.rvn-page--dark-top,
.rvn-page--light-top {
  margin: 0;
  padding: 0;
}

.rvn-footer__col {
  display: flex;
  flex-direction: column;
}

.rvn-cta-form,
.rvn-login-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
