/* Routeharvest — rhvt.css — All component styles */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@700;800&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* === TOKENS === */
:root {
  --rhvt-bg-deep: #0B1A13;
  --rhvt-bg-card: #142619;
  --rhvt-bg-surface-alt: #1E3826;
  --rhvt-bg-light: #F0F4EF;
  --rhvt-bg-white: #FFFFFF;
  --rhvt-bg-light-alt: #E6EDE5;
  --rhvt-amber: #D4912A;
  --rhvt-amber-light: #F5B544;
  --rhvt-green-signal: #35B76D;
  --rhvt-text-primary-dark: #EEE9DE;
  --rhvt-text-muted-dark: #7A9B8A;
  --rhvt-text-primary-light: #1A2E1F;
  --rhvt-text-muted-light: #3D6E52;
  --rhvt-text-muted-white: #4A7560;
  --rhvt-nav-h: 68px;
  --rhvt-container: 1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--rhvt-bg-deep);
  color: var(--rhvt-text-primary-dark);
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* === CONTAINER === */
.rhvt-container {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* === TYPOGRAPHY === */
.rhvt-h1 { font-family: 'Sora', system-ui, sans-serif; font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.75rem); line-height: 1.1; }
.rhvt-h2 { font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3.5vw, 2.5rem); line-height: 1.2; }
.rhvt-h3 { font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: clamp(1.2rem, 2.5vw, 1.6rem); line-height: 1.3; }
.rhvt-h4 { font-family: 'Sora', system-ui, sans-serif; font-weight: 700; font-size: 1.1rem; line-height: 1.4; }
.rhvt-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rhvt-mono { font-family: 'IBM Plex Mono', monospace; }

/* === SECTION BACKGROUNDS === */
.rhvt-section--dark {
  background: var(--rhvt-bg-deep);
  color: var(--rhvt-text-primary-dark);
}
.rhvt-section--dark-alt {
  background: var(--rhvt-bg-surface-alt);
  color: var(--rhvt-text-primary-dark);
}
.rhvt-section--light {
  background: var(--rhvt-bg-light);
  color: var(--rhvt-text-primary-light);
}
.rhvt-section--light-alt {
  background: var(--rhvt-bg-light-alt);
  color: var(--rhvt-text-primary-light);
}
.rhvt-section--white {
  background: var(--rhvt-bg-white);
  color: var(--rhvt-text-primary-light);
}

/* === BUTTONS === */
.rhvt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.rhvt-btn--primary {
  background: var(--rhvt-amber);
  color: var(--rhvt-bg-deep);
  border-color: var(--rhvt-amber);
}
.rhvt-btn--primary:hover {
  background: var(--rhvt-amber-light);
  border-color: var(--rhvt-amber-light);
}
.rhvt-btn--ghost-on-dark {
  background: transparent;
  color: var(--rhvt-text-primary-dark);
  border-color: rgba(238,233,222,0.35);
}
.rhvt-btn--ghost-on-dark:hover {
  border-color: var(--rhvt-amber);
  color: var(--rhvt-amber);
}
.rhvt-btn--outline-dark {
  background: transparent;
  color: var(--rhvt-text-primary-light);
  border-color: var(--rhvt-text-primary-light);
}
.rhvt-btn--outline-dark:hover {
  background: var(--rhvt-text-primary-light);
  color: var(--rhvt-bg-white);
}
.rhvt-btn--text-link {
  background: transparent;
  border-color: transparent;
  color: var(--rhvt-amber);
  padding-left: 0;
  padding-right: 0;
}
.rhvt-btn--text-link:hover { color: var(--rhvt-amber-light); }
.rhvt-btn--lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* === NAV === */
.rhvt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--rhvt-nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.rhvt-nav__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.rhvt-nav__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.rhvt-nav__logo img { height: 32px; width: auto; }
.rhvt-nav__logo .logo-dark { display: none; }
.rhvt-nav__logo .logo-light { display: block; }
.rhvt-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
  list-style: none;
}
.rhvt-nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.rhvt-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.rhvt-nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.rhvt-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* dark-top pages: transparent nav over dark hero */
.rhvt-page--dark-top .rhvt-nav {
  background: transparent;
}
.rhvt-page--dark-top .rhvt-nav__links a {
  color: var(--rhvt-text-primary-dark);
}
.rhvt-page--dark-top .rhvt-nav__links a:hover { color: var(--rhvt-amber); }
.rhvt-page--dark-top .rhvt-nav .rhvt-btn--ghost-on-dark {
  color: var(--rhvt-text-primary-dark);
  border-color: rgba(238,233,222,0.35);
}
.rhvt-page--dark-top .rhvt-nav .logo-light { display: block; }
.rhvt-page--dark-top .rhvt-nav .logo-dark { display: none; }
.rhvt-page--dark-top .rhvt-nav__toggle span { background: var(--rhvt-text-primary-dark); }

/* light-top pages: solid light nav */
.rhvt-page--light-top .rhvt-nav {
  background: var(--rhvt-bg-white);
  box-shadow: 0 1px 0 rgba(26,46,31,0.08);
}
.rhvt-page--light-top .rhvt-nav__links a {
  color: var(--rhvt-text-primary-light);
}
.rhvt-page--light-top .rhvt-nav__links a:hover { color: var(--rhvt-amber); }
.rhvt-page--light-top .rhvt-nav .rhvt-btn--ghost-on-dark {
  color: var(--rhvt-text-primary-light);
  border-color: rgba(26,46,31,0.3);
}
.rhvt-page--light-top .rhvt-nav .rhvt-btn--ghost-on-dark:hover {
  border-color: var(--rhvt-amber);
  color: var(--rhvt-amber);
}
.rhvt-page--light-top .rhvt-nav .logo-light { display: none; }
.rhvt-page--light-top .rhvt-nav .logo-dark { display: block; }
.rhvt-page--light-top .rhvt-nav__toggle span { background: var(--rhvt-text-primary-light); }

/* scrolled state */
.rhvt-nav--scrolled {
  background: var(--rhvt-bg-deep) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35) !important;
}
.rhvt-nav--scrolled .rhvt-nav__links a {
  color: var(--rhvt-text-primary-dark) !important;
}
.rhvt-nav--scrolled .rhvt-nav__links a:hover { color: var(--rhvt-amber) !important; }
.rhvt-nav--scrolled .rhvt-btn--ghost-on-dark {
  color: var(--rhvt-text-primary-dark) !important;
  border-color: rgba(238,233,222,0.35) !important;
}
.rhvt-nav--scrolled .logo-dark { display: none !important; }
.rhvt-nav--scrolled .logo-light { display: block !important; }
.rhvt-nav--scrolled .rhvt-nav__toggle span { background: var(--rhvt-text-primary-dark) !important; }

/* mobile nav */
.rhvt-nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--rhvt-nav-h);
  left: 0;
  right: 0;
  background: var(--rhvt-bg-deep);
  padding: 1.5rem clamp(1rem,4vw,2rem) 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 999;
}
.rhvt-nav__mobile-menu.rhvt-nav--open { display: block; }
.rhvt-nav__mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.rhvt-nav__mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--rhvt-text-primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.rhvt-nav__mobile-menu a:hover { color: var(--rhvt-amber); }
.rhvt-nav__mobile-actions { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* === MAIN CONTENT OFFSET === */
.rhvt-main { padding-top: var(--rhvt-nav-h); }

/* === HERO (index.html two-column) === */
.rhvt-hero {
  background: var(--rhvt-bg-deep);
  padding: 6rem 0 5rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.rhvt-hero__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}
.rhvt-hero__text { display: flex; flex-direction: column; gap: 1.5rem; }
.rhvt-hero__eyebrow {
  color: var(--rhvt-amber);
}
.rhvt-hero__h1 {
  color: var(--rhvt-text-primary-dark);
}
.rhvt-hero__sub {
  font-size: 1.125rem;
  color: var(--rhvt-text-muted-dark);
  max-width: 540px;
  line-height: 1.7;
}
.rhvt-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.rhvt-hero__stat-strip {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(238,233,222,0.12);
}
.rhvt-hero__stat-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--rhvt-text-muted-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.rhvt-hero__stat-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rhvt-amber);
  flex-shrink: 0;
}
.rhvt-hero__visual { display: flex; align-items: center; justify-content: center; }

/* === STATS BAND === */
.rhvt-stats-band {
  background: var(--rhvt-bg-surface-alt);
  padding: 3.5rem 0;
}
.rhvt-stats-band__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.rhvt-stat-tile { text-align: center; }
.rhvt-stat-tile__value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--rhvt-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.rhvt-stat-tile__label {
  font-size: 0.85rem;
  color: var(--rhvt-text-muted-dark);
  line-height: 1.4;
}

/* === PROBLEM SECTION === */
.rhvt-problem {
  background: var(--rhvt-bg-light);
  padding: 6rem 0;
}
.rhvt-problem__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.rhvt-problem__eyebrow { color: var(--rhvt-text-muted-light); margin-bottom: 1.25rem; }
.rhvt-problem__quote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--rhvt-text-primary-light);
  line-height: 1.3;
  border-left: 3px solid var(--rhvt-amber);
  padding-left: 1.5rem;
  margin-top: 1rem;
}
.rhvt-problem__points { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 2.5rem; }
.rhvt-problem__point { display: flex; gap: 1rem; }
.rhvt-problem__point-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,145,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rhvt-amber);
  font-size: 0.9rem;
}
.rhvt-problem__point-body { flex: 1; }
.rhvt-problem__point-body strong {
  display: block;
  font-weight: 600;
  color: var(--rhvt-text-primary-light);
  margin-bottom: 0.25rem;
}
.rhvt-problem__point-body p { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.6; }

/* === HOW IT WORKS === */
.rhvt-how {
  background: var(--rhvt-bg-deep);
  padding: 6rem 0;
}
.rhvt-how__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-how__head {
  text-align: center;
  margin-bottom: 4rem;
}
.rhvt-how__eyebrow { color: var(--rhvt-amber); margin-bottom: 1rem; }
.rhvt-how__title { color: var(--rhvt-text-primary-dark); }
.rhvt-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.rhvt-how__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--rhvt-amber) 0%, transparent 50%, var(--rhvt-amber) 100%);
  opacity: 0.35;
}
.rhvt-step { padding: 0 2rem; text-align: center; position: relative; }
.rhvt-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rhvt-bg-card);
  border: 2px solid var(--rhvt-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--rhvt-amber);
  position: relative;
  z-index: 1;
}
.rhvt-step__title { color: var(--rhvt-text-primary-dark); margin-bottom: 0.75rem; }
.rhvt-step__body { font-size: 0.9rem; color: var(--rhvt-text-muted-dark); line-height: 1.7; }

/* === PROOF / TESTIMONIALS === */
.rhvt-proof {
  background: var(--rhvt-bg-light);
  padding: 6rem 0;
}
.rhvt-proof__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-proof__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.rhvt-proof__eyebrow { color: var(--rhvt-text-muted-light); margin-bottom: 1rem; }
.rhvt-proof__title { color: var(--rhvt-text-primary-light); }
.rhvt-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.rhvt-testimonial {
  background: var(--rhvt-bg-white);
  border-radius: 12px;
  padding: 2rem 2rem 1.75rem;
  border: 1px solid rgba(26,46,31,0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.rhvt-testimonial__quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--rhvt-text-primary-light);
  flex: 1;
}
.rhvt-testimonial__quote::before {
  content: '\201C';
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  color: var(--rhvt-amber);
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
}
.rhvt-testimonial__attr {
  font-size: 0.83rem;
  color: var(--rhvt-text-muted-white);
  border-top: 1px solid rgba(26,46,31,0.08);
  padding-top: 1rem;
}
.rhvt-logos-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rhvt-logo-pill {
  background: var(--rhvt-bg-white);
  border: 1px solid rgba(26,46,31,0.1);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rhvt-text-primary-light);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

