/* ─── VouchCore Site Redesign v2 ───
   Design System: styles.css
   All new content styles below Nav V2.
   Nav V2 styles remain in index.html <style> block.
   ─────────────────────────────────── */

/* ═══════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════ */
:root {
  /* Colors — Primary */
  --vc-navy:            #0A1628;
  --vc-white:           #FFFFFF;
  --vc-amber:           #F59E0B;
  --vc-seafoam:         #2DD4BF;

  /* Colors — Surfaces */
  --vc-surface:         #0F1D2F;
  --vc-surface-light:   #152238;
  --vc-border:          #1E2D42;
  --vc-border-subtle:   rgba(30, 45, 66, 0.6);

  /* Colors — Text */
  --vc-text-primary:    #FFFFFF;
  --vc-text-secondary:  #94A3B8;
  --vc-text-muted:      #475569;

  /* Colors — Accent states */
  --vc-amber-hover:     #D97706;
  --vc-amber-glow:      rgba(245, 158, 11, 0.15);
  --vc-seafoam-glow:    rgba(45, 212, 191, 0.12);

  /* Gradient — Coastal Sunset */
  --vc-gradient-sunset:  linear-gradient(135deg, #F59E0B, #FBBF24, #2DD4BF);

  /* Typography — Font stacks */
  --vc-font-wordmark:   'Inter Tight', 'Inter', sans-serif;
  --vc-font-display:    'Inter Tight', 'Inter', sans-serif;
  --vc-font-body:       'Inter', sans-serif;
  --vc-font-mono:       'IBM Plex Mono', monospace;

  /* Typography — Scale */
  --vc-text-xs:         11px;
  --vc-text-sm:         13px;
  --vc-text-base:       16px;
  --vc-text-lg:         18px;
  --vc-text-xl:         24px;
  --vc-text-2xl:        clamp(28px, 4vw, 42px);
  --vc-text-3xl:        clamp(36px, 5vw, 56px);
  --vc-text-hero:       clamp(40px, 6vw, 64px);

  /* Spacing */
  --vc-section-pad:     96px;
  --vc-content-max:     1100px;
  --vc-content-pad:     32px;

  /* Animation */
  --vc-ease:            cubic-bezier(0.4, 0, 0.2, 1);
  --vc-duration:        0.3s;
}

/* ═══════════════════════════════════
   TYPOGRAPHY — DISPLAY (Inter Tight)
   ═══════════════════════════════════ */
.vc-h1 {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--vc-text-primary);
}

.vc-h2 {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-2xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--vc-text-primary);
}

/* ═══════════════════════════════════
   TYPOGRAPHY — BODY (Inter)
   ═══════════════════════════════════ */
.vc-body {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: var(--vc-text-base);
  line-height: 1.7;
  color: var(--vc-text-secondary);
}

.vc-body-lg {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: var(--vc-text-lg);
  line-height: 1.7;
  color: var(--vc-text-secondary);
}

/* ═══════════════════════════════════
   TYPOGRAPHY — LABELS (IBM Plex Mono)
   ═══════════════════════════════════ */
.vc-label {
  font-family: var(--vc-font-mono);
  font-weight: 400;
  font-size: var(--vc-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-text-muted);
}

.vc-data {
  font-family: var(--vc-font-mono);
  font-weight: 600;
  font-size: var(--vc-text-xl);
  color: var(--vc-amber);
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════
   LAYOUT — CONTENT SECTIONS
   ═══════════════════════════════════ */
.vc-section {
  position: relative;
  z-index: 1;
  max-width: var(--vc-content-max);
  margin: 0 auto;
  padding: var(--vc-section-pad) var(--vc-content-pad);
}

.vc-section--full {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.vc-section__inner {
  max-width: var(--vc-content-max);
  margin: 0 auto;
  padding: 0 var(--vc-content-pad);
}

/* ═══════════════════════════════════
   COMPONENTS — PILL BADGE
   ═══════════════════════════════════ */
.vc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-xs);
  letter-spacing: 0.06em;
  color: var(--vc-amber);
  background: var(--vc-amber-glow);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
}

/* ═══════════════════════════════════
   COMPONENTS — BUTTONS
   ═══════════════════════════════════ */
.vc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vc-amber);
  color: var(--vc-navy);
  font-family: var(--vc-font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--vc-duration) var(--vc-ease),
              transform 0.15s var(--vc-ease);
}

