/* ==========================================================================
   REVVO Vision — "Inside Revvo" reading-room styles.
   Loaded by vision.html only, after tokens.css and site.css.
   Editorial/manifesto presentation built on the shared brand tokens.
   ========================================================================== */

/* --- Scroll reveal (JS adds .is-visible; transitions killed globally
       under prefers-reduced-motion by site.css) ------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--revvo-ease), transform 600ms var(--revvo-ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

.vision-hero {
  position: relative;
  overflow: hidden;
  background: var(--revvo-graphite);
  color: var(--revvo-gray-100);
  padding-block: var(--revvo-space-9);
  text-align: center;
}

.vision-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(38rem 26rem at 50% 22%, rgba(139, 70, 233, 0.28), transparent 65%);
  animation: vision-glow 9s var(--revvo-ease) infinite alternate;
  pointer-events: none;
}

@keyframes vision-glow {
  from { opacity: 0.65; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.12); }
}

.vision-hero .container { position: relative; }

.vision-hero .eyebrow { color: var(--revvo-violet-300); }

.vision-mark {
  width: 220px;
  margin: 0 auto var(--revvo-space-6);
  padding: var(--revvo-space-5) var(--revvo-space-6);
  background: var(--revvo-white); /* logo assets carry a white background */
  border-radius: var(--revvo-radius-xl);
  box-shadow: 0 0 90px rgba(139, 70, 233, 0.45), 0 0 28px rgba(139, 70, 233, 0.3);
  animation: vision-drift 7s ease-in-out infinite alternate;
}

@media (min-width: 768px) {
  .vision-mark { width: 300px; }
}

@keyframes vision-drift {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .vision-hero::before,
  .vision-mark { animation: none; }
}

.vision-hero h1 {
  color: var(--revvo-white);
  font-size: var(--revvo-text-4xl);
  line-height: var(--revvo-leading-display);
  letter-spacing: var(--revvo-tracking-display);
  margin-bottom: var(--revvo-space-4);
}

@media (min-width: 768px) {
  .vision-hero h1 { font-size: 4.5rem; }
}

.vision-hero h1 .accent { color: var(--revvo-violet-300); }

.vision-hero .subline {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--revvo-gray-400);
  font-size: var(--revvo-text-lg);
}

/* --- Chapter layout & sticky indicator ----------------------------------- */

.vision-layout {
  display: grid;
  /* minmax(0, 1fr): the content column holds horizontally scrollable
     components (.pipeline, .chapter-nav) whose intrinsic min-content
     width would otherwise force the track — and the whole page — wider
     than the viewport. */
  grid-template-columns: minmax(0, 1fr);
  gap: var(--revvo-space-6);
}

@media (min-width: 1024px) {
  .vision-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: var(--revvo-space-8);
    align-items: start;
  }
}

.chapter-rail {
  min-width: 0; /* allow shrink below content min-width inside the grid */
  padding-block: var(--revvo-space-5);
}

@media (min-width: 1024px) {
  .chapter-rail {
    position: sticky;
    top: var(--revvo-space-6);
    padding-block: var(--revvo-space-8) 0;
  }
}

.chapter-progress {
  display: none;
}

@media (min-width: 1024px) {
  .chapter-progress {
    display: block;
    width: 2px;
    height: 120px;
    background: var(--revvo-gray-200);
    border-radius: var(--revvo-radius-pill);
    margin: 0 0 var(--revvo-space-5) 18px;
    overflow: hidden;
  }
  .chapter-progress span {
    display: block;
    width: 100%;
    height: 0%;
    background: var(--revvo-violet-500);
    transition: height 120ms linear;
  }
}

.chapter-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--revvo-space-2);
  overflow-x: auto;
}

@media (min-width: 1024px) {
  .chapter-nav ul { flex-direction: column; overflow: visible; }
}

.chapter-nav a {
  display: inline-flex;
  align-items: baseline;
  gap: var(--revvo-space-2);
  min-height: 44px;
  padding: var(--revvo-space-2) var(--revvo-space-3);
  font-size: var(--revvo-text-sm);
  font-weight: 600;
  color: var(--revvo-gray-600);
  text-decoration: none;
  border-radius: var(--revvo-radius-md);
  white-space: nowrap;
  border-left: 2px solid transparent;
}

