/* ============================================================
   VeridisQuo — marketing vitrine (landing "/")
   Loaded ONLY by frontend/index.html, on top of the shared
   styles.css. The product tokens (--bg, --ink, --rule, --score-N,
   --serif, --sans, --radius…) come from styles.css; here we add the
   corporate-brand blue scale + gradient and a couple of font aliases
   the vitrine markup expects, then the section styles.
   Hand-ported from the Claude Design export (VQ_1).
   ============================================================ */

:root {
  /* Corporate brand tokens (from the design system's tokens/brand.css) */
  --vq-blue-800: #24408a;
  --vq-blue-700: #2b5bb7;
  --vq-blue-600: #3775c2;
  --vq-blue-500: #4491ce;
  --vq-blue-400: #4a9fd4;
  --vq-blue-100: #dbe7f6;
  --vq-blue-050: #eef4fb;
  --vq-gradient: linear-gradient(105deg, #2b5bb7 0%, #4a9fd4 100%);

  /* Font aliases used across the vitrine markup. The product serif is
     an OS stack (styles.css --serif); we prepend Newsreader as a modern
     on-screen serif, and use Poppins for the wordmark. */
  --font-serif: "Newsreader", var(--serif);
  --font-sans: var(--sans);
  --font-brand: "Poppins", var(--sans);
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }
.vitrine {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* No blanket `a { color: inherit }` — it outranks the button/link colour
   classes on specificity (turning .v-btn text navy-on-navy). Each link
   carries its own colour class; the brand link has no text of its own. */
.v-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 32px;
}
.v-section { position: relative; }
.v-band-blue {
  background: var(--vq-blue-050);
  border-top: 1px solid var(--vq-blue-100);
  border-bottom: 1px solid var(--vq-blue-100);
}
.v-band-elev {
  background: var(--bg-elev);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.v-band-ink { background: var(--ink); color: #fff; }
[id] { scroll-margin-top: 72px; }

/* ---- Shared type ---- */
.v-eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vq-blue-700);
}
.v-eyebrow--accent { color: var(--accent); }
.v-eyebrow--sky { color: var(--vq-blue-400); }
.v-h1 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.v-h2 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.v-h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
}
.v-lede {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.v-em { font-style: italic; color: var(--accent); }
.v-em--sky { font-style: italic; color: var(--vq-blue-400); }

/* ---- Nav ---- */
.v-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: saturate(1.1);
}
.v-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.v-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.v-brand__mark { height: 26px; width: auto; display: block; }
.v-brand__word {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  background: var(--vq-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.v-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}
.v-nav__link--strong { font-weight: 600; color: var(--ink); }
.v-nav__link:hover { color: var(--ink); }
.v-nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}
.v-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
  background: var(--bg-elev);
}
.v-lang__on {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}
.v-lang__off {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
}
.v-lang__off:hover { color: var(--ink); }

/* CTA button (reuses .btn look; ink → accent on hover) */
.v-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  height: 44px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.v-btn:hover { background: var(--accent); border-color: var(--accent); }
.v-btn--lg { height: 52px; padding: 0 28px; font-size: 16px; }

/* ---- Hero ---- */
.v-hero__grid {
  display: flex;
  gap: 64px;
  align-items: center;
  flex-wrap: wrap;
}
.v-hero__col { flex: 1 1 460px; min-width: 300px; }
.v-hero .v-h1 { color: var(--ink); }
.v-hero__sub {
  margin: 0 0 32px;
  max-width: 560px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
}
.v-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.v-textlink {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}
.v-textlink:hover { border-color: var(--ink); }

/* Press card */
.v-press { flex: 0 1 380px; min-width: 300px; }
.v-press__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.v-press__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 30, 61, 0.15);
}
.v-press__img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.v-press__body { padding: 18px 20px 20px; }
.v-press__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.v-press__partner { height: 15px; width: auto; display: block; }
.v-press__kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.v-press__title {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
}
.v-press__cta { font-size: 14px; font-weight: 600; color: var(--accent); }