/* === INTEGRATIONS STRIP === */
.rhvt-integ-strip {
  background: var(--rhvt-bg-light-alt);
  padding: 5rem 0;
}
.rhvt-integ-strip__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-integ-strip__head {
  text-align: center;
  margin-bottom: 3rem;
}
.rhvt-integ-strip__title { color: var(--rhvt-text-primary-light); }
.rhvt-integ-strip__sub { color: var(--rhvt-text-muted-light); margin-top: 0.75rem; font-size: 0.95rem; }
.rhvt-integ-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.rhvt-integ-badge {
  background: var(--rhvt-bg-white);
  border: 1px solid rgba(26,46,31,0.12);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rhvt-integ-badge:hover {
  border-color: var(--rhvt-amber);
  box-shadow: 0 2px 12px rgba(212,145,42,0.15);
}
.rhvt-integ-badge__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.5rem;
  background: var(--rhvt-bg-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rhvt-amber);
  font-size: 1rem;
}
.rhvt-integ-badge__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rhvt-text-primary-light);
  line-height: 1.3;
}
.rhvt-integ-badge__type {
  font-size: 0.68rem;
  color: var(--rhvt-text-muted-light);
  margin-top: 0.2rem;
}

/* === PRICING PREVIEW === */
.rhvt-pricing-preview {
  background: var(--rhvt-bg-deep);
  padding: 6rem 0;
}
.rhvt-pricing-preview__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-pricing-preview__head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.rhvt-pricing-preview__eyebrow { color: var(--rhvt-amber); margin-bottom: 1rem; }
.rhvt-pricing-preview__title { color: var(--rhvt-text-primary-dark); }
.rhvt-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.rhvt-pricing-card {
  background: var(--rhvt-bg-card);
  border: 1px solid rgba(238,233,222,0.08);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s;
}
.rhvt-pricing-card:hover { border-color: rgba(212,145,42,0.3); }
.rhvt-pricing-card--featured {
  background: var(--rhvt-bg-card);
  border-color: var(--rhvt-amber);
  position: relative;
}
.rhvt-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rhvt-amber);
  color: var(--rhvt-bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rhvt-pricing-card__name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--rhvt-text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rhvt-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.rhvt-pricing-card__amount {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  color: var(--rhvt-text-primary-dark);
  line-height: 1;
}
.rhvt-pricing-card__period { font-size: 0.85rem; color: var(--rhvt-text-muted-dark); }
.rhvt-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.rhvt-pricing-card__features li {
  font-size: 0.85rem;
  color: var(--rhvt-text-muted-dark);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.rhvt-pricing-card__features li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(53,183,109,0.2);
  border: 1px solid var(--rhvt-green-signal);
  flex-shrink: 0;
  margin-top: 3px;
}
.rhvt-pricing-preview__cta { text-align: center; }

/* === BLOG STRIP === */
.rhvt-blog-strip {
  background: var(--rhvt-bg-white);
  padding: 6rem 0;
}
.rhvt-blog-strip__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-blog-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.rhvt-blog-strip__title { color: var(--rhvt-text-primary-light); }
.rhvt-blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.rhvt-blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(26,46,31,0.1);
  background: var(--rhvt-bg-white);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.rhvt-blog-card:hover {
  box-shadow: 0 6px 24px rgba(26,46,31,0.12);
  transform: translateY(-2px);
}
.rhvt-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.rhvt-blog-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.rhvt-blog-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--rhvt-text-muted-white);
  font-family: 'IBM Plex Mono', monospace;
}
.rhvt-blog-card__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--rhvt-text-primary-light);
}
.rhvt-blog-card__title a { color: inherit; text-decoration: none; }
.rhvt-blog-card__excerpt { font-size: 0.85rem; color: var(--rhvt-text-muted-white); line-height: 1.6; flex: 1; }

/* === CLOSING CTA === */
.rhvt-cta-closing {
  background: var(--rhvt-bg-deep);
  padding: 7rem 0;
  text-align: center;
}
.rhvt-cta-closing__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.rhvt-cta-closing__title { color: var(--rhvt-text-primary-dark); }
.rhvt-cta-closing__sub { color: var(--rhvt-text-muted-dark); font-size: 1.05rem; line-height: 1.7; max-width: 560px; }