.chapter-nav a:hover { color: var(--revvo-violet-700); background: var(--revvo-violet-50); }

.chapter-nav a.is-active {
  color: var(--revvo-violet-700);
  border-left-color: var(--revvo-violet-500);
  background: var(--revvo-violet-50);
}

.chapter-nav .ch-num {
  font-family: var(--revvo-font-mono);
  font-size: var(--revvo-text-xs);
  color: var(--revvo-gray-400);
}

.chapter-nav a.is-active .ch-num { color: var(--revvo-violet-700); }

/* --- Chapter sections ------------------------------------------------------ */

.chapter {
  padding-block: var(--revvo-space-7);
  scroll-margin-top: 96px;
  border-top: 1px solid var(--revvo-gray-200);
}

.chapter:first-child { border-top: 0; }

.chapter-kicker {
  display: flex;
  align-items: baseline;
  gap: var(--revvo-space-3);
  margin-bottom: var(--revvo-space-5);
}

.chapter-kicker .ch-index {
  font-family: var(--revvo-font-mono);
  font-size: var(--revvo-text-sm);
  color: var(--revvo-violet-700);
}

.chapter-kicker .eyebrow { margin: 0; }

.chapter h2 {
  font-size: var(--revvo-text-2xl);
  margin-bottom: var(--revvo-space-5);
}

@media (min-width: 768px) {
  .chapter h2 { font-size: var(--revvo-text-3xl); }
}

.chapter .lede {
  max-width: 44rem;
  color: var(--revvo-gray-600);
  font-size: var(--revvo-text-lg);
}

/* --- 01 Vision: stacked statements ---------------------------------------- */

.statement-stack {
  display: grid;
  gap: var(--revvo-space-5);
  margin-bottom: var(--revvo-space-7);
}

.statement {
  border-left: 3px solid var(--revvo-violet-500);
  padding-left: var(--revvo-space-5);
}

.statement .eyebrow { margin-bottom: var(--revvo-space-2); }

.statement p {
  margin: 0;
  font-weight: 600;
  line-height: var(--revvo-leading-tight);
}

.statement-vision p { font-size: var(--revvo-text-2xl); letter-spacing: var(--revvo-tracking-display); }

.statement-mission p { font-size: var(--revvo-text-lg); color: var(--revvo-gray-800); font-weight: 400; line-height: var(--revvo-leading-body); }

.statement-purpose p { font-size: var(--revvo-text-xl); color: var(--revvo-violet-800); }

@media (min-width: 768px) {
  .statement-vision p { font-size: var(--revvo-text-3xl); }
}

/* Pull-quote reframe */
.pull-quote {
  margin: var(--revvo-space-7) 0;
  padding: var(--revvo-space-7) var(--revvo-space-5);
  background: var(--revvo-violet-50);
  border-radius: var(--revvo-radius-xl);
  text-align: center;
}

.pull-quote blockquote {
  margin: 0;
  font-size: var(--revvo-text-xl);
  font-weight: 700;
  line-height: var(--revvo-leading-tight);
  letter-spacing: var(--revvo-tracking-display);
  color: var(--revvo-violet-900);
}

@media (min-width: 768px) {
  .pull-quote blockquote { font-size: var(--revvo-text-2xl); }
}

.pull-quote cite {
  display: block;
  margin-top: var(--revvo-space-4);
  font-style: normal;
  font-size: var(--revvo-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--revvo-tracking-eyebrow);
  color: var(--revvo-violet-700);
}

/* Evolution path — three connected stages */
.evolution {
  display: grid;
  gap: var(--revvo-space-3);
  margin-top: var(--revvo-space-6);
}

@media (min-width: 768px) {
  .evolution {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: var(--revvo-space-4);
  }
}

.evolution-stage {
  border: 1px solid var(--revvo-gray-200);
  border-radius: var(--revvo-radius-lg);
  padding: var(--revvo-space-5);
  background: var(--revvo-white);
}

.evolution-stage .stage-step {
  font-family: var(--revvo-font-mono);
  font-size: var(--revvo-text-xs);
  color: var(--revvo-violet-700);
  display: block;
  margin-bottom: var(--revvo-space-2);
}