.vc-btn-primary:hover {
  background: var(--vc-amber-hover);
  transform: translateY(-1px);
}

.vc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--vc-text-secondary);
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-sm);
  padding: 16px 24px;
  border: 1px solid var(--vc-border);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--vc-duration) var(--vc-ease),
              color var(--vc-duration) var(--vc-ease);
}

.vc-btn-ghost:hover {
  border-color: var(--vc-seafoam);
  color: var(--vc-seafoam);
}

/* ═══════════════════════════════════
   COMPONENTS — SECTION DIVIDER
   ═══════════════════════════════════ */
.vc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vc-border), transparent);
  max-width: var(--vc-content-max);
  margin: 0 auto;
}

/* ═══════════════════════════════════
   SECTION 1 — HERO
   ═══════════════════════════════════ */
.vc-hero {
  position: relative;
  z-index: 1;
  max-width: var(--vc-content-max);
  margin: 0 auto;
  padding: 180px var(--vc-content-pad) var(--vc-section-pad);
}

.vc-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-xs);
  letter-spacing: 0.06em;
  color: var(--vc-amber);
  background: var(--vc-amber-glow);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.vc-hero__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--vc-text-primary);
  margin-bottom: 24px;
  max-width: 780px;
}

.vc-hero__sub {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: var(--vc-text-lg);
  line-height: 1.7;
  color: var(--vc-text-secondary);
  max-width: 580px;
  margin-bottom: 48px;
}

.vc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════
   CONVICTION ANIMATION BLOCK
   ═══════════════════════════════════ */
.vc-conviction {
  margin-top: 56px;
  max-width: 520px;
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 32px);
  overflow: hidden;
}

/* Domain label */
.vc-conviction__domain {
  font-family: var(--vc-font-mono);
  font-size: clamp(13px, 1.8vw, 15px);
  color: var(--vc-text-secondary);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  word-break: break-all;
}

/* Score row */
.vc-conviction__score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* Score display — CSS counter animation via @property */
.vc-conviction__score {
  font-family: var(--vc-font-mono);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--vc-amber);
  letter-spacing: -0.02em;
}

/* Score digits — we use individual spans animated via opacity */
.vc-conviction__score-static {
  display: inline;
}

/* Animated score uses a counter-based approach */
.vc-conviction__score-value {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* We animate the score via content replacement at keyframe breakpoints */
.vc-conviction__score-value::after {
  content: "0.00";
  animation: score-count 2.5s ease-out forwards;
}

@keyframes score-count {
  0%   { content: "0.00"; }
  4%   { content: "0.05"; }
  8%   { content: "0.09"; }
  12%  { content: "0.14"; }
  16%  { content: "0.18"; }
  20%  { content: "0.22"; }
  24%  { content: "0.27"; }
  28%  { content: "0.31"; }
  32%  { content: "0.35"; }
  36%  { content: "0.40"; }
  40%  { content: "0.44"; }
  44%  { content: "0.48"; }
  48%  { content: "0.52"; }
  52%  { content: "0.56"; }
  56%  { content: "0.60"; }
  60%  { content: "0.64"; }
  64%  { content: "0.68"; }
  68%  { content: "0.72"; }
  72%  { content: "0.75"; }
  76%  { content: "0.78"; }
  80%  { content: "0.80"; }
  84%  { content: "0.82"; }
  88%  { content: "0.83"; }
  92%  { content: "0.84"; }
  96%  { content: "0.85"; }
  100% { content: "0.85"; }
}

/* Status badge — animated via opacity/visibility swaps */
.vc-conviction__badge-wrap {
  position: relative;
  height: 28px;
  display: flex;
  align-items: center;
}

.vc-conviction__badge {
  position: absolute;
  right: 0;
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  animation-fill-mode: forwards;
}

.vc-conviction__badge--scanning {
  color: var(--vc-text-secondary);
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
  animation: badge-scanning 2.5s step-end forwards;
}

.vc-conviction__badge--detected {
  color: #FBBF24;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  animation: badge-detected 2.5s step-end forwards;
}

.vc-conviction__badge--convicted {
  color: var(--vc-amber);
  background: var(--vc-amber-glow);
  border: 1px solid rgba(245, 158, 11, 0.3);
  animation: badge-convicted 2.5s step-end forwards;
}

/* Badge at 0%–58%: SCANNING visible */
@keyframes badge-scanning {
  0%   { opacity: 1; }
  59%  { opacity: 1; }
  59.01% { opacity: 0; }
  100% { opacity: 0; }
}

/* Badge at 59%–82%: THREAT DETECTED visible (score ~0.50–0.70) */
@keyframes badge-detected {
  0%    { opacity: 0; }
  58.9% { opacity: 0; }
  59%   { opacity: 1; }
  82%   { opacity: 1; }
  82.01%{ opacity: 0; }
  100%  { opacity: 0; }
}

/* Badge at 82%+: CONVICTED visible (score ~0.70+) and holds */
@keyframes badge-convicted {
  0%    { opacity: 0; }
  81.9% { opacity: 0; }
  82%   { opacity: 1; }
  100%  { opacity: 1; }
}

/* Conviction bar */
.vc-conviction__bar-track {
  height: 6px;
  background: var(--vc-border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}

.vc-conviction__bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--vc-amber), #FBBF24);
  border-radius: 3px;
  animation: bar-fill 2.5s ease-out forwards;
}