/* === FOOTER === */
.rhvt-footer {
  background: var(--rhvt-bg-deep);
  border-top: 1px solid rgba(238,233,222,0.08);
  padding: 4rem 0 2rem;
}
.rhvt-footer__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.rhvt-footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.rhvt-footer__brand-logo { height: 28px; width: auto; }
.rhvt-footer__tagline { font-size: 0.85rem; color: var(--rhvt-text-muted-dark); line-height: 1.6; max-width: 260px; }
.rhvt-footer__col-head {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rhvt-text-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.rhvt-footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.rhvt-footer__links a {
  font-size: 0.85rem;
  color: var(--rhvt-text-muted-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.rhvt-footer__links a:hover { color: var(--rhvt-amber); }
.rhvt-footer__contact-block {
  font-size: 0.82rem;
  color: var(--rhvt-text-muted-dark);
  line-height: 1.7;
}
.rhvt-footer__contact-block a { color: var(--rhvt-text-muted-dark); text-decoration: none; }
.rhvt-footer__contact-block a:hover { color: var(--rhvt-amber); }
.rhvt-footer__bottom {
  border-top: 1px solid rgba(238,233,222,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.rhvt-footer__copy { font-size: 0.8rem; color: var(--rhvt-text-muted-dark); }
.rhvt-footer__bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.rhvt-footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--rhvt-text-muted-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.rhvt-footer__bottom-links a:hover { color: var(--rhvt-amber); }

/* === SUB-PAGE HERO === */
.rhvt-subhero {
  padding: 5rem 0 4rem;
}
.rhvt-subhero--dark {
  background: var(--rhvt-bg-deep);
}
.rhvt-subhero--light {
  background: var(--rhvt-bg-light);
}
.rhvt-subhero__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.rhvt-subhero__inner--centered {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
}
.rhvt-subhero__eyebrow { margin-bottom: 1rem; }
.rhvt-subhero--dark .rhvt-subhero__eyebrow { color: var(--rhvt-amber); }
.rhvt-subhero--light .rhvt-subhero__eyebrow { color: var(--rhvt-text-muted-light); }
.rhvt-subhero--dark .rhvt-subhero__title { color: var(--rhvt-text-primary-dark); }
.rhvt-subhero--light .rhvt-subhero__title { color: var(--rhvt-text-primary-light); }
.rhvt-subhero--dark .rhvt-subhero__sub { color: var(--rhvt-text-muted-dark); }
.rhvt-subhero--light .rhvt-subhero__sub { color: var(--rhvt-text-muted-light); }
.rhvt-subhero__sub { font-size: 1.1rem; line-height: 1.7; margin-top: 1rem; }
.rhvt-subhero__ctas { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.rhvt-subhero__inner--centered .rhvt-subhero__ctas { justify-content: center; }

/* data fragment / visual anchor for sub-page heroes */
.rhvt-data-fragment {
  background: var(--rhvt-bg-card);
  border: 1px solid rgba(238,233,222,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rhvt-data-fragment__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  background: rgba(0,0,0,0.15);
}
.rhvt-data-fragment__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rhvt-data-fragment__dot--amber { background: var(--rhvt-amber); }
.rhvt-data-fragment__dot--green { background: var(--rhvt-green-signal); }
.rhvt-data-fragment__dot--red { background: #E05252; }
.rhvt-data-fragment__label { font-size: 0.78rem; color: var(--rhvt-text-muted-dark); flex: 1; font-family: 'IBM Plex Mono', monospace; }
.rhvt-data-fragment__value { font-size: 0.78rem; color: var(--rhvt-text-primary-dark); font-family: 'IBM Plex Mono', monospace; font-weight: 500; }

/* === SECTION GENERIC === */
.rhvt-section { padding: 6rem 0; }
.rhvt-section__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-section__head { text-align: center; margin-bottom: 3.5rem; }
.rhvt-section__eyebrow { margin-bottom: 1rem; }
.rhvt-section--dark .rhvt-section__eyebrow { color: var(--rhvt-amber); }
.rhvt-section--dark-alt .rhvt-section__eyebrow { color: var(--rhvt-amber); }
.rhvt-section--light .rhvt-section__eyebrow { color: var(--rhvt-text-muted-light); }
.rhvt-section--light-alt .rhvt-section__eyebrow { color: var(--rhvt-text-muted-light); }
.rhvt-section--white .rhvt-section__eyebrow { color: var(--rhvt-text-muted-white); }
.rhvt-section__title { margin-bottom: 1rem; }
.rhvt-section--dark .rhvt-section__title,
.rhvt-section--dark-alt .rhvt-section__title { color: var(--rhvt-text-primary-dark); }
.rhvt-section--light .rhvt-section__title,
.rhvt-section--light-alt .rhvt-section__title,
.rhvt-section--white .rhvt-section__title { color: var(--rhvt-text-primary-light); }
.rhvt-section__sub { font-size: 1.05rem; line-height: 1.7; max-width: 640px; margin-inline: auto; }
.rhvt-section--dark .rhvt-section__sub,
.rhvt-section--dark-alt .rhvt-section__sub { color: var(--rhvt-text-muted-dark); }
.rhvt-section--light .rhvt-section__sub,
.rhvt-section--light-alt .rhvt-section__sub,
.rhvt-section--white .rhvt-section__sub { color: var(--rhvt-text-muted-light); }

/* === FEATURE GRID === */
.rhvt-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.rhvt-feature-card {
  background: var(--rhvt-bg-card);
  border: 1px solid rgba(238,233,222,0.08);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s;
}
.rhvt-feature-card:hover { border-color: rgba(212,145,42,0.3); }
.rhvt-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(212,145,42,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rhvt-amber);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.rhvt-feature-card__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--rhvt-text-primary-dark);
}
.rhvt-feature-card__body { font-size: 0.875rem; color: var(--rhvt-text-muted-dark); line-height: 1.65; }

.rhvt-feature-grid--light .rhvt-feature-card {
  background: var(--rhvt-bg-white);
  border-color: rgba(26,46,31,0.1);
}
.rhvt-feature-grid--light .rhvt-feature-card__title { color: var(--rhvt-text-primary-light); }
.rhvt-feature-grid--light .rhvt-feature-card__body { color: var(--rhvt-text-muted-light); }

/* === TWO-COL LAYOUT === */
.rhvt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rhvt-two-col--reverse { direction: rtl; }
.rhvt-two-col--reverse > * { direction: ltr; }
.rhvt-two-col__text { display: flex; flex-direction: column; gap: 1.25rem; }
.rhvt-section--dark .rhvt-two-col__text h2,
.rhvt-section--dark-alt .rhvt-two-col__text h2 { color: var(--rhvt-text-primary-dark); }
.rhvt-section--light .rhvt-two-col__text h2,
.rhvt-section--light-alt .rhvt-two-col__text h2,
.rhvt-section--white .rhvt-two-col__text h2 { color: var(--rhvt-text-primary-light); }
.rhvt-section--dark .rhvt-two-col__text p,
.rhvt-section--dark-alt .rhvt-two-col__text p { color: var(--rhvt-text-muted-dark); line-height: 1.7; }
.rhvt-section--light .rhvt-two-col__text p,
.rhvt-section--light-alt .rhvt-two-col__text p,
.rhvt-section--white .rhvt-two-col__text p { color: var(--rhvt-text-muted-light); line-height: 1.7; }
.rhvt-two-col__visual { display: flex; align-items: center; justify-content: center; }
.rhvt-two-col__visual img { width: 100%; border-radius: 10px; object-fit: cover; }

/* === PLATFORM PAGE === */
.rhvt-platform-hero {
  background: var(--rhvt-bg-deep);
  padding: 5rem 0;
}
.rhvt-platform-hero__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.rhvt-platform-hero__text { display: flex; flex-direction: column; gap: 1.25rem; }
.rhvt-platform-hero__eyebrow { color: var(--rhvt-amber); }
.rhvt-platform-hero__title { color: var(--rhvt-text-primary-dark); }
.rhvt-platform-hero__sub { color: var(--rhvt-text-muted-dark); font-size: 1.05rem; line-height: 1.7; }
.rhvt-platform-hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(238,233,222,0.1);
}

/* === METRIC CALLOUTS === */
.rhvt-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.rhvt-metric {
  background: var(--rhvt-bg-card);
  border: 1px solid rgba(238,233,222,0.08);
  border-radius: 10px;
  padding: 2rem 1.5rem;
}
.rhvt-metric__value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--rhvt-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.rhvt-metric__label { font-size: 0.85rem; color: var(--rhvt-text-muted-dark); line-height: 1.5; }

/* === API / CODE MOCK === */
.rhvt-code-mock {
  background: #0a1410;
  border: 1px solid rgba(212,145,42,0.25);
  border-radius: 10px;
  overflow: hidden;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.83rem;
  line-height: 1.5;
}
.rhvt-code-mock__bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(238,233,222,0.08);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rhvt-code-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.rhvt-code-mock__dot--red { background: #FF5F56; }
.rhvt-code-mock__dot--yellow { background: #FFBD2E; }
.rhvt-code-mock__dot--green { background: #27C93F; }
.rhvt-code-mock__label {
  font-size: 0.72rem;
  color: var(--rhvt-text-muted-dark);
  margin-left: 0.5rem;
}
.rhvt-code-mock__body {
  padding: 1.5rem;
  overflow-x: auto;
}
.rhvt-code-mock__body pre { margin: 0; color: var(--rhvt-text-primary-dark); }
.rhvt-code-kw { color: var(--rhvt-amber); }
.rhvt-code-str { color: var(--rhvt-green-signal); }
.rhvt-code-cm { color: var(--rhvt-text-muted-dark); }
.rhvt-code-num { color: #F5B544; }
.rhvt-code-key { color: #A8C8B4; }
.rhvt-code-method { color: #7DD3FC; }

/* === SKU INTELLIGENCE === */
.rhvt-sku-intel {
  background: var(--rhvt-bg-deep);
  padding: 6rem 0;
}
.rhvt-sku-intel__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-sku-intel__head { text-align: center; margin-bottom: 3rem; }
.rhvt-sku-intel__title { color: var(--rhvt-text-primary-dark); margin-bottom: 1rem; }
.rhvt-sku-intel__sub { color: var(--rhvt-text-muted-dark); font-size: 1.05rem; line-height: 1.7; max-width: 640px; margin-inline: auto; }

/* === PRICING PAGE === */
.rhvt-pricing-hero {
  background: var(--rhvt-bg-light);
  padding: 5rem 0 3rem;
  text-align: center;
}
.rhvt-pricing-hero__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-pricing-hero__eyebrow { color: var(--rhvt-text-muted-light); margin-bottom: 1rem; }
.rhvt-pricing-hero__title { color: var(--rhvt-text-primary-light); margin-bottom: 1rem; }
.rhvt-pricing-hero__sub { color: var(--rhvt-text-muted-light); font-size: 1.05rem; line-height: 1.7; }

.rhvt-pricing-tiers {
  background: var(--rhvt-bg-white);
  padding: 5rem 0;
}
.rhvt-pricing-tiers__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.rhvt-tier-card {
  border: 2px solid rgba(26,46,31,0.12);
  border-radius: 14px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--rhvt-bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rhvt-tier-card:hover { box-shadow: 0 4px 24px rgba(26,46,31,0.1); }
.rhvt-tier-card--highlighted {
  border-color: var(--rhvt-amber);
  position: relative;
  box-shadow: 0 4px 24px rgba(212,145,42,0.15);
}
.rhvt-tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rhvt-amber);
  color: var(--rhvt-bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.rhvt-tier-card__name {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rhvt-text-muted-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rhvt-tier-card__price-wrap { display: flex; flex-direction: column; gap: 0.2rem; }
.rhvt-tier-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.rhvt-tier-card__dollar { font-size: 1.25rem; font-weight: 600; color: var(--rhvt-text-primary-light); align-self: flex-start; margin-top: 6px; }
.rhvt-tier-card__amount {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--rhvt-text-primary-light);
  line-height: 1;
}
.rhvt-tier-card__period { font-size: 0.85rem; color: var(--rhvt-text-muted-white); }
.rhvt-tier-card__annual { font-size: 0.78rem; color: var(--rhvt-green-signal); font-family: 'IBM Plex Mono', monospace; }
.rhvt-tier-card__cap { font-size: 0.8rem; color: var(--rhvt-text-muted-white); border-top: 1px solid rgba(26,46,31,0.1); padding-top: 1rem; }
.rhvt-tier-card__features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.rhvt-tier-card__features li {
  font-size: 0.875rem;
  color: var(--rhvt-text-primary-light);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.rhvt-tier-card__features li i {
  color: var(--rhvt-green-signal);
  margin-top: 2px;
  flex-shrink: 0;
}

/* comparison table */
.rhvt-comparison {
  background: var(--rhvt-bg-light);
  padding: 5rem 0;
}
.rhvt-comparison__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-comparison__head { text-align: center; margin-bottom: 2.5rem; }
.rhvt-comparison__title { color: var(--rhvt-text-primary-light); }
.rhvt-table-scroll { overflow-x: auto; }
.rhvt-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.rhvt-comparison-table th,
.rhvt-comparison-table td {
  padding: 0.85rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(26,46,31,0.08);
  color: var(--rhvt-text-primary-light);
}
.rhvt-comparison-table th:first-child,
.rhvt-comparison-table td:first-child { text-align: left; font-weight: 500; }
.rhvt-comparison-table thead th {
  background: var(--rhvt-bg-light-alt);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rhvt-text-primary-light);
}
.rhvt-comparison-table thead th.rhvt-col--highlight {
  background: rgba(212,145,42,0.12);
  color: var(--rhvt-amber);
  border-top: 2px solid var(--rhvt-amber);
}
.rhvt-comparison-table tbody tr:hover td { background: rgba(240,244,239,0.6); }
.rhvt-comparison-table .check { color: var(--rhvt-green-signal); font-size: 1rem; }
.rhvt-comparison-table .dash { color: var(--rhvt-text-muted-light); }

/* FAQ */
.rhvt-faq {
  background: var(--rhvt-bg-light-alt);
  padding: 5rem 0;
}
.rhvt-faq__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-faq__head { text-align: center; margin-bottom: 2.5rem; }
.rhvt-faq__title { color: var(--rhvt-text-primary-light); }
.rhvt-faq-list { display: flex; flex-direction: column; }
.rhvt-faq-item { border-bottom: 1px solid rgba(26,46,31,0.12); }
.rhvt-faq-item__btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--rhvt-text-primary-light);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.rhvt-faq-item__btn:hover { color: var(--rhvt-amber); }
.rhvt-faq-item__icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(26,46,31,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  transition: transform 0.25s, background 0.2s;
  color: var(--rhvt-text-muted-light);
}
.rhvt-faq-item.rhvt-faq--open .rhvt-faq-item__icon {
  transform: rotate(45deg);
  background: var(--rhvt-amber);
  border-color: var(--rhvt-amber);
  color: var(--rhvt-bg-deep);
}
.rhvt-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.rhvt-faq-item.rhvt-faq--open .rhvt-faq-item__answer {
  max-height: 400px;
}
.rhvt-faq-item__answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--rhvt-text-muted-light);
  line-height: 1.7;
}

/* === ABOUT PAGE === */
.rhvt-story {
  background: var(--rhvt-bg-light);
  padding: 5rem 0;
}
.rhvt-story__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.rhvt-story__narrative { display: flex; flex-direction: column; gap: 1rem; }
.rhvt-story__eyebrow { color: var(--rhvt-text-muted-light); margin-bottom: 0.5rem; }
.rhvt-story__title { color: var(--rhvt-text-primary-light); margin-bottom: 0.5rem; }
.rhvt-story__body { font-size: 0.95rem; color: var(--rhvt-text-muted-light); line-height: 1.75; }
.rhvt-founding-stats { display: flex; flex-direction: column; gap: 1rem; padding-top: 1rem; }
.rhvt-founding-stat {
  background: var(--rhvt-bg-white);
  border: 1px solid rgba(26,46,31,0.1);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.rhvt-founding-stat__icon { color: var(--rhvt-amber); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.rhvt-founding-stat__label { font-size: 0.78rem; color: var(--rhvt-text-muted-white); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'IBM Plex Mono', monospace; }
.rhvt-founding-stat__value { font-size: 0.95rem; font-weight: 600; color: var(--rhvt-text-primary-light); }

/* team grid */
.rhvt-team {
  background: var(--rhvt-bg-white);
  padding: 5rem 0;
}
.rhvt-team__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-team__head { text-align: center; margin-bottom: 3rem; }
.rhvt-team__title { color: var(--rhvt-text-primary-light); }
.rhvt-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.rhvt-team-card { display: flex; flex-direction: column; gap: 1rem; }
.rhvt-team-card__portrait {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  background: var(--rhvt-bg-light);
}
.rhvt-team-card__name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--rhvt-text-primary-light);
  margin-bottom: 0.1rem;
}
.rhvt-team-card__title { font-size: 0.82rem; color: var(--rhvt-text-muted-white); font-weight: 500; margin-bottom: 0.5rem; }
.rhvt-team-card__bio { font-size: 0.85rem; color: var(--rhvt-text-muted-light); line-height: 1.65; }

/* values */
.rhvt-values {
  background: var(--rhvt-bg-deep);
  padding: 5rem 0;
}
.rhvt-values__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-values__head { text-align: center; margin-bottom: 3rem; }
.rhvt-values__title { color: var(--rhvt-text-primary-dark); }
.rhvt-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.rhvt-value-card {
  background: var(--rhvt-bg-card);
  border: 1px solid rgba(238,233,222,0.08);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rhvt-value-card__icon { font-size: 1.5rem; color: var(--rhvt-amber); }
.rhvt-value-card__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; color: var(--rhvt-text-primary-dark); }
.rhvt-value-card__body { font-size: 0.875rem; color: var(--rhvt-text-muted-dark); line-height: 1.65; }

/* contact strip */
.rhvt-contact-strip {
  background: var(--rhvt-bg-light);
  padding: 4rem 0;
}
.rhvt-contact-strip__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  text-align: center;
}
.rhvt-contact-strip__title { color: var(--rhvt-text-primary-light); margin-bottom: 1.5rem; }
.rhvt-contact-facts {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.rhvt-contact-fact { display: flex; flex-direction: column; gap: 0.3rem; }
.rhvt-contact-fact__label { font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; color: var(--rhvt-text-muted-light); text-transform: uppercase; letter-spacing: 0.1em; }
.rhvt-contact-fact__value { font-size: 0.95rem; font-weight: 600; color: var(--rhvt-text-primary-light); }
.rhvt-contact-fact__value a { color: var(--rhvt-text-primary-light); text-decoration: none; }
.rhvt-contact-fact__value a:hover { color: var(--rhvt-amber); }

/* === CONTACT PAGE === */
.rhvt-contact-form-section {
  background: var(--rhvt-bg-white);
  padding: 5rem 0;
}
.rhvt-contact-form-section__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.rhvt-contact-form-title { color: var(--rhvt-text-primary-light); margin-bottom: 2rem; }
.rhvt-form { display: flex; flex-direction: column; gap: 1.25rem; }
.rhvt-field { display: flex; flex-direction: column; gap: 0.4rem; }
.rhvt-field label { font-size: 0.83rem; font-weight: 500; color: var(--rhvt-text-primary-light); }
.rhvt-field input,
.rhvt-field textarea,
.rhvt-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(26,46,31,0.18);
  border-radius: 6px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--rhvt-text-primary-light);
  background: var(--rhvt-bg-white);
  transition: border-color 0.2s;
  outline: none;
}
.rhvt-field input:focus,
.rhvt-field textarea:focus,
.rhvt-field select:focus {
  border-color: var(--rhvt-amber);
  box-shadow: 0 0 0 3px rgba(212,145,42,0.12);
}
.rhvt-field textarea { resize: vertical; min-height: 140px; }
.rhvt-contact-info-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--rhvt-text-primary-light); margin-bottom: 1.5rem; }
.rhvt-contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.rhvt-contact-info-item { display: flex; gap: 1rem; }
.rhvt-contact-info-item__icon { color: var(--rhvt-amber); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.rhvt-contact-info-item__label { font-size: 0.75rem; font-family: 'IBM Plex Mono', monospace; color: var(--rhvt-text-muted-white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.rhvt-contact-info-item__value { font-size: 0.9rem; color: var(--rhvt-text-primary-light); }
.rhvt-contact-info-item__value a { color: var(--rhvt-amber); text-decoration: none; }
.rhvt-contact-info-item__value a:hover { color: var(--rhvt-amber-light); }

.rhvt-map-section {
  background: var(--rhvt-bg-light);
  padding: 4rem 0;
}
.rhvt-map-section__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-map-placeholder {
  background: var(--rhvt-bg-white);
  border: 1px solid rgba(26,46,31,0.1);
  border-radius: 10px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.rhvt-map-placeholder__icon { font-size: 2.5rem; color: var(--rhvt-amber); }
.rhvt-map-placeholder__title { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--rhvt-text-primary-light); font-size: 1rem; }
.rhvt-map-placeholder__addr { font-size: 0.9rem; color: var(--rhvt-text-muted-white); line-height: 1.6; }
.rhvt-map-placeholder__note { font-size: 0.8rem; color: var(--rhvt-text-muted-light); }

/* === CUSTOMERS PAGE === */
.rhvt-pilot-results {
  background: var(--rhvt-bg-light);
  padding: 5rem 0;
}
.rhvt-pilot-results__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-pilot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.rhvt-pilot-card {
  background: var(--rhvt-bg-white);
  border: 1px solid rgba(26,46,31,0.1);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}
.rhvt-pilot-card__value {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--rhvt-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.rhvt-pilot-card__label { font-size: 0.875rem; color: var(--rhvt-text-primary-light); font-weight: 600; margin-bottom: 0.4rem; }
.rhvt-pilot-card__note { font-size: 0.78rem; color: var(--rhvt-text-muted-white); }

.rhvt-case-studies {
  background: var(--rhvt-bg-white);
  padding: 5rem 0;
}
.rhvt-case-studies__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.rhvt-case-card {
  background: var(--rhvt-bg-light);
  border: 1px solid rgba(26,46,31,0.1);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.rhvt-case-card__company {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--rhvt-text-primary-light);
}
.rhvt-case-card__sector { font-size: 0.78rem; color: var(--rhvt-amber); font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; }
.rhvt-case-card__body { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.7; }
.rhvt-case-card__outcome {
  background: var(--rhvt-bg-white);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  color: var(--rhvt-green-signal);
  border: 1px solid rgba(53,183,109,0.2);
}

/* testimonials alt */
.rhvt-testimonials-alt {
  background: var(--rhvt-bg-surface-alt);
  padding: 5rem 0;
}
.rhvt-testimonials-alt__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-testimonials-alt__head { text-align: center; margin-bottom: 3rem; }
.rhvt-testimonials-alt__title { color: var(--rhvt-text-primary-dark); }
.rhvt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rhvt-testi-card {
  background: var(--rhvt-bg-card);
  border: 1px solid rgba(238,233,222,0.08);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rhvt-testi-card__quote { font-size: 0.9rem; color: var(--rhvt-text-primary-dark); line-height: 1.7; flex: 1; }
.rhvt-testi-card__attr { font-size: 0.78rem; color: var(--rhvt-text-muted-dark); border-top: 1px solid rgba(238,233,222,0.08); padding-top: 0.75rem; }

/* === SECURITY PAGE === */
.rhvt-data-security {
  background: var(--rhvt-bg-white);
  padding: 5rem 0;
}
.rhvt-data-security__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.rhvt-security-card {
  background: var(--rhvt-bg-light);
  border: 1px solid rgba(26,46,31,0.1);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rhvt-security-card__icon { font-size: 1.5rem; color: var(--rhvt-amber); }
.rhvt-security-card__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; color: var(--rhvt-text-primary-light); }
.rhvt-security-card__body { font-size: 0.875rem; color: var(--rhvt-text-muted-light); line-height: 1.65; }

.rhvt-access-control {
  background: var(--rhvt-bg-light-alt);
  padding: 5rem 0;
}
.rhvt-access-control__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.rhvt-access-title { color: var(--rhvt-text-primary-light); margin-bottom: 1rem; }
.rhvt-access-body { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.7; margin-bottom: 1.5rem; }
.rhvt-sso-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.rhvt-sso-table th,
.rhvt-sso-table td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26,46,31,0.1);
  color: var(--rhvt-text-primary-light);
}
.rhvt-sso-table th { font-weight: 700; color: var(--rhvt-text-primary-light); background: rgba(26,46,31,0.04); }
.rhvt-sso-table td i { color: var(--rhvt-green-signal); }

.rhvt-compliance {
  background: var(--rhvt-bg-deep);
  padding: 5rem 0;
  text-align: center;
}
.rhvt-compliance__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.rhvt-compliance__title { color: var(--rhvt-text-primary-dark); }
.rhvt-compliance__body { font-size: 1rem; color: var(--rhvt-text-muted-dark); line-height: 1.75; }

/* === CHANGELOG === */
.rhvt-changelog {
  background: var(--rhvt-bg-white);
  padding: 5rem 0;
}
.rhvt-changelog__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-timeline { display: flex; flex-direction: column; gap: 0; }
.rhvt-timeline-entry {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
}
.rhvt-timeline-entry::before {
  content: '';
  position: absolute;
  left: 148px;
  top: 8px;
  bottom: -3px;
  width: 1px;
  background: rgba(26,46,31,0.12);
}
.rhvt-timeline-entry:last-child::before { display: none; }
.rhvt-timeline-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--rhvt-text-muted-light);
  padding-top: 3px;
  text-align: right;
}
.rhvt-timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rhvt-amber);
  position: absolute;
  left: 144px;
  top: 4px;
  border: 2px solid var(--rhvt-bg-white);
}
.rhvt-timeline-content { padding-left: 1.25rem; }
.rhvt-timeline-content__version {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--rhvt-amber);
  font-weight: 500;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rhvt-timeline-content__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--rhvt-text-primary-light);
  margin-bottom: 0.5rem;
}
.rhvt-timeline-content__body { font-size: 0.875rem; color: var(--rhvt-text-muted-light); line-height: 1.65; }
.rhvt-timeline-content__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.rhvt-tag {
  font-size: 0.68rem;
  font-family: 'IBM Plex Mono', monospace;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rhvt-tag--feature { background: rgba(212,145,42,0.12); color: var(--rhvt-amber); border: 1px solid rgba(212,145,42,0.25); }
.rhvt-tag--fix { background: rgba(53,183,109,0.1); color: var(--rhvt-green-signal); border: 1px solid rgba(53,183,109,0.2); }
.rhvt-tag--infra { background: rgba(122,155,138,0.1); color: var(--rhvt-text-muted-light); border: 1px solid rgba(122,155,138,0.2); }

/* === BLOG INDEX === */
.rhvt-blog-hero {
  background: var(--rhvt-bg-light);
  padding: 5rem 0 3rem;
  text-align: center;
}
.rhvt-blog-hero__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-blog-hero__eyebrow { color: var(--rhvt-text-muted-light); margin-bottom: 1rem; }
.rhvt-blog-hero__title { color: var(--rhvt-text-primary-light); margin-bottom: 1rem; }
.rhvt-blog-hero__sub { color: var(--rhvt-text-muted-light); font-size: 1rem; }

.rhvt-featured-post {
  background: var(--rhvt-bg-white);
  padding: 4rem 0;
}
.rhvt-featured-post__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--rhvt-bg-light);
  border: 1px solid rgba(26,46,31,0.1);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}
.rhvt-featured-card:hover { box-shadow: 0 6px 32px rgba(26,46,31,0.12); }
.rhvt-featured-card__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
}
.rhvt-featured-card__body { padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.rhvt-featured-card__label {
  font-size: 0.72rem;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--rhvt-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rhvt-featured-card__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--rhvt-text-primary-light);
  line-height: 1.3;
}
.rhvt-featured-card__title a { color: inherit; text-decoration: none; }
.rhvt-featured-card__excerpt { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.7; }
.rhvt-featured-card__meta {
  font-size: 0.78rem;
  color: var(--rhvt-text-muted-white);
  font-family: 'IBM Plex Mono', monospace;
  display: flex;
  gap: 1rem;
}