.evolution-stage h3 { font-size: var(--revvo-text-lg); margin-bottom: var(--revvo-space-2); }

.evolution-stage p { margin: 0; font-size: var(--revvo-text-sm); color: var(--revvo-gray-600); }

.evolution-stage.is-now {
  border-color: var(--revvo-violet-500);
  box-shadow: var(--revvo-shadow-md);
}

.evolution-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--revvo-violet-500);
  font-size: var(--revvo-text-xl);
  font-weight: 700;
}

.evolution-arrow::before { content: "↓"; }

@media (min-width: 768px) {
  .evolution-arrow::before { content: "→"; }
}

/* --- 02 Strategy ------------------------------------------------------------ */

.doctrine {
  margin: var(--revvo-space-7) 0;
  padding: var(--revvo-space-6) var(--revvo-space-5);
  background: var(--revvo-graphite);
  border-radius: var(--revvo-radius-xl);
  text-align: center;
}

.doctrine p {
  margin: 0;
  color: var(--revvo-white);
  font-size: var(--revvo-text-xl);
  font-weight: 700;
  line-height: var(--revvo-leading-tight);
  letter-spacing: var(--revvo-tracking-display);
}

@media (min-width: 768px) {
  .doctrine p { font-size: var(--revvo-text-2xl); }
}

.doctrine .doctrine-note {
  margin-top: var(--revvo-space-3);
  color: var(--revvo-violet-300);
  font-size: var(--revvo-text-sm);
  font-weight: 600;
}

.strategy-cards .market-question {
  font-size: var(--revvo-text-sm);
  color: var(--revvo-gray-600);
  font-style: italic;
  margin: 0;
}

.corridor-inline {
  display: inline-flex;
  align-items: center;
  gap: var(--revvo-space-2);
  margin-top: var(--revvo-space-5);
  padding: var(--revvo-space-2) var(--revvo-space-4);
  border: 1px solid var(--revvo-violet-200);
  background: var(--revvo-violet-50);
  border-radius: var(--revvo-radius-pill);
  font-weight: 700;
  font-size: var(--revvo-text-sm);
  color: var(--revvo-violet-800);
}

/* Revvo Origin — five functions numbered row */
.functions-row {
  list-style: none;
  margin: var(--revvo-space-5) 0 0;
  padding: 0;
  display: grid;
  gap: var(--revvo-space-3);
}

@media (min-width: 768px) {
  .functions-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .functions-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.functions-row li {
  border: 1px solid var(--revvo-gray-200);
  border-radius: var(--revvo-radius-md);
  padding: var(--revvo-space-3) var(--revvo-space-4);
  font-weight: 700;
  font-size: var(--revvo-text-sm);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--revvo-space-1) var(--revvo-space-2);
}

.functions-row .fn-num {
  font-family: var(--revvo-font-mono);
  font-size: var(--revvo-text-xs);
  color: var(--revvo-violet-700);
}

/* Data flywheel — circular loop on desktop, vertical loop on mobile */
.flywheel {
  margin-top: var(--revvo-space-6);
}

.flywheel-track {
  list-style: none;
  margin: 0;
  padding: 0 0 0 var(--revvo-space-6);
  position: relative;
  display: grid;
  gap: var(--revvo-space-3);
}

.flywheel-track::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--revvo-violet-200);
}

.flywheel-node {
  position: relative;
  background: var(--revvo-white);
  border: 1px solid var(--revvo-gray-200);
  border-radius: var(--revvo-radius-pill);
  padding: var(--revvo-space-2) var(--revvo-space-4);
  font-size: var(--revvo-text-sm);
  font-weight: 600;
  width: fit-content;
}

.flywheel-node::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--revvo-space-6) + 2px);
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--revvo-violet-500);
}

.flywheel-loop {
  margin-top: var(--revvo-space-4);
  font-size: var(--revvo-text-sm);
  font-weight: 700;
  color: var(--revvo-violet-700);
}