@keyframes bar-fill {
  0%   { width: 0%; }
  100% { width: 85%; }
}

/* ═══════════════════════════════════
   SECTION 2 — PAIN CAROUSEL
   ═══════════════════════════════════ */
.vc-pain {
  position: relative;
  z-index: 1;
  max-width: var(--vc-content-max);
  margin: 0 auto;
  padding: var(--vc-section-pad) var(--vc-content-pad);
}

.vc-pain__label {
  font-family: var(--vc-font-mono);
  font-weight: 400;
  font-size: var(--vc-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-text-muted);
  margin-bottom: 16px;
}

.vc-pain__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-2xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--vc-text-primary);
  margin-bottom: 48px;
}

/* Carousel viewport */
.vc-carousel {
  position: relative;
  overflow: hidden;
}

.vc-carousel__track {
  display: flex;
  transition: transform 0.5s var(--vc-ease);
}

.vc-carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* Quote card */
.vc-quote-card {
  background: var(--vc-surface);
  border-left: 3px solid var(--vc-amber);
  border-radius: 0 8px 8px 0;
  padding: clamp(24px, 3vw, 40px);
  max-width: 680px;
}

.vc-quote-card__text {
  font-family: var(--vc-font-display);
  font-weight: 600;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
  color: var(--vc-text-primary);
  margin-bottom: 24px;
}

.vc-quote-card__attr {
  font-family: var(--vc-font-mono);
  font-size: var(--vc-text-xs);
  color: var(--vc-text-muted);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* Dot indicators */
.vc-carousel__dots {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}

.vc-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vc-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--vc-duration) var(--vc-ease),
              transform 0.15s var(--vc-ease);
}

.vc-carousel__dot:hover {
  background: var(--vc-text-muted);
}

.vc-carousel__dot--active {
  background: var(--vc-amber);
  transform: scale(1.25);
}

/* ═══════════════════════════════════
   SECTION 3 — NETWORK
   ═══════════════════════════════════ */
.vc-network {
  position: relative;
  z-index: 1;
  max-width: var(--vc-content-max);
  margin: 0 auto;
  padding: var(--vc-section-pad) var(--vc-content-pad);
}

.vc-network__label {
  font-family: var(--vc-font-mono);
  font-weight: 400;
  font-size: var(--vc-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-text-muted);
  margin-bottom: 16px;
}

.vc-network__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-2xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--vc-text-primary);
  margin-bottom: 20px;
}

.vc-network__sub {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: var(--vc-text-base);
  line-height: 1.7;
  color: var(--vc-text-secondary);
  max-width: 600px;
  margin-bottom: 56px;
}

/* SVG container */
.vc-network__diagram {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 56px;
}

.vc-network__diagram svg {
  width: 100%;
  height: auto;
}