.rhvt-post-grid {
  background: var(--rhvt-bg-light);
  padding: 4rem 0 6rem;
}
.rhvt-post-grid__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-post-grid__title { color: var(--rhvt-text-primary-light); margin-bottom: 2rem; }
.rhvt-post-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* === BREADCRUMB (article pages) === */
.rhvt-breadcrumb {
  background: var(--rhvt-bg-deep);
  padding: 0.6rem 0;
}
.rhvt-breadcrumb__list {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--rhvt-text-muted-dark);
}
.rhvt-breadcrumb__list li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  opacity: 0.5;
}
.rhvt-breadcrumb__list a { color: var(--rhvt-amber); text-decoration: none; }
.rhvt-breadcrumb__list a:hover { text-decoration: underline; }

/* === ARTICLE PAGE === */
.rhvt-article-hero {
  background: var(--rhvt-bg-light);
  padding: 4rem 0 0;
}
.rhvt-article-hero__inner {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--rhvt-text-muted-light);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}
.rhvt-article-back:hover { color: var(--rhvt-amber); }
.rhvt-article-hero__category {
  font-size: 0.72rem;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--rhvt-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.rhvt-article-hero__h1 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--rhvt-text-primary-light);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.rhvt-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--rhvt-text-muted-white);
  font-family: 'IBM Plex Mono', monospace;
  margin-bottom: 2.5rem;
}
.rhvt-article-cover {
  background: var(--rhvt-bg-white);
  padding: 0 0 4rem;
}
.rhvt-article-cover__inner {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-article-cover__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  max-width: 880px;
  margin-inline: auto;
}
.rhvt-article-content {
  background: var(--rhvt-bg-white);
  padding: 0 0 5rem;
}
.rhvt-article-content__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-article-body h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rhvt-text-primary-light);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.rhvt-article-body h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--rhvt-text-primary-light);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.rhvt-article-body p {
  font-size: 1rem;
  color: var(--rhvt-text-primary-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.rhvt-article-body ul, .rhvt-article-body ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
  list-style: disc;
}
.rhvt-article-body ol { list-style: decimal; }
.rhvt-article-body li {
  font-size: 1rem;
  color: var(--rhvt-text-primary-light);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}
.rhvt-article-body blockquote {
  border-left: 3px solid var(--rhvt-amber);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--rhvt-text-muted-light);
}
.rhvt-article-body pre {
  background: var(--rhvt-bg-deep);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  line-height: 1.5;
}
.rhvt-article-body code {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: var(--rhvt-text-primary-dark);
}
.rhvt-article-body a { color: var(--rhvt-amber); text-decoration: underline; text-underline-offset: 3px; }

.rhvt-related {
  background: var(--rhvt-bg-light);
  padding: 5rem 0;
}
.rhvt-related__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-related__title { color: var(--rhvt-text-primary-light); margin-bottom: 2rem; }

/* === AUTH PAGES (login/) === */
.rhvt-auth-page {
  min-height: 100vh;
  background: var(--rhvt-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.rhvt-auth-card {
  background: var(--rhvt-bg-white);
  border: 1px solid rgba(26,46,31,0.12);
  border-radius: 16px;
  padding: 2.75rem 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 32px rgba(26,46,31,0.08);
}
.rhvt-auth-card__logo {
  display: block;
  margin: 0 auto 2rem;
  height: 32px;
  width: auto;
}
.rhvt-auth-card__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--rhvt-text-primary-light);
  text-align: center;
  margin-bottom: 0.5rem;
}
.rhvt-auth-card__sub {
  font-size: 0.875rem;
  color: var(--rhvt-text-muted-white);
  text-align: center;
  margin-bottom: 2rem;
}
.rhvt-auth-form { display: flex; flex-direction: column; gap: 1.1rem; }
.rhvt-auth-form .rhvt-field label { color: var(--rhvt-text-primary-light); }
.rhvt-auth-form .rhvt-field input { color: var(--rhvt-text-primary-light); background: var(--rhvt-bg-white); }
.rhvt-auth-card__footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--rhvt-text-muted-white);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rhvt-auth-card__footer a { color: var(--rhvt-amber); text-decoration: none; }
.rhvt-auth-card__footer a:hover { color: var(--rhvt-amber-light); text-decoration: underline; }
.rhvt-auth-legal {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--rhvt-text-muted-light);
  text-align: center;
  line-height: 1.6;
}
.rhvt-auth-legal a { color: var(--rhvt-text-muted-light); text-decoration: underline; text-underline-offset: 2px; }