@media (min-width: 1024px) {
  .flywheel-track {
    display: block;
    width: min(560px, 100%);
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    padding: 0;
  }

  .flywheel-track::before {
    inset: 17%;
    left: 17%;
    top: 17%;
    width: auto;
    border: 2px dashed var(--revvo-violet-200);
    border-radius: 50%;
    background: none;
  }

  .flywheel-node {
    position: absolute;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    box-shadow: var(--revvo-shadow-sm);
  }

  .flywheel-node::before { display: none; }

  /* 9 nodes around the circle */
  .flywheel-node:nth-child(1) { left: 50%;   top: 6%; }
  .flywheel-node:nth-child(2) { left: 78.5%; top: 15%; }
  .flywheel-node:nth-child(3) { left: 93%;   top: 40%; }
  .flywheel-node:nth-child(4) { left: 88%;   top: 68%; }
  .flywheel-node:nth-child(5) { left: 66%;   top: 90%; }
  .flywheel-node:nth-child(6) { left: 34%;   top: 90%; }
  .flywheel-node:nth-child(7) { left: 12%;   top: 68%; }
  .flywheel-node:nth-child(8) { left: 7%;    top: 40%; }
  .flywheel-node:nth-child(9) { left: 21.5%; top: 15%; }

  .flywheel-loop { text-align: center; }
}

/* --- 03 System (SDD) -------------------------------------------------------- */

.sdd-doctrine {
  display: inline-block;
  margin: var(--revvo-space-4) 0 var(--revvo-space-6);
  padding: var(--revvo-space-3) var(--revvo-space-5);
  background: var(--revvo-violet-700);
  color: var(--revvo-white);
  border-radius: var(--revvo-radius-pill);
  font-weight: 700;
  font-size: var(--revvo-text-lg);
  letter-spacing: var(--revvo-tracking-display);
}

/* Pipeline stepper */
.pipeline {
  list-style: none;
  margin: var(--revvo-space-5) 0 0;
  padding: 0;
  display: flex;
  gap: var(--revvo-space-2);
  overflow-x: auto;
  padding-bottom: var(--revvo-space-3);
}

.pipeline li {
  flex: 1 0 auto;
  min-width: 108px;
  text-align: center;
  font-size: var(--revvo-text-xs);
  font-weight: 700;
  padding-top: var(--revvo-space-4);
  position: relative;
  color: var(--revvo-gray-800);
}

.pipeline li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--revvo-violet-500);
  border: 2px solid var(--revvo-white);
  box-shadow: 0 0 0 2px var(--revvo-violet-200);
}

.pipeline li::after {
  content: "";
  position: absolute;
  top: 6px;
  left: calc(-50% + 10px);
  right: calc(50% + 10px);
  height: 2px;
  background: var(--revvo-violet-200);
}

.pipeline li:first-child::after { display: none; }

.pipeline .is-loop {
  color: var(--revvo-violet-700);
}

/* Wave model — stepped diagram */
.waves {
  list-style: none;
  margin: var(--revvo-space-6) 0 0;
  padding: 0;
  display: grid;
  gap: var(--revvo-space-3);
}

@media (min-width: 640px) {
  .waves { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .waves {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--revvo-space-2);
    align-items: start;
  }
  .waves li:nth-child(2) { margin-top: var(--revvo-space-3); }
  .waves li:nth-child(3) { margin-top: var(--revvo-space-4); }
  .waves li:nth-child(4) { margin-top: var(--revvo-space-5); }
}

/* The full 7-step staircase only fits once the content column is wide
   enough for seven cards — below this it would crush the labels. */
@media (min-width: 1280px) {
  .waves { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .waves li:nth-child(5) { margin-top: var(--revvo-space-6); }
  .waves li:nth-child(6) { margin-top: var(--revvo-space-7); }
  .waves li:nth-child(7) { margin-top: var(--revvo-space-8); }
  .wave-card { padding: var(--revvo-space-2) var(--revvo-space-3); }
  .wave-card h3 { font-size: 11px; letter-spacing: 0.06em; }
}

.wave-card {
  border: 1px solid var(--revvo-gray-200);
  border-radius: var(--revvo-radius-lg);
  padding: var(--revvo-space-4);
  background: var(--revvo-white);
  height: 100%;
  overflow-wrap: break-word;
}

.wave-card .wave-num {
  font-family: var(--revvo-font-mono);
  font-size: var(--revvo-text-2xl);
  font-weight: 700;
  color: var(--revvo-violet-500);
  display: block;
  line-height: 1;
  margin-bottom: var(--revvo-space-2);
}

.wave-card h3 { font-size: var(--revvo-text-sm); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--revvo-space-1); }