/* Network edges — fully drawn, invisible until scroll trigger */
.vc-net-line {
  stroke: rgba(245, 158, 11, 0.25);
  stroke-width: 1;
  fill: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vc-network--active .vc-net-line {
  opacity: 1;
}

/* Stagger edge fade-in with transition-delay (15 edges) */
.vc-network--active .vc-net-line:nth-child(1)  { transition-delay: 0.0s; }
.vc-network--active .vc-net-line:nth-child(2)  { transition-delay: 0.1s; }
.vc-network--active .vc-net-line:nth-child(3)  { transition-delay: 0.2s; }
.vc-network--active .vc-net-line:nth-child(4)  { transition-delay: 0.3s; }
.vc-network--active .vc-net-line:nth-child(5)  { transition-delay: 0.4s; }
.vc-network--active .vc-net-line:nth-child(6)  { transition-delay: 0.5s; }
.vc-network--active .vc-net-line:nth-child(7)  { transition-delay: 0.6s; }
.vc-network--active .vc-net-line:nth-child(8)  { transition-delay: 0.7s; }
.vc-network--active .vc-net-line:nth-child(9)  { transition-delay: 0.8s; }
.vc-network--active .vc-net-line:nth-child(10) { transition-delay: 0.9s; }
.vc-network--active .vc-net-line:nth-child(11) { transition-delay: 1.0s; }
.vc-network--active .vc-net-line:nth-child(12) { transition-delay: 1.1s; }
.vc-network--active .vc-net-line:nth-child(13) { transition-delay: 1.2s; }
.vc-network--active .vc-net-line:nth-child(14) { transition-delay: 1.3s; }
.vc-network--active .vc-net-line:nth-child(15) { transition-delay: 1.4s; }

/* Node circles */
.vc-net-node {
  fill: var(--vc-surface);
  stroke: var(--vc-amber);
  stroke-width: 1.5;
}

/* Node glow pulse — subtle amber opacity cycle, always running */
.vc-net-node {
  animation: node-glow 2s ease-in-out infinite;
}

@keyframes node-glow {
  0%   { opacity: 0.6; }
  50%  { opacity: 1.0; }
  100% { opacity: 0.6; }
}

/* Node label */
.vc-net-label {
  font-family: var(--vc-font-mono);
  font-size: 9px;
  fill: var(--vc-text-secondary);
  text-anchor: middle;
  letter-spacing: 0.04em;
}

/* Stat cards */
.vc-network__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--vc-border);
  border: 1px solid var(--vc-border);
  border-radius: 8px;
  overflow: hidden;
}

.vc-stat {
  background: var(--vc-surface);
  padding: clamp(20px, 3vw, 32px);
}

.vc-stat__value {
  font-family: var(--vc-font-mono);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--vc-amber);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.vc-stat__desc {
  font-family: var(--vc-font-body);
  font-size: 14px;
  color: var(--vc-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vc-network__stats {
    grid-template-columns: 1fr;
  }

  .vc-network__diagram {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════
   SECTION 4 — HOW IT WORKS
   ═══════════════════════════════════ */
.vc-steps {
  position: relative;
  z-index: 1;
  max-width: var(--vc-content-max);
  margin: 0 auto;
  padding: var(--vc-section-pad) var(--vc-content-pad);
}

.vc-steps__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-2xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--vc-text-primary);
  margin-bottom: 20px;
}

.vc-steps__sub {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: var(--vc-text-base);
  line-height: 1.7;
  color: var(--vc-text-secondary);
  max-width: 520px;
  margin-bottom: 48px;
}

/* Horizontal scroll track */
.vc-steps__track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--vc-border) transparent;
  padding-bottom: 8px;
}

.vc-steps__track::-webkit-scrollbar {
  height: 4px;
}

.vc-steps__track::-webkit-scrollbar-track {
  background: transparent;
}

.vc-steps__track::-webkit-scrollbar-thumb {
  background: var(--vc-border);
  border-radius: 2px;
}

/* Step card */
.vc-step {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-step__number {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--vc-amber);
  line-height: 1;
  letter-spacing: -0.02em;
}

.vc-step__label {
  font-family: var(--vc-font-display);
  font-weight: 600;
  font-size: var(--vc-text-lg);
  color: var(--vc-text-primary);
  letter-spacing: -0.01em;
}

.vc-step__desc {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: var(--vc-text-secondary);
}

@media (max-width: 768px) {
  .vc-steps__track {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 8px;
  }

  .vc-step {
    flex: none;
    width: 100%;
  }
}

/* ═══════════════════════════════════
   SECTION 5 — PROOF
   ═══════════════════════════════════ */
.vc-proof {
  position: relative;
  z-index: 1;
  max-width: var(--vc-content-max);
  margin: 0 auto;
  padding: var(--vc-section-pad) var(--vc-content-pad);
}