/* === LEGAL PAGES === */
.rhvt-legal-page { background: var(--rhvt-bg-white); }
.rhvt-legal-hero {
  background: var(--rhvt-bg-light);
  padding: 4rem 0 3rem;
}
.rhvt-legal-hero__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-legal-hero__title { color: var(--rhvt-text-primary-light); margin-bottom: 0.5rem; }
.rhvt-legal-hero__meta { font-size: 0.83rem; color: var(--rhvt-text-muted-light); font-family: 'IBM Plex Mono', monospace; }
.rhvt-legal-content {
  background: var(--rhvt-bg-white);
  padding: 4rem 0 6rem;
}
.rhvt-legal-content__inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-legal-content__inner h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--rhvt-text-primary-light);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.rhvt-legal-content__inner p {
  font-size: 0.9rem;
  color: var(--rhvt-text-primary-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.rhvt-legal-content__inner a { color: var(--rhvt-amber); text-decoration: underline; text-underline-offset: 2px; }

/* === USE CASES === */
.rhvt-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.rhvt-before-after__col {
  border-radius: 10px;
  padding: 2rem;
}
.rhvt-before-after__col--before {
  background: rgba(224,82,82,0.06);
  border: 1px solid rgba(224,82,82,0.15);
}
.rhvt-before-after__col--after {
  background: rgba(53,183,109,0.06);
  border: 1px solid rgba(53,183,109,0.15);
}
.rhvt-before-after__label {
  font-size: 0.72rem;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.rhvt-before-after__col--before .rhvt-before-after__label { color: #E05252; }
.rhvt-before-after__col--after .rhvt-before-after__label { color: var(--rhvt-green-signal); }
.rhvt-before-after__col--before h3 { color: var(--rhvt-text-primary-light); margin-bottom: 0.75rem; }
.rhvt-before-after__col--after h3 { color: var(--rhvt-text-primary-light); margin-bottom: 0.75rem; }
.rhvt-before-after__col p { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.7; }
.rhvt-before-after__metric {
  margin-top: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--rhvt-green-signal);
}

/* === OUTCOME METRICS === */
.rhvt-outcome-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}
.rhvt-outcome-metric__val {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--rhvt-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.rhvt-outcome-metric__label { font-size: 1rem; color: var(--rhvt-text-primary-dark); font-weight: 600; margin-bottom: 0.3rem; }
.rhvt-outcome-metric__note { font-size: 0.8rem; color: var(--rhvt-text-muted-dark); }

/* === INTEGRATIONS PAGE === */
.rhvt-integrations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rhvt-integration-card {
  background: var(--rhvt-bg-white);
  border: 1px solid rgba(26,46,31,0.1);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.rhvt-integration-card:hover {
  border-color: rgba(212,145,42,0.3);
  box-shadow: 0 4px 20px rgba(26,46,31,0.08);
}
.rhvt-integration-card__icon { font-size: 1.5rem; color: var(--rhvt-amber); }
.rhvt-integration-card__name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; color: var(--rhvt-text-primary-light); }
.rhvt-integration-card__type { font-size: 0.7rem; font-family: 'IBM Plex Mono', monospace; color: var(--rhvt-text-muted-white); text-transform: uppercase; letter-spacing: 0.08em; }
.rhvt-integration-card__body { font-size: 0.875rem; color: var(--rhvt-text-muted-light); line-height: 1.65; }

/* === 404 === */
.rhvt-404-page {
  min-height: 100vh;
  background: var(--rhvt-bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.rhvt-404__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.rhvt-404__num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 500;
  color: var(--rhvt-amber);
  line-height: 1;
  opacity: 0.85;
}
.rhvt-404__title { color: var(--rhvt-text-primary-dark); }
.rhvt-404__sub { color: var(--rhvt-text-muted-dark); font-size: 1.05rem; max-width: 400px; line-height: 1.7; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--rhvt-bg-deep);
  border-top: 1px solid rgba(238,233,222,0.12);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.35);
}
.cookie-banner__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--rhvt-text-primary-dark);
  line-height: 1.6;
  min-width: 240px;
}
.cookie-banner__text a { color: var(--rhvt-amber); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-banner__btn {
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  color: var(--rhvt-text-primary-dark);
  background: transparent;
}
.cookie-banner__btn--primary {
  background: var(--rhvt-amber);
  color: var(--rhvt-bg-deep);
  border-color: var(--rhvt-amber);
}
.cookie-banner__btn--primary:hover {
  background: var(--rhvt-amber-light);
  border-color: var(--rhvt-amber-light);
}
.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--rhvt-text-primary-dark);
  border-color: rgba(238,233,222,0.35);
}
.cookie-banner__btn--secondary:hover {
  border-color: var(--rhvt-text-primary-dark);
}

/* === ANIMATIONS === */
.rhvt-fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.rhvt-fade-in.rhvt-visible { opacity: 1; transform: none; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .rhvt-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .rhvt-team-grid { grid-template-columns: repeat(2, 1fr); }
  .rhvt-integ-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .rhvt-nav__links { display: none; }
  .rhvt-nav__actions { display: none; }
  .rhvt-nav__toggle { display: flex; }
  .rhvt-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .rhvt-hero { min-height: auto; padding: 4rem 0 3rem; }
  .rhvt-stats-band__inner { grid-template-columns: repeat(2, 1fr); }
  .rhvt-problem__inner { grid-template-columns: 1fr; gap: 2rem; }
  .rhvt-how__steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .rhvt-how__steps::before { display: none; }
  .rhvt-testimonials { grid-template-columns: 1fr; }
  .rhvt-logos-strip { grid-template-columns: repeat(3, 1fr); }
  .rhvt-integ-grid { grid-template-columns: repeat(2, 1fr); }
  .rhvt-pricing-cards { grid-template-columns: 1fr; }
  .rhvt-blog-cards { grid-template-columns: 1fr; }
  .rhvt-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .rhvt-platform-hero__inner { grid-template-columns: 1fr; }
  .rhvt-two-col { grid-template-columns: 1fr; }
  .rhvt-subhero__inner { grid-template-columns: 1fr; }
  .rhvt-story__inner { grid-template-columns: 1fr; }
  .rhvt-tier-cards { grid-template-columns: 1fr; }
  .rhvt-team-grid { grid-template-columns: repeat(2, 1fr); }
  .rhvt-values-grid { grid-template-columns: 1fr; }
  .rhvt-contact-form-section__inner { grid-template-columns: 1fr; }
  .rhvt-pilot-cards { grid-template-columns: 1fr; }
  .rhvt-case-study-grid { grid-template-columns: 1fr; }
  .rhvt-testimonials-grid { grid-template-columns: 1fr; }
  .rhvt-security-grid { grid-template-columns: 1fr; }
  .rhvt-access-control__inner { grid-template-columns: 1fr; }
  .rhvt-timeline-entry { grid-template-columns: 80px 1fr; gap: 1rem; }
  .rhvt-featured-card { grid-template-columns: 1fr; }
  .rhvt-featured-card__img { min-height: 220px; }
  .rhvt-post-cards { grid-template-columns: 1fr; }
  .rhvt-before-after { grid-template-columns: 1fr; }
  .rhvt-metric-row { grid-template-columns: 1fr; }
  .rhvt-outcome-metrics { grid-template-columns: 1fr; }
  .rhvt-integrations-grid { grid-template-columns: 1fr; }
  .rhvt-footer__bottom { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 480px) {
  .rhvt-stats-band__inner { grid-template-columns: 1fr 1fr; }
  .rhvt-hero__ctas { flex-direction: column; }
  .rhvt-team-grid { grid-template-columns: 1fr; }
  .rhvt-footer__grid { grid-template-columns: 1fr; }
  .rhvt-logos-strip { grid-template-columns: 1fr; }
  .rhvt-contact-facts { flex-direction: column; gap: 1.5rem; }
}

/* === HTML/CSS PATCH — missing aliases for page-generated class names === */

/* typography */
.rhvt-h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--rhvt-text-primary-light);
  line-height: 1.4;
}
.rhvt-eyebrow--light { color: var(--rhvt-text-muted-light); font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.rhvt-text--light { color: var(--rhvt-text-primary-light); }
.rhvt-text--body-light { color: var(--rhvt-text-muted-light); line-height: 1.75; }
.rhvt-text--muted-dark { color: var(--rhvt-text-muted-dark); }
.rhvt-inline-code { font-family: 'IBM Plex Mono', monospace; font-size: 0.82em; background: rgba(212,145,42,0.1); color: var(--rhvt-amber); padding: 0.15em 0.45em; border-radius: 4px; }

/* 404 section aliases */
.rhvt-404 { min-height: 100vh; background: var(--rhvt-bg-deep); display: flex; align-items: center; justify-content: center; padding: 5rem 2rem; text-align: center; }
.rhvt-404__number { font-family: 'IBM Plex Mono', monospace; font-size: clamp(5rem, 15vw, 10rem); font-weight: 700; color: var(--rhvt-amber); line-height: 1; }

/* subhero centered variant (light pages) */
.rhvt-subhero--center-light {
  background: var(--rhvt-bg-light);
  padding: 5rem 0 3rem;
  text-align: center;
}
.rhvt-subhero__center-light-inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-subhero__h1--light { color: var(--rhvt-text-primary-light); margin-bottom: 1rem; }
.rhvt-subhero__sub--light { color: var(--rhvt-text-muted-light); font-size: 1.1rem; line-height: 1.7; }

/* subhero centered variant (dark pages) */
.rhvt-subhero--center {
  background: var(--rhvt-bg-deep);
  padding: 5rem 0 3rem;
  text-align: center;
}
.rhvt-subhero__center-inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-subhero__h1 { color: var(--rhvt-text-primary-dark); margin-bottom: 1rem; }
.rhvt-subhero__text { color: var(--rhvt-text-muted-dark); font-size: 1.1rem; line-height: 1.7; }
.rhvt-subhero__visual { display: flex; align-items: center; justify-content: center; }
.rhvt-subhero__img { max-width: 100%; height: auto; border-radius: 10px; }

/* hero data fragment (in subhero visual) */
.rhvt-subhero__hero-data-frag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,145,42,0.25);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 260px;
}
.rhvt-data-frag { display: flex; flex-direction: column; gap: 0.2rem; }
.rhvt-data-frag__label { font-size: 0.68rem; font-family: 'IBM Plex Mono', monospace; color: var(--rhvt-amber); text-transform: uppercase; letter-spacing: 0.08em; }
.rhvt-data-frag__val { font-family: 'IBM Plex Mono', monospace; font-size: 1.2rem; font-weight: 500; color: var(--rhvt-text-primary-dark); }

/* auth page aliases */
.rhvt-auth-main { min-height: 100vh; background: var(--rhvt-bg-light); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.rhvt-auth-logo { display: block; margin: 0 auto 1.75rem; text-align: center; }
.rhvt-auth-card__submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.rhvt-auth-card__switch { text-align: center; font-size: 0.85rem; color: var(--rhvt-text-muted-light); margin-top: 1.25rem; }
.rhvt-auth-card__switch a { color: var(--rhvt-amber); text-decoration: none; }
.rhvt-auth-card__switch a:hover { text-decoration: underline; }
.rhvt-auth-card__forgot { text-align: right; font-size: 0.8rem; }
.rhvt-auth-card__forgot a { color: var(--rhvt-text-muted-light); text-decoration: none; }
.rhvt-auth-card__forgot a:hover { color: var(--rhvt-amber); }
.rhvt-auth-card__legal { margin-top: 1.5rem; font-size: 0.75rem; color: var(--rhvt-text-primary-light); text-align: center; line-height: 1.6; }
.rhvt-auth-card__legal a { color: var(--rhvt-amber); text-decoration: underline; text-underline-offset: 2px; }

/* form elements (used in auth and contact) */
.rhvt-form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.rhvt-form-label { font-size: 0.83rem; font-weight: 500; color: var(--rhvt-text-primary-light); }
.rhvt-form-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(26,46,31,0.2);
  border-radius: 7px;
  font-size: 0.93rem;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--rhvt-text-primary-light);
  background: var(--rhvt-bg-white);
  transition: border-color 0.2s;
}
.rhvt-form-input:focus { outline: none; border-color: var(--rhvt-amber); box-shadow: 0 0 0 2px rgba(212,145,42,0.15); }
.rhvt-form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(26,46,31,0.2);
  border-radius: 7px;
  font-size: 0.93rem;
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--rhvt-text-primary-light);
  background: var(--rhvt-bg-white);
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s;
}
.rhvt-form-textarea:focus { outline: none; border-color: var(--rhvt-amber); box-shadow: 0 0 0 2px rgba(212,145,42,0.15); }
.rhvt-contact-submit-form { display: flex; flex-direction: column; gap: 1.1rem; }