.wave-card p { margin: 0; font-size: var(--revvo-text-xs); color: var(--revvo-gray-600); }

/* Spec registry */
.registry-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--revvo-space-2) var(--revvo-space-4);
  align-items: center;
  margin: var(--revvo-space-5) 0;
  font-size: var(--revvo-text-sm);
  font-weight: 600;
  color: var(--revvo-gray-600);
}

.registry-stats .stat-dot { color: var(--revvo-violet-500); }

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--revvo-space-2);
  margin-bottom: var(--revvo-space-5);
}

.filter-chip {
  min-height: 44px;
  padding: var(--revvo-space-2) var(--revvo-space-4);
  font-family: var(--revvo-font-sans);
  font-size: var(--revvo-text-sm);
  font-weight: 600;
  color: var(--revvo-gray-800);
  background: var(--revvo-white);
  border: 1px solid var(--revvo-gray-200);
  border-radius: var(--revvo-radius-pill);
  cursor: pointer;
  transition: background-color var(--revvo-dur-fast) var(--revvo-ease),
              color var(--revvo-dur-fast) var(--revvo-ease),
              border-color var(--revvo-dur-fast) var(--revvo-ease);
}

.filter-chip:hover { border-color: var(--revvo-violet-300); color: var(--revvo-violet-700); }

.filter-chip[aria-pressed="true"] {
  background: var(--revvo-violet-500);
  border-color: var(--revvo-violet-500);
  color: var(--revvo-white);
}

.registry-grid {
  display: grid;
  gap: var(--revvo-space-3);
}

@media (min-width: 640px) {
  .registry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .registry-grid { grid-template-columns: repeat(3, 1fr); }
}

.spec-card {
  border: 1px solid var(--revvo-gray-200);
  border-radius: var(--revvo-radius-lg);
  padding: var(--revvo-space-4);
  background: var(--revvo-white);
  display: grid;
  gap: var(--revvo-space-2);
  align-content: start;
}

.spec-card .spec-id {
  font-family: var(--revvo-font-mono);
  font-size: var(--revvo-text-xs);
  color: var(--revvo-violet-700);
  font-weight: 700;
}

.spec-card h3 {
  font-size: var(--revvo-text-sm);
  margin: 0;
  line-height: var(--revvo-leading-tight);
}

.spec-card .spec-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--revvo-space-2);
  align-items: center;
}

.wave-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--revvo-gray-600);
  border: 1px solid var(--revvo-gray-200);
  border-radius: var(--revvo-radius-pill);
  padding: 2px var(--revvo-space-2);
}

.status-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--revvo-radius-pill);
  padding: 2px var(--revvo-space-2);
}

.status-drafted {
  color: var(--revvo-info);
  border: 1px solid var(--revvo-info);
  background: var(--revvo-white);
}

.status-planned {
  color: var(--revvo-gray-600);
  border: 1px dashed var(--revvo-gray-400);
  background: var(--revvo-gray-50);
}

.registry-empty {
  color: var(--revvo-gray-600);
  font-size: var(--revvo-text-sm);
  padding: var(--revvo-space-5);
  text-align: center;
}

/* --- 04 Brand ---------------------------------------------------------------- */

.brand-block { margin-bottom: var(--revvo-space-7); }

.brand-block > h3 {
  font-size: var(--revvo-text-lg);
  margin-bottom: var(--revvo-space-3);
}

.brand-block > p { max-width: 44rem; color: var(--revvo-gray-600); }

/* Color swatches */
.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--revvo-space-4);
  margin-top: var(--revvo-space-4);
}

.swatch { width: 132px; }

.swatch .sw-chip {
  height: 72px;
  border-radius: var(--revvo-radius-md);
  border: 1px solid var(--revvo-gray-200);
  margin-bottom: var(--revvo-space-2);
}

.swatch .sw-name { font-size: var(--revvo-text-sm); font-weight: 700; display: block; }

.swatch .sw-hex { font-family: var(--revvo-font-mono); font-size: var(--revvo-text-xs); color: var(--revvo-gray-600); }