.vc-proof__label {
  font-family: var(--vc-font-mono);
  font-weight: 400;
  font-size: var(--vc-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-text-muted);
  margin-bottom: 16px;
}

.vc-proof__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-2xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--vc-text-primary);
  margin-bottom: 20px;
}

.vc-proof__sub {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: var(--vc-text-base);
  line-height: 1.7;
  color: var(--vc-text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
}

/* Metric cards */
.vc-proof__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--vc-border);
  border: 1px solid var(--vc-border);
  border-radius: 8px;
  overflow: hidden;
}

.vc-metric {
  background: var(--vc-surface);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc-metric__value {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--vc-amber);
  letter-spacing: -0.02em;
  line-height: 1;
}

.vc-metric__desc {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--vc-text-primary);
}

/* Free scan CTA block */
.vc-scan-cta {
  margin-top: 64px;
  background: var(--vc-surface);
  border: 1px solid var(--vc-border);
  border-radius: 12px;
  padding: clamp(32px, 4vw, 56px);
}

.vc-scan-cta__label {
  font-family: var(--vc-font-mono);
  font-weight: 400;
  font-size: var(--vc-text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vc-amber);
  margin-bottom: 16px;
}

.vc-scan-cta__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--vc-text-primary);
  margin-bottom: 16px;
}

.vc-scan-cta__sub {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: var(--vc-text-base);
  line-height: 1.7;
  color: var(--vc-text-secondary);
  max-width: 480px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .vc-proof__metrics {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════
   SECTION 6 — FINAL CTA
   ═══════════════════════════════════ */
.vc-final-cta {
  position: relative;
  z-index: 1;
  background: var(--vc-navy);
  border-top: 1px solid var(--vc-border);
  padding: var(--vc-section-pad) 0;
  text-align: center;
}

.vc-final-cta__inner {
  max-width: var(--vc-content-max);
  margin: 0 auto;
  padding: 0 var(--vc-content-pad);
}

.vc-final-cta__title {
  font-family: var(--vc-font-display);
  font-weight: 700;
  font-size: var(--vc-text-2xl);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--vc-text-primary);
  margin-bottom: 20px;
}

.vc-final-cta__sub {
  font-family: var(--vc-font-body);
  font-weight: 400;
  font-size: var(--vc-text-base);
  line-height: 1.7;
  color: var(--vc-text-secondary);
  max-width: 480px;
  margin: 0 auto 36px;
}

.vc-final-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .vc-final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-final-cta__actions .vc-btn-primary,
  .vc-final-cta__actions .vc-btn-ghost {
    text-align: center;
    justify-content: center;
  }
}

/* ═══════════════════════════════════
   ACCESSIBILITY — REDUCED MOTION
   ═══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Show final state immediately for conviction block */
  .vc-conviction__score-value::after {
    content: "0.85" !important;
  }
  .vc-conviction__badge--scanning { opacity: 0 !important; }
  .vc-conviction__badge--detected { opacity: 0 !important; }
  .vc-conviction__badge--convicted { opacity: 1 !important; }
  .vc-conviction__bar-fill { width: 85% !important; }

  /* Carousel — disable auto-advance transition */
  .vc-carousel__track {
    transition: none !important;
  }

  /* Network — show all edges and nodes immediately, no pulse */
  .vc-net-line {
    opacity: 1 !important;
    transition: none !important;
  }
  .vc-net-node {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ═══════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --vc-section-pad: 64px;
    --vc-content-pad: 20px;
  }

  .vc-hero {
    padding-top: 120px;
  }

  .vc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-hero__actions .vc-btn-primary,
  .vc-hero__actions .vc-btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .vc-conviction {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --vc-section-pad: 56px;
    --vc-content-pad: 16px;
  }

  .vc-hero {
    padding-top: 100px;
  }

  /* Score row: stack vertically on narrow screens */
  .vc-conviction__score-row {
    flex-direction: column;
    gap: 12px;
  }

  .vc-conviction__badge-wrap {
    position: relative;
    height: auto;
  }

  .vc-conviction__badge {
    position: relative;
    right: auto;
  }

  /* Quote card: reduce padding */
  .vc-quote-card {
    padding: 20px;
  }

  /* Stat cards: tighter padding */
  .vc-stat {
    padding: 20px;
  }

  .vc-metric {
    padding: 20px;
  }
}