/* ---- Centered statement band ---- */
.v-statement {
  max-width: 840px;
  margin: 0 auto;
  padding: 76px 32px;
  text-align: center;
}
.v-statement__text {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

/* ---- Watch section ---- */
.v-watch { max-width: 1180px; margin: 0 auto; padding: 72px 32px 40px; }
.v-watch__intro {
  margin: 0 auto 40px;
  max-width: 640px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.v-watch__intro em { font-style: italic; color: var(--ink); }
.v-watch__inner { max-width: 1000px; margin: 0 auto; }
.v-wall {
  background: var(--ink);
  border-radius: 16px;
  padding: 28px 28px 22px;
  box-shadow: 0 18px 44px rgba(15, 30, 61, 0.22);
}
.v-wall__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.v-wall__headline {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.15;
  color: #fff;
}
.v-wall__live {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.v-wall__play {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--vq-blue-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.v-wall__play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent var(--vq-blue-400);
  margin-left: 2px;
}
.v-wall__livelabel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--vq-blue-400);
}
.v-wall__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--score-4); }
.v-wall__stats { display: flex; gap: 30px; }
.v-wall__stat-n {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 27px;
  color: #fff;
  line-height: 1;
}
.v-wall__stat-n small { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.v-wall__stat-l {
  margin: 3px 0 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.v-tiles {
  display: flex;
  gap: 12px;
  padding: 0 0 14px;
  overflow-x: auto;
}
.v-tile {
  position: relative;
  flex: 1 0 130px;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.v-tile__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.v-tile__handle {
  position: absolute;
  top: 6px;
  left: 8px;
  z-index: 2;
  pointer-events: none;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  max-width: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v-tile__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  pointer-events: none;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}
.v-tile__flag {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 9px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
.v-tile__pick {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(15, 30, 61, 0.45);
  transition: background 0.15s ease;
}
.v-tile__pick:hover { background: rgba(15, 30, 61, 0.15); }
.v-wall__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 2px 0 0;
}
.v-wall__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 13px;
  cursor: pointer;
}
.v-wall__hint { font-size: 12px; color: rgba(255, 255, 255, 0.6); }

/* Editorial reading panel */
.v-reading {
  margin: 16px 0 0;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
.v-reading__accent { height: 4px; transition: background 0.3s ease; }
.v-reading__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(15, 30, 61, 0.08);
}
.v-reading__who { font-size: 14px; color: var(--ink-soft); }
.v-reading__dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  transition: background 0.3s ease;
}
.v-reading__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.v-reading__handle {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
}
.v-reading__ext { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
.v-reading__body { display: flex; gap: 24px; flex-wrap: wrap; padding: 22px 20px; }
.v-reading__score {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 104px;
}
.v-reading__score-cap { font-size: 12px; color: var(--ink-muted); text-align: center; line-height: 1.3; }
.v-reading__main { flex: 1 1 340px; min-width: 280px; }
.v-reading__rationale {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.v-signals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; }
.v-signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(15, 30, 61, 0.07);
}
.v-signal__label { font-size: 14px; color: var(--ink-soft); }
.v-signal__meter { display: inline-flex; gap: 4px; flex: none; }
.v-signal__seg { width: 16px; height: 7px; border-radius: 2px; background: var(--rule); }
.v-signal__seg.is-on { background: var(--ink); }
.v-reading__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-top: 1px solid rgba(15, 30, 61, 0.08);
}
.v-reading__foot-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.v-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  padding: 5px 12px;
  border: 1px solid;
}
.v-ctrl--green { color: var(--score-4); border-color: var(--score-4); background: rgba(79, 138, 94, 0.08); }
.v-ctrl--amber { color: #b56a1f; border-color: var(--score-2); background: rgba(224, 139, 58, 0.1); }
.v-ctrl--red { color: var(--score-1); border-color: var(--score-1); background: rgba(201, 66, 58, 0.08); }

/* Vitrine score badge (circle) */
.v-scorebadge {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}
.v-scorebadge[data-score="1"] { background: var(--score-1); }
.v-scorebadge[data-score="2"] { background: var(--score-2); }
.v-scorebadge[data-score="3"] { background: var(--score-3); color: #3a2a00; }
.v-scorebadge[data-score="4"] { background: var(--score-4); }

/* ---- Prose block (problem) ---- */
.v-prose { max-width: 720px; }
.v-prose .v-lede { margin-top: 0; }

/* ---- Pillars (how) ---- */
.v-head-narrow { max-width: 640px; margin-bottom: 48px; }
.v-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.v-pillar {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v-pillar__n { font-family: var(--font-serif); font-size: 32px; color: var(--ink-muted); line-height: 1; }
.v-pillar .v-h3 { font-size: 22px; }
.v-pillar__text { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.v-pillar--dark {
  background: var(--ink);
  border-color: var(--ink);
  padding: 34px 30px;
  box-shadow: 0 10px 30px rgba(15, 30, 61, 0.18);
  transform: translateY(-6px);
}
.v-pillar--dark .v-pillar__n { color: var(--vq-blue-400); }
.v-pillar--dark .v-h3 { color: #fff; font-size: 24px; }
.v-pillar--dark .v-pillar__text { color: rgba(255, 255, 255, 0.82); }
.v-pillar__row { display: flex; align-items: center; justify-content: space-between; }
.v-pillar__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vq-blue-400);
  border: 1px solid rgba(74, 159, 212, 0.4);
  border-radius: 999px;
  padding: 5px 11px;
}

/* ---- Read-a-post centerpiece ---- */
.v-read__grid {
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr minmax(200px, 240px);
  gap: 40px;
  align-items: center;
}
.v-read__post { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.v-read__post-frame {
  width: 100%;
  max-width: 230px;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--ink);
}
.v-read__post-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.v-read__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.v-read__signals { display: flex; flex-direction: column; gap: 12px; }
.v-signalcard {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.v-signalcard__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--vq-blue-050);
  color: var(--vq-blue-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.v-signalcard__t { margin: 0 0 3px; font-weight: 600; font-size: 16px; color: var(--ink); }
.v-signalcard__d { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.v-read__note { margin: 6px 2px 0; font-size: 13px; color: var(--ink-muted); }
.v-read__rollup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.v-read__rollup-t { margin: 0 0 4px; font-family: var(--font-serif); font-size: 18px; color: var(--ink); }
.v-chip-human {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  background: var(--vq-blue-050);
  border: 1px solid var(--vq-blue-100);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--vq-blue-800);
}
.v-chip-human img { height: 15px; width: auto; }
.v-read__outro {
  margin: 48px auto 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.v-read__outro em { font-style: italic; }

/* ---- Mechanism ---- */
.v-mech__grid { display: flex; gap: 64px; align-items: center; flex-wrap: wrap; }
.v-mech__col { flex: 1 1 440px; min-width: 300px; }
.v-mech .v-h2 { color: #fff; }
.v-mech__text { margin: 0 0 20px; font-size: 18px; line-height: 1.65; color: rgba(255, 255, 255, 0.82); }
.v-mech__text em { font-style: italic; color: var(--vq-blue-400); }
.v-mech__aside { margin: 0 0 0; font-size: 16px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); }
.v-mech__aside em { font-style: italic; }
.v-spark-wrap { flex: 0 1 320px; min-width: 280px; margin: 0 auto; }
.v-spark {
  background: var(--bg-elev);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  max-width: 300px;
  margin: 0 auto;
}
.v-spark__img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; background: var(--rule); }
.v-spark__body { padding: 14px 16px 16px; }
.v-spark__by { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.v-spark__by-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.v-spark__by-brand { font-size: 14px; font-weight: 700; color: var(--ink); }
.v-spark__cert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.v-spark__cert img { height: 22px; width: auto; }
.v-spark__cert-t { margin: 0; font-size: 13px; font-weight: 600; color: var(--vq-blue-800); }
.v-spark__cert-s { margin: 0; font-size: 12px; color: var(--ink-muted); }
.v-spark__chip {
  margin-left: auto;
  min-width: 52px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: var(--score-4);
}

/* ---- Comparison table ---- */
.v-compare-head { max-width: 720px; margin-bottom: 44px; }
.v-compare-scroll { overflow-x: auto; }
.v-compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: var(--font-sans);
}
.v-compare th {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule);
}
.v-compare th.v-compare__lbl {
  width: 24%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.v-compare th.v-compare__old {
  width: 38%;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-soft);
}
.v-compare th.v-compare__vq {
  width: 38%;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--vq-blue-800);
  background: var(--vq-blue-050);
  border-bottom: 1px solid var(--vq-blue-100);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.v-compare td {
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.5;
  vertical-align: top;
  border-bottom: 1px solid var(--rule);
}
.v-compare td.v-compare__key { font-size: 14px; font-weight: 600; color: var(--ink); }
.v-compare td.v-compare__old { color: var(--ink-soft); }
.v-compare td.v-compare__vq {
  color: var(--ink);
  background: var(--vq-blue-050);
  border-bottom: 1px solid var(--vq-blue-100);
}
.v-compare tr:last-child td { border-bottom: 0; }
.v-compare tr:last-child .v-compare__vq {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.v-compare__proof { display: inline-flex; align-items: center; gap: 10px; }
.v-compare__proof img { height: 20px; width: auto; }
.v-compare__proof strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.3;
  color: var(--vq-blue-800);
}

/* ---- Domains ---- */
.v-domains {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.v-domain {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-domain__n { font-family: var(--font-serif); font-size: 15px; color: var(--vq-blue-500); }
.v-domain__t { font-family: var(--font-serif); font-size: 19px; color: var(--ink); line-height: 1.25; }

/* ---- Who ---- */
.v-who-head { max-width: 680px; margin-bottom: 44px; }
.v-who {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.v-who-card {
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v-who-card__tag {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vq-blue-700);
  background: var(--vq-blue-050);
  border: 1px solid var(--vq-blue-100);
  border-radius: 999px;
  padding: 5px 12px;
}
.v-who-card .v-h3 { font-size: 23px; }
.v-who-card__text { margin: 0; font-size: 16px; line-height: 1.6; color: var(--ink-soft); }

/* ---- Final CTA ---- */
.v-cta { background: var(--vq-gradient); }
.v-cta__inner { max-width: 900px; margin: 0 auto; padding: 96px 32px; text-align: center; }
.v-cta__title {
  margin: 0 0 32px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  text-wrap: balance;
}
.v-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #fff;
  color: var(--vq-blue-800);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.v-cta__btn:hover { background: var(--ink); color: #fff; }

/* ---- Footer ---- */
.v-foot { background: var(--bg); border-top: 1px solid var(--rule); }
.v-foot__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.v-foot__brand { display: flex; align-items: center; gap: 10px; }
.v-foot__brand img { height: 22px; width: auto; }
.v-foot__word {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 18px;
  background: var(--vq-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v-foot__place { font-size: 14px; color: var(--ink-muted); margin-left: 6px; }
.v-foot__nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.v-foot__link { font-size: 14px; color: var(--ink-soft); text-decoration: none; }
.v-foot__link:hover { color: var(--ink); }

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .v-container { padding: 64px 20px; }
  .v-nav__inner { padding: 14px 20px; }
  .v-nav__links { display: none; }
  .v-read__grid { grid-template-columns: 1fr; gap: 28px; }
  .v-pillar--dark { transform: none; }
  .v-signals { grid-template-columns: 1fr; }
}

/* Phones: brand + lang pill + demo CTA (~465px) can't fit; drop the lang
   pill (/en/ is the legacy rating page, not an EN vitrine) and compact the
   rest so the CTA stays visible instead of clipping off-screen. */
@media (max-width: 560px) {
  .v-nav__inner { gap: 12px; }
  .v-brand__mark { height: 22px; }
  .v-brand__word { font-size: 18px; }
  .v-lang { display: none; }
  .v-nav__right .v-btn { height: 38px; padding: 0 14px; font-size: 14px; }
}