.violet-scale {
  display: flex;
  gap: 4px;
  margin-top: var(--revvo-space-3);
}

.violet-scale span {
  flex: 1;
  height: 28px;
  border-radius: var(--revvo-radius-sm);
  border: 1px solid var(--revvo-gray-200);
}

/* Type ramp */
.type-ramp {
  border: 1px solid var(--revvo-gray-200);
  border-radius: var(--revvo-radius-lg);
  overflow: hidden;
  margin-top: var(--revvo-space-4);
}

.type-row {
  padding: var(--revvo-space-4) var(--revvo-space-5);
  border-top: 1px solid var(--revvo-gray-200);
  display: grid;
  gap: var(--revvo-space-1);
}

.type-row:first-child { border-top: 0; }

.type-row .type-label {
  font-size: var(--revvo-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--revvo-tracking-eyebrow);
  color: var(--revvo-gray-400);
}

.type-display { font-size: var(--revvo-text-3xl); font-weight: 700; line-height: var(--revvo-leading-display); letter-spacing: var(--revvo-tracking-display); }
.type-h2 { font-size: var(--revvo-text-2xl); font-weight: 700; line-height: var(--revvo-leading-tight); letter-spacing: var(--revvo-tracking-display); }
.type-body { font-size: var(--revvo-text-md); line-height: var(--revvo-leading-body); }
.type-eyebrow { font-size: var(--revvo-text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: var(--revvo-tracking-eyebrow); color: var(--revvo-violet-700); }
.type-mono { font-family: var(--revvo-font-mono); font-size: var(--revvo-text-md); }

/* Voice contrast */
.voice-grid {
  display: grid;
  gap: var(--revvo-space-4);
  margin-top: var(--revvo-space-4);
}

@media (min-width: 768px) {
  .voice-grid { grid-template-columns: 1fr 1fr; }
}

.voice-card {
  border-radius: var(--revvo-radius-lg);
  padding: var(--revvo-space-5);
}

.voice-card .voice-tag {
  font-size: var(--revvo-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--revvo-tracking-eyebrow);
  display: block;
  margin-bottom: var(--revvo-space-2);
}

.voice-card p { margin: 0; font-size: var(--revvo-text-lg); font-weight: 600; line-height: var(--revvo-leading-tight); }

.voice-say {
  background: var(--revvo-violet-50);
  border: 1px solid var(--revvo-violet-200);
}

.voice-say .voice-tag { color: var(--revvo-violet-700); }

.voice-never {
  background: var(--revvo-gray-50);
  border: 1px dashed var(--revvo-gray-400);
}

.voice-never .voice-tag { color: var(--revvo-error); }

.voice-never p { color: var(--revvo-gray-600); text-decoration: line-through; text-decoration-color: var(--revvo-error); text-decoration-thickness: 1px; }

/* Sub-brand family chips */
.family-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--revvo-space-3);
  margin-top: var(--revvo-space-4);
}

.family-chip {
  border: 1px solid var(--revvo-gray-200);
  border-radius: var(--revvo-radius-pill);
  padding: var(--revvo-space-2) var(--revvo-space-4);
  background: var(--revvo-white);
  font-size: var(--revvo-text-sm);
}

.family-chip strong { color: var(--revvo-violet-700); margin-right: var(--revvo-space-1); }

.family-chip span { color: var(--revvo-gray-600); }

/* --- Closing band ------------------------------------------------------------- */

.vision-close {
  background: var(--revvo-graphite);
  color: var(--revvo-white);
  text-align: center;
  padding-block: var(--revvo-space-9);
}

.vision-close .close-promise {
  font-size: var(--revvo-text-3xl);
  font-weight: 700;
  line-height: var(--revvo-leading-display);
  letter-spacing: var(--revvo-tracking-display);
  margin-bottom: var(--revvo-space-3);
}

@media (min-width: 768px) {
  .vision-close .close-promise { font-size: var(--revvo-text-4xl); }
}

.vision-close .close-promise .accent { color: var(--revvo-violet-300); }

.vision-close .close-tagline {
  color: var(--revvo-gray-400);
  margin-bottom: var(--revvo-space-6);
}

.vision-close a { color: var(--revvo-violet-300); }

.vision-close a:hover { color: var(--revvo-violet-200); }