/* legal pages */
.rhvt-legal-prose {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-top: 3rem;
  padding-bottom: 6rem;
}
.rhvt-legal-draft-notice {
  font-size: 0.9rem;
  color: var(--rhvt-text-muted-light);
  font-family: 'IBM Plex Mono', monospace;
  padding: 1.25rem 1.5rem;
  background: rgba(212,145,42,0.06);
  border: 1px solid rgba(212,145,42,0.18);
  border-radius: 8px;
  line-height: 1.65;
}

/* changelog timeline using rhvt-cl-* classes */
.rhvt-changelog-timeline { display: flex; flex-direction: column; gap: 0; }
.rhvt-cl-entry {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2rem;
  padding-bottom: 2.75rem;
  position: relative;
}
.rhvt-cl-entry::before {
  content: '';
  position: absolute;
  left: 138px;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: rgba(26,46,31,0.12);
}
.rhvt-cl-entry:last-child::before { display: none; }
.rhvt-cl-entry__date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--rhvt-text-muted-light);
  padding-top: 3px;
  text-align: right;
}
.rhvt-cl-entry__content { padding-left: 1rem; position: relative; }
.rhvt-cl-entry__content::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rhvt-amber);
  position: absolute;
  left: -1.45rem;
  top: 5px;
  border: 2px solid var(--rhvt-bg-white);
}
.rhvt-cl-entry__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }
.rhvt-cl-entry__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; color: var(--rhvt-text-primary-light); margin-bottom: 0.4rem; }
.rhvt-cl-entry__body { font-size: 0.875rem; color: var(--rhvt-text-muted-light); line-height: 1.65; }
.rhvt-cl-badge {
  font-size: 0.67rem;
  font-family: 'IBM Plex Mono', monospace;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid;
}
.rhvt-cl-badge--feature { background: rgba(212,145,42,0.1); color: var(--rhvt-amber); border-color: rgba(212,145,42,0.25); }
.rhvt-cl-badge--improvement { background: rgba(53,183,109,0.08); color: var(--rhvt-green-signal); border-color: rgba(53,183,109,0.2); }
.rhvt-cl-badge--fix { background: rgba(122,155,138,0.1); color: var(--rhvt-text-muted-light); border-color: rgba(122,155,138,0.2); }

/* blog index using rhvt-blog-* classes generated by HTML */
.rhvt-blog-section { background: var(--rhvt-bg-light); padding: 5rem 0; }
.rhvt-blog-section__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.rhvt-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--rhvt-bg-white);
  border: 1px solid rgba(26,46,31,0.1);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.rhvt-blog-featured__cover { width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block; aspect-ratio: 16/9; }
.rhvt-blog-featured__text { padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.rhvt-blog-featured__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--rhvt-text-primary-light); line-height: 1.3; }
.rhvt-blog-featured__title a { color: inherit; text-decoration: none; }
.rhvt-blog-featured__title a:hover { color: var(--rhvt-amber); }
.rhvt-blog-featured__excerpt { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.7; }
/* featured card: <a> is the only child of the 2-col grid — make it transparent so
   __cover and __text become direct grid items */
.rhvt-blog-featured__link { display: contents; color: inherit; text-decoration: none; }
.rhvt-blog-featured__link:hover .rhvt-blog-featured__title { color: var(--rhvt-amber); }
.rhvt-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.rhvt-blog-grid--3col { grid-template-columns: repeat(3, 1fr); }
.rhvt-blog-card__img-link { display: block; overflow: hidden; border-radius: 8px 8px 0 0; }
.rhvt-blog-card__date { font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; color: var(--rhvt-text-muted-white); }
.rhvt-blog-card__author { font-size: 0.78rem; color: var(--rhvt-text-muted-white); }
.rhvt-blog-card__read { color: var(--rhvt-amber); font-size: 0.83rem; font-weight: 500; text-decoration: none; margin-top: auto; display: inline-block; }
.rhvt-blog-cta { background: var(--rhvt-bg-deep); padding: 5rem 0; text-align: center; }
.rhvt-blog-cta__inner { max-width: 600px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

/* article template classes */
.rhvt-article-body-section { background: var(--rhvt-bg-white); padding: 0 0 5rem; }
.rhvt-article-hero__title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: var(--rhvt-text-primary-light); line-height: 1.15; margin-bottom: 1.25rem; }
.rhvt-article-hero__date { font-family: 'IBM Plex Mono', monospace; font-size: 0.78rem; color: var(--rhvt-text-muted-light); }
.rhvt-article-hero__author { font-family: 'IBM Plex Mono', monospace; font-size: 0.78rem; color: var(--rhvt-text-muted-light); }
.rhvt-article-related { background: var(--rhvt-bg-light); padding: 5rem 0; }
.rhvt-article-related__head { color: var(--rhvt-text-primary-light); margin-bottom: 2rem; }

/* about page specific classes */
.rhvt-story-stat { text-align: center; }
.rhvt-story-stat__val { font-family: 'IBM Plex Mono', monospace; font-size: clamp(1.25rem, 2.5vw, 2.25rem); font-weight: 500; color: var(--rhvt-amber); line-height: 1.15; margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rhvt-story-stat__label { font-size: 0.83rem; color: var(--rhvt-text-muted-dark); line-height: 1.4; }
.rhvt-story__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(238,233,222,0.12); }
.rhvt-story__text { max-width: 600px; }
.rhvt-value-block { display: flex; flex-direction: column; gap: 0.75rem; }
.rhvt-value-block__icon { font-size: 1.5rem; color: var(--rhvt-amber); }
.rhvt-value-block__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; color: var(--rhvt-text-primary-dark); }
.rhvt-value-block__body { font-size: 0.875rem; color: var(--rhvt-text-muted-dark); line-height: 1.65; }
.rhvt-team-card__info { display: flex; flex-direction: column; gap: 0.25rem; }
.rhvt-contact-strip__details { display: flex; flex-direction: column; gap: 0.5rem; }
.rhvt-contact-detail { font-size: 0.93rem; color: var(--rhvt-text-primary-dark); line-height: 1.6; }
.rhvt-contact-detail a { color: var(--rhvt-amber); text-decoration: none; }

/* use-cases page classes */
.rhvt-usecase { margin-bottom: 5rem; }
.rhvt-usecase__inner { max-width: var(--rhvt-container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.rhvt-usecase__before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.rhvt-ba-col { border-radius: 10px; padding: 1.75rem; }
.rhvt-ba-col--before { background: rgba(224,82,82,0.06); border: 1px solid rgba(224,82,82,0.15); }
.rhvt-ba-col--after { background: rgba(53,183,109,0.06); border: 1px solid rgba(53,183,109,0.15); }
.rhvt-ba-col__badge { font-size: 0.68rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 0.75rem; display: block; color: #E05252; }
.rhvt-ba-col--after .rhvt-ba-col__badge { color: var(--rhvt-green-signal); }
.rhvt-ba-col__badge--after { color: var(--rhvt-green-signal) !important; }
.rhvt-ba-col__pain { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.65; margin-bottom: 0.75rem; }
.rhvt-ba-col__gain { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.65; margin-bottom: 0.75rem; }
.rhvt-ba-col__metric { font-family: 'IBM Plex Mono', monospace; font-size: 1.4rem; font-weight: 500; color: var(--rhvt-green-signal); }
.rhvt-metric-callouts { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.rhvt-metric-callout { background: rgba(212,145,42,0.08); border: 1px solid rgba(212,145,42,0.2); border-radius: 8px; padding: 1rem 1.25rem; min-width: 120px; text-align: center; }
.rhvt-metric-callout__value { font-family: 'IBM Plex Mono', monospace; font-size: 1.75rem; font-weight: 500; color: var(--rhvt-amber); line-height: 1; margin-bottom: 0.25rem; }
.rhvt-metric-callout__label { font-size: 0.78rem; color: var(--rhvt-text-muted-dark); line-height: 1.4; }
.rhvt-outcome-box { background: rgba(53,183,109,0.07); border: 1px solid rgba(53,183,109,0.18); border-radius: 8px; padding: 1.25rem; text-align: center; }
.rhvt-outcome-box__val { font-family: 'IBM Plex Mono', monospace; font-size: 1.75rem; font-weight: 500; color: var(--rhvt-green-signal); line-height: 1; margin-bottom: 0.25rem; }
.rhvt-outcome-box__label { font-size: 0.78rem; color: var(--rhvt-text-muted-light); line-height: 1.4; }
.rhvt-scenario-card { background: var(--rhvt-bg-white); border: 1px solid rgba(26,46,31,0.1); border-radius: 12px; padding: 2.5rem; }
.rhvt-scenario-card__header { margin-bottom: 1rem; }
.rhvt-scenario-card__eyebrow { font-size: 0.7rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rhvt-amber); margin-bottom: 0.5rem; }
.rhvt-scenario-card__body { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.7; }
.rhvt-scenario-card__text { font-size: 0.9rem; color: var(--rhvt-text-muted-light); line-height: 1.7; }
.rhvt-scenario-card__outcome { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(26,46,31,0.1); font-size: 0.875rem; color: var(--rhvt-text-muted-light); }
.rhvt-proof-results { background: var(--rhvt-bg-deep); padding: 5rem 0; text-align: center; }
.rhvt-proof-results__eyebrow { color: var(--rhvt-amber); font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.rhvt-proof-results__head { color: var(--rhvt-text-primary-dark); margin-bottom: 3rem; }
.rhvt-feature-list { display: flex; flex-direction: column; gap: 0.6rem; padding: 0; list-style: none; }
.rhvt-seasonal__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: var(--rhvt-container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.rhvt-seasonal__text { display: flex; flex-direction: column; gap: 1rem; }
.rhvt-seasonal__chart { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,145,42,0.2); border-radius: 10px; padding: 1.5rem; overflow: hidden; max-width: 100%; }

/* outcome cards */
.rhvt-outcome-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.rhvt-outcome-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(212,145,42,0.15); border-radius: 10px; padding: 2rem; text-align: center; }
.rhvt-outcome-card__val { font-family: 'IBM Plex Mono', monospace; font-size: 2.5rem; font-weight: 500; color: var(--rhvt-amber); line-height: 1; margin-bottom: 0.4rem; }
.rhvt-outcome-card__label { font-size: 0.9rem; color: var(--rhvt-text-primary-dark); font-weight: 600; margin-bottom: 0.3rem; }
.rhvt-outcome-card__note { font-size: 0.78rem; color: var(--rhvt-text-muted-dark); }

/* pricing toggle */
.rhvt-pricing-period-toggle { display: flex; gap: 0; border: 1px solid rgba(26,46,31,0.18); border-radius: 8px; overflow: hidden; background: var(--rhvt-bg-white); width: fit-content; }
.rhvt-period-btn { padding: 0.55rem 1.4rem; font-size: 0.87rem; font-family: 'IBM Plex Sans', sans-serif; font-weight: 500; background: transparent; border: none; cursor: pointer; color: var(--rhvt-text-muted-light); transition: background 0.2s, color 0.2s; }
.rhvt-period-btn.rhvt-period-btn--active { background: var(--rhvt-text-primary-light); color: var(--rhvt-text-primary-dark-inv, #EEE9DE); }
.rhvt-period-btn--active { background: var(--rhvt-text-primary-light) !important; color: #EEE9DE !important; }
.rhvt-period-btn__save { font-size: 0.7rem; color: var(--rhvt-green-signal); margin-left: 0.35rem; }
.rhvt-tiers { background: var(--rhvt-bg-white); padding: 1rem 0 5rem; }
.rhvt-tiers__inner {
  max-width: var(--rhvt-container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 2rem;
}
.rhvt-tier-card--featured { border-color: var(--rhvt-amber); box-shadow: 0 0 0 2px rgba(212,145,42,0.25); }
.rhvt-tier-card__popular-badge {
  background: var(--rhvt-amber);
  color: var(--rhvt-bg-deep);
  font-size: 0.67rem;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.rhvt-tier-card__limits { font-size: 0.78rem; color: var(--rhvt-text-muted-light); margin-top: 0.5rem; font-family: 'IBM Plex Mono', monospace; }
.rhvt-pilot-results__head { color: var(--rhvt-text-primary-dark); margin-bottom: 2rem; }
.rhvt-comparison-table--light { background: var(--rhvt-bg-white); }

/* security page */
.rhvt-sec-block { display: flex; flex-direction: column; gap: 0.75rem; }
.rhvt-sec-block__icon { font-size: 1.5rem; color: var(--rhvt-amber); }
.rhvt-sec-block__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; color: var(--rhvt-text-primary-dark); }
.rhvt-sec-block__body { font-size: 0.875rem; color: var(--rhvt-text-muted-dark); line-height: 1.65; }
.rhvt-data-security__head { color: var(--rhvt-text-primary-dark); margin-bottom: 2rem; }
.rhvt-compliance-items { display: flex; flex-direction: column; gap: 1.5rem; max-width: 600px; margin-inline: auto; }
.rhvt-compliance-item { display: flex; align-items: flex-start; gap: 1rem; }
.rhvt-compliance-item__icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.rhvt-compliance-item__icon--done { background: rgba(53,183,109,0.15); color: var(--rhvt-green-signal); }
.rhvt-compliance-item__icon--wip { background: rgba(212,145,42,0.12); color: var(--rhvt-amber); }
.rhvt-compliance__eyebrow { color: var(--rhvt-amber); font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.rhvt-access-control__text { display: flex; flex-direction: column; gap: 1rem; }
.rhvt-access-control__table { overflow-x: auto; }
.rhvt-tbl-yes { color: var(--rhvt-green-signal); font-weight: 600; }
.rhvt-tbl-no { color: var(--rhvt-text-muted-light); }

/* contact page */
.rhvt-contact-block { background: var(--rhvt-bg-white); border: 1px solid rgba(26,46,31,0.1); border-radius: 12px; padding: 2rem; }
.rhvt-contact-form-section__left { display: flex; flex-direction: column; gap: 1.5rem; }
.rhvt-contact-form-section__right { display: flex; flex-direction: column; gap: 1.25rem; }
.rhvt-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.rhvt-map-info { background: var(--rhvt-bg-white); border: 1px solid rgba(26,46,31,0.1); border-radius: 12px; overflow: hidden; }
.rhvt-map-info__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.rhvt-map-info__placeholder { background: var(--rhvt-bg-light); min-height: 260px; display: flex; align-items: center; justify-content: center; }
.rhvt-map-placeholder__inner { text-align: center; color: var(--rhvt-text-muted-light); }
.rhvt-map-info__address-block { padding: 2rem; display: flex; flex-direction: column; justify-content: center; gap: 0.75rem; }

/* platform / integrations page classes */
.rhvt-overview-grid { display: block; padding: 5rem 0; }
.rhvt-overview-grid__head { color: var(--rhvt-text-primary-dark); margin-bottom: 2rem; }
.rhvt-3col-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.rhvt-4col-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.rhvt-2col-feature-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.rhvt-2col-feature-blocks--light { background: var(--rhvt-bg-light); }
.rhvt-2col-block { background: var(--rhvt-bg-white); border: 1px solid rgba(26,46,31,0.1); border-radius: 10px; padding: 2rem; }
.rhvt-feature-block { display: flex; flex-direction: column; gap: 0.75rem; }
.rhvt-feature-block__icon { font-size: 1.4rem; color: var(--rhvt-amber); }
.rhvt-feature-block__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; color: var(--rhvt-text-primary-dark); }
.rhvt-feature-block__body { font-size: 0.875rem; color: var(--rhvt-text-muted-dark); line-height: 1.65; }
.rhvt-engine { background: var(--rhvt-bg-deep); padding: 5rem 0; }
.rhvt-engine__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: var(--rhvt-container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.rhvt-engine__text { display: flex; flex-direction: column; gap: 1rem; }
.rhvt-engine__diagram { display: flex; align-items: center; justify-content: center; }
.rhvt-reporting { background: var(--rhvt-bg-white); padding: 5rem 0; }
.rhvt-reporting__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: var(--rhvt-container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.rhvt-reporting__text { display: flex; flex-direction: column; gap: 1rem; }
.rhvt-reporting__visual { display: flex; align-items: center; justify-content: center; }
.rhvt-reporting__img { max-width: 100%; height: auto; border-radius: 10px; }
.rhvt-custom-api { background: var(--rhvt-bg-deep); padding: 5rem 0; }
.rhvt-custom-api__eyebrow { color: var(--rhvt-amber); font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.rhvt-custom-api__head { color: var(--rhvt-text-primary-dark); margin-bottom: 1rem; }
.rhvt-custom-api__sub { color: var(--rhvt-text-muted-dark); font-size: 1rem; line-height: 1.7; max-width: 540px; }
.rhvt-api-access { background: var(--rhvt-bg-deep); padding: 5rem 0; text-align: center; }
.rhvt-api-access__eyebrow { color: var(--rhvt-amber); font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.rhvt-api-access__head { color: var(--rhvt-text-primary-dark); margin-bottom: 1rem; }
.rhvt-api-access__sub { color: var(--rhvt-text-muted-dark); font-size: 1rem; line-height: 1.7; max-width: 540px; margin-inline: auto; }
.rhvt-api-mock { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,145,42,0.2); border-radius: 10px; padding: 1.5rem; font-family: 'IBM Plex Mono', monospace; font-size: 0.82rem; overflow-x: auto; max-width: 100%; text-align: left; }
.rhvt-code-block { background: var(--rhvt-bg-deep); border: 1px solid rgba(212,145,42,0.15); border-radius: 10px; overflow: hidden; max-width: 100%; }
.rhvt-code-block__header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.25rem; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); }
.rhvt-code-block__lang { font-size: 0.7rem; font-family: 'IBM Plex Mono', monospace; color: var(--rhvt-amber); text-transform: uppercase; letter-spacing: 0.08em; }
.rhvt-code-block__label { font-size: 0.7rem; font-family: 'IBM Plex Mono', monospace; color: var(--rhvt-text-muted-dark); }
.rhvt-code-block__body { padding: 1.5rem; overflow-x: auto; line-height: 1.65; }
.rhvt-code--keyword { color: #C792EA; }
.rhvt-code--string { color: #C3E88D; }
.rhvt-code--key { color: #82AAFF; }
.rhvt-code--number { color: #F78C6C; }
.rhvt-code--comment { color: #546E7A; font-style: italic; }
.rhvt-code--brace { color: var(--rhvt-text-muted-dark); }
.rhvt-erp-detail { background: var(--rhvt-bg-white); padding: 5rem 0; }
.rhvt-erp-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: var(--rhvt-container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.rhvt-erp-detail__eyebrow { color: var(--rhvt-text-muted-light); font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.rhvt-erp-detail__text { display: flex; flex-direction: column; gap: 1rem; }
.rhvt-wms-detail { background: var(--rhvt-bg-light); padding: 5rem 0; }
.rhvt-wms-detail__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: var(--rhvt-container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.rhvt-wms-detail__text { display: flex; flex-direction: column; gap: 1rem; }
.rhvt-integ-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.rhvt-integ-card { background: var(--rhvt-bg-white); border: 1px solid rgba(26,46,31,0.1); border-radius: 10px; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; transition: box-shadow 0.2s; }
.rhvt-integ-card:hover { box-shadow: 0 4px 18px rgba(26,46,31,0.1); }
.rhvt-integ-card__icon { font-size: 1.4rem; color: var(--rhvt-amber); }
.rhvt-integ-card__info { display: flex; flex-direction: column; gap: 0.2rem; }
.rhvt-integ-card__name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--rhvt-text-primary-light); }
.rhvt-integ-card__type { font-size: 0.68rem; font-family: 'IBM Plex Mono', monospace; color: var(--rhvt-text-muted-white); text-transform: uppercase; letter-spacing: 0.08em; }
.rhvt-integ-card__desc { font-size: 0.83rem; color: var(--rhvt-text-muted-light); line-height: 1.6; }
.rhvt-integ-full { background: var(--rhvt-bg-deep); padding: 5rem 0; }
.rhvt-integ-full__head { color: var(--rhvt-text-primary-dark); margin-bottom: 2rem; text-align: center; }
.rhvt-sku-intel__eyebrow { color: var(--rhvt-amber); font-size: 0.72rem; font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }

/* customers page */
.rhvt-case-studies__head { color: var(--rhvt-text-primary-dark); margin-bottom: 2rem; }
.rhvt-case-study-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.rhvt-case-card__header { margin-bottom: 1rem; }
.rhvt-case-card__tag { font-size: 0.68rem; font-family: 'IBM Plex Mono', monospace; color: var(--rhvt-amber); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; display: block; }
.rhvt-case-card__quote { font-size: 1rem; color: var(--rhvt-text-primary-dark); line-height: 1.65; font-style: italic; margin-bottom: 1.25rem; }
.rhvt-case-card__attr { font-size: 0.8rem; color: var(--rhvt-text-muted-dark); margin-bottom: 1.5rem; }
.rhvt-case-card__results { display: flex; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.25rem; border-top: 1px solid rgba(238,233,222,0.12); }
.rhvt-case-result { text-align: center; }
.rhvt-case-result__val { font-family: 'IBM Plex Mono', monospace; font-size: 1.5rem; font-weight: 500; color: var(--rhvt-amber); line-height: 1; margin-bottom: 0.2rem; }
.rhvt-case-result__desc { font-size: 0.75rem; color: var(--rhvt-text-muted-dark); line-height: 1.4; }
.rhvt-compare { background: var(--rhvt-bg-white); padding: 5rem 0; }
.rhvt-compare__head { color: var(--rhvt-text-primary-light); margin-bottom: 2rem; text-align: center; }
.rhvt-compare-group { max-width: var(--rhvt-container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.rhvt-testimonials-section { background: var(--rhvt-bg-light); padding: 5rem 0; }
.rhvt-testimonials-section__head { color: var(--rhvt-text-primary-light); margin-bottom: 2rem; text-align: center; }

/* FAQs chevron icon */
.rhvt-faq-item__chevron { transition: transform 0.3s ease; flex-shrink: 0; margin-left: auto; color: var(--rhvt-text-muted-light); }
.rhvt-faq-item.rhvt-faq--open .rhvt-faq-item__chevron { transform: rotate(180deg); }

/* blog card on homepage */
.rhvt-blog-card__date { font-family: 'IBM Plex Mono', monospace; font-size: 0.72rem; color: var(--rhvt-text-muted-white); }

/* responsive fixes for new grid classes */
@media (max-width: 768px) {
  .rhvt-story__stats { grid-template-columns: repeat(2, 1fr); }
  .rhvt-usecase__before-after { grid-template-columns: 1fr; }
  .rhvt-blog-featured { grid-template-columns: 1fr; }
  .rhvt-blog-grid { grid-template-columns: 1fr 1fr; }
  .rhvt-blog-grid--3col { grid-template-columns: 1fr 1fr; }
  .rhvt-outcome-cards { grid-template-columns: 1fr; }
  .rhvt-3col-feature-grid { grid-template-columns: 1fr 1fr; }
  .rhvt-4col-grid { grid-template-columns: repeat(2, 1fr); }
  .rhvt-2col-feature-blocks { grid-template-columns: 1fr; }
  .rhvt-integ-card-grid { grid-template-columns: 1fr 1fr; }
  .rhvt-case-study-cards { grid-template-columns: 1fr; }
  .rhvt-engine__inner { grid-template-columns: 1fr; }
  .rhvt-reporting__inner { grid-template-columns: 1fr; }
  .rhvt-erp-detail__inner { grid-template-columns: 1fr; }
  .rhvt-wms-detail__inner { grid-template-columns: 1fr; }
  .rhvt-seasonal__inner { grid-template-columns: 1fr; }
  .rhvt-map-info__inner { grid-template-columns: 1fr; }
  .rhvt-cl-entry { grid-template-columns: 90px 1fr; gap: 1.25rem; }
  .rhvt-tiers__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .rhvt-story__stats { grid-template-columns: 1fr 1fr; }
  .rhvt-blog-grid { grid-template-columns: 1fr; }
  .rhvt-blog-grid--3col { grid-template-columns: 1fr; }
  .rhvt-metric-callouts { flex-direction: column; }
}

/* === CONTRAST + OVERFLOW FIXES === */

/* stat tile label: #7A9B8A on #1E3826 bg fails; use lighter text */
.rhvt-stat-tile__label { color: #A8C4B4; }

/* View-all-articles link text contrast: amber on white bg is ~2.7, use darker amber */
.rhvt-blog-strip .rhvt-btn--text-link { color: #7A5100; }
.rhvt-blog-strip .rhvt-btn--text-link:hover { color: var(--rhvt-amber); }

/* auth card elements on white card bg must use dark text */
.rhvt-auth-card { background: var(--rhvt-bg-white); }
.rhvt-auth-form { display: flex; flex-direction: column; gap: 1.1rem; }

/* hero SVG code comment token: slightly lighten #546E7A on deep bg */
.rhvt-code--comment { color: #8CA5B0; }

/* hero inner responsive overflow: collapse to single column early */
@media (max-width: 640px) {
  .rhvt-hero__inner { grid-template-columns: 1fr; }
  .rhvt-hero__visual { display: none; }
}

/* platform/security/use-cases code + SVG overflow guard */
pre, .rhvt-code-block, .rhvt-api-mock { overflow-x: auto; max-width: 100%; }
.rhvt-two-col__visual svg, .rhvt-hero__visual svg { max-width: 100%; height: auto; }
.rhvt-seasonal__chart svg { max-width: 100%; overflow: visible; }
.rhvt-engine__diagram svg { max-width: 100%; height: auto; }

/* article template: back-link */
.rhvt-article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rhvt-text-primary-light);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.rhvt-article-back:hover { color: var(--rhvt-amber); }

/* article template cover: prevent stretching + anchor own width */
.rhvt-article-cover {
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.rhvt-article-cover img, .rhvt-article-hero__cover img {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-inline: auto;
}

/* use-cases SVG container overflow guard */
.rhvt-seasonal__chart { overflow-x: auto; }
.rhvt-seasonal__chart svg { width: 100%; height: auto; min-width: 0; }

/* access control table mobile overflow */
.rhvt-access-control__table { overflow-x: auto; }
.rhvt-access-control__table table { min-width: 480px; }

/* security page wide code span guard */
.rhvt-code-inline { font-family: 'IBM Plex Mono', monospace; font-size: 0.82em; word-break: break-all; }

/* auth form input mobile: prevent overshooting card */
.rhvt-auth-card { max-width: 460px; width: 100%; }
@media (max-width: 480px) {
  .rhvt-auth-main { padding: 1rem; }
  .rhvt-auth-card { padding: 2rem 1.25rem; }
}

/* === PATCH 3: SYSTEMATIC CONTRAST + OVERFLOW FIXES 2026-07-19 === */

/* A. rhvt-text--light (#1A2E1F dark green) / rhvt-text--body-light (#3D6E52)
   Token names imply light-bg use but are placed on dark sections.
   Section bg is dark, inherited text would be cream, but explicit class overrides
   to light-bg token creating near-zero contrast. Override with !important. */
.rhvt-section--dark .rhvt-text--light,
.rhvt-section--dark-alt .rhvt-text--light { color: var(--rhvt-text-primary-dark) !important; }
.rhvt-section--dark .rhvt-text--body-light,
.rhvt-section--dark-alt .rhvt-text--body-light { color: var(--rhvt-text-muted-dark) !important; }

/* B. Components that declare own background: var(--rhvt-bg-deep) inside a
   rhvt-section--light wrapper. Sections set color:light-token via cascade;
   component bg turns dark but inherited text stays as dark green = fails.
   Force all prose descendants to dark-page cream tokens. */
.rhvt-engine h1, .rhvt-engine h2, .rhvt-engine h3,
.rhvt-engine p, .rhvt-engine li { color: var(--rhvt-text-primary-dark); }
.rhvt-engine .rhvt-text--body-light { color: var(--rhvt-text-muted-dark) !important; }
.rhvt-engine .rhvt-feature-block__body { color: var(--rhvt-text-muted-dark); }

.rhvt-blog-cta h2, .rhvt-blog-cta h3,
.rhvt-blog-cta p { color: var(--rhvt-text-primary-dark); }

.rhvt-integ-full .rhvt-integ-card { background: rgba(255,255,255,0.05); border-color: rgba(238,233,222,0.12); }
.rhvt-integ-full .rhvt-integ-card__name { color: var(--rhvt-text-primary-dark); }
.rhvt-integ-full .rhvt-integ-card__type { color: var(--rhvt-text-muted-dark); }
.rhvt-integ-full .rhvt-integ-card__desc { color: var(--rhvt-text-muted-dark); }

/* C. Dark-page token classes on light/white sections.
   These classes define explicit dark-bg colors that fail on light backgrounds.
   Override per section context. */

/* customers.html: pilot-results (rhvt-section--light) */
.rhvt-section--light .rhvt-pilot-results__head { color: var(--rhvt-text-primary-light); }
.rhvt-section--light .rhvt-outcome-card { background: var(--rhvt-bg-white); border-color: rgba(26,46,31,0.1); }
.rhvt-section--light .rhvt-outcome-card__val { color: #7A5100; }
.rhvt-section--light .rhvt-outcome-card__label { color: var(--rhvt-text-primary-light); }
.rhvt-section--light .rhvt-outcome-card__note { color: var(--rhvt-text-muted-light); }

/* customers.html: case-studies (rhvt-section--white) */
.rhvt-section--white .rhvt-case-studies__head { color: var(--rhvt-text-primary-light); }
.rhvt-section--white .rhvt-case-card__tag { color: #7A5100; }
.rhvt-section--white .rhvt-case-card__quote { color: var(--rhvt-text-primary-light); }
.rhvt-section--white .rhvt-case-card__attr { color: var(--rhvt-text-muted-light); }
.rhvt-section--white .rhvt-case-result__val { color: #7A5100; }
.rhvt-section--white .rhvt-case-result__desc { color: var(--rhvt-text-muted-light); }
.rhvt-section--white .rhvt-case-card__results { border-top-color: rgba(26,46,31,0.1); }

/* security.html: data-security (rhvt-section--white) */
.rhvt-section--white .rhvt-data-security__head { color: var(--rhvt-text-primary-light); }
.rhvt-section--white .rhvt-sec-block__title { color: var(--rhvt-text-primary-light); }
.rhvt-section--white .rhvt-sec-block__body { color: var(--rhvt-text-muted-light); }

/* about.html: story section (rhvt-section--light) */
.rhvt-section--light .rhvt-story-stat__val { color: #7A5100; }
.rhvt-section--light .rhvt-story-stat__label { color: var(--rhvt-text-muted-light); }

/* about.html: contact strip (rhvt-section--light) */
.rhvt-section--light .rhvt-contact-detail { color: var(--rhvt-text-primary-light); }
.rhvt-section--light .rhvt-contact-detail a { color: #7A5100; }
.rhvt-section--light .rhvt-contact-detail a:hover { color: var(--rhvt-amber); }

/* D. feature-block body in dark-alt: muted-dark #7A9B8A on #1E3826 = 4.04 fails */
.rhvt-section--dark-alt .rhvt-feature-block__body { color: #A8C4B4; }

/* E. Before/after column badge and metric: vivid signal colors fail on light tinted bg */
.rhvt-ba-col--before .rhvt-ba-col__badge { color: #9B1C1C !important; }
.rhvt-ba-col--after .rhvt-ba-col__badge { color: #1A6B36 !important; }
.rhvt-section--light .rhvt-ba-col__metric,
.rhvt-section--light-alt .rhvt-ba-col__metric { color: #1A6B36; }

/* F. Pricing period-btn save badge: green-signal on white bg = 2.58 fails */
.rhvt-period-btn__save { color: #1A6B36; }

/* G. Amber text (#D4912A) fails on light/white backgrounds (ratio ~2.40-2.66).
   Use dark amber #7A5100 which passes 4.5:1 on all light and white surfaces. */
.rhvt-inline-code { color: #7A5100; }
.rhvt-cl-badge { color: #7A5100; }
.rhvt-blog-card__read { color: #7A5100; }
.rhvt-blog-card__read:hover { color: var(--rhvt-amber); }
.rhvt-auth-card a { color: #7A5100; }
.rhvt-auth-card a:hover { color: var(--rhvt-amber); }
.rhvt-section--light .rhvt-scenario-card__eyebrow { color: #7A5100; }

/* Eyebrow base token (amber) on light/white sections fails WCAG.
   Exclude --light variant (already has correct color) and --dark variant. */
.rhvt-section--light .rhvt-eyebrow:not(.rhvt-eyebrow--light):not(.rhvt-eyebrow--dark),
.rhvt-section--light-alt .rhvt-eyebrow:not(.rhvt-eyebrow--light):not(.rhvt-eyebrow--dark),
.rhvt-section--white .rhvt-eyebrow:not(.rhvt-eyebrow--light):not(.rhvt-eyebrow--dark) { color: #7A5100; }

/* H. Overflow fixes */
.rhvt-table-scroll { overflow-x: auto; max-width: 100%; }
@media (max-width: 400px) {
  .rhvt-story__stats { grid-template-columns: 1fr; }
}
.rhvt-story__stats > * { min-width: 0; overflow: hidden; }
.rhvt-article-body { max-width: 760px; margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.rhvt-article-content { max-width: 100%; overflow-wrap: break-word; word-break: break-word; }

/* === PATCH 4: WHITE-BG COMPONENT COUNTER-OVERRIDES + REMAINING CONTRAST === */

/* rhvt-erp-detail declares background:white and lives inside rhvt-section--dark.
   Patch 3A forces cream via !important on rhvt-text--light inside dark sections,
   but the actual rendered bg is white. Override with even higher specificity. */
.rhvt-erp-detail .rhvt-text--light,
.rhvt-erp-detail .rhvt-2col-block .rhvt-text--light { color: var(--rhvt-text-primary-light) !important; }
.rhvt-erp-detail .rhvt-text--body-light,
.rhvt-erp-detail .rhvt-2col-block .rhvt-text--body-light { color: var(--rhvt-text-muted-light) !important; }
.rhvt-erp-detail h2, .rhvt-erp-detail h3, .rhvt-erp-detail h4 { color: var(--rhvt-text-primary-light) !important; }

/* rhvt-scenario-card declares background:white inside rhvt-section--dark-alt.
   Same Patch 3A overshoot: cream on white = 1.21 contrast. Counter-override. */
.rhvt-scenario-card .rhvt-text--light { color: var(--rhvt-text-primary-light) !important; }
.rhvt-scenario-card .rhvt-text--body-light { color: var(--rhvt-text-muted-light) !important; }
.rhvt-scenario-card h2,
.rhvt-scenario-card h3 { color: var(--rhvt-text-primary-light) !important; }

/* rhvt-scenario-card__eyebrow: hardcoded amber on white card bg fails 4.5.
   Override unconditionally since card always has white bg. */
.rhvt-scenario-card .rhvt-scenario-card__eyebrow { color: #7A5100 !important; }

/* rhvt-engine has background:var(--rhvt-bg-deep) override inside rhvt-section--light.
   Patch 3G changed rhvt-section--light .rhvt-eyebrow to dark-amber #7A5100.
   Actual bg of engine is deep dark #0B1A13 so dark-amber fails (2.56).
   Force cream on eyebrows inside the engine block. */
.rhvt-engine .rhvt-eyebrow { color: var(--rhvt-text-primary-dark) !important; }

/* outcome-box val: green-signal #35B76D on rgba(53,183,109,0.07) tinted bg = 2.42 fails.
   Use dark green #1A6B36 which passes 4.5 on both light and tinted backgrounds. */
.rhvt-outcome-box__val { color: #1A6B36; }

/* article-template overflow at 375px: rhvt-article-hero__inner max-width is 880px
   which at 375px can cause overflow via padding. Add overflow guards on article sections. */
.rhvt-article-hero,
.rhvt-article-body-section,
.rhvt-article-related { overflow-x: hidden; }

/* pricing-toggle: pricing.html uses rhvt-pricing-toggle alongside rhvt-pricing-period-toggle
   but only the latter is defined in CSS. Add alias so no orphan class warning. */
.rhvt-pricing-toggle { display: flex; gap: 0; }

/* rhvt-testimonials-section has background:var(--rhvt-bg-light) override inside
   rhvt-section--dark-alt. Patch 3A forces cream text; counter-override to dark. */
.rhvt-testimonials-section .rhvt-text--light { color: var(--rhvt-text-primary-light) !important; }
.rhvt-testimonials-section .rhvt-testimonials-section__head { color: var(--rhvt-text-primary-light) !important; }
