@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600&display=swap');

/* ─── Light (smoke) — default ────────────────────────────────── */
:root {
  --bg:          #f0f1f3;
  --bg-surface:  #f7f8f9;
  --bg-raised:   #e8eaed;
  --border:      #d4d8de;
  --text:        #1a1d21;
  --text-muted:  #5a6270;
  --text-faint:  #9aa0aa;
  --accent:      #2563eb;
  --accent-dim:  #1d4ed8;
  --nav-bg:      rgba(240, 241, 243, 0.92);
  --status-approved: #16a34a;
  --status-pending:  #b45309;
  --status-missing:  #6b7280;
  --status-rejected: #dc2626;
  --hero-dot:    rgba(90, 98, 112, 0.16);
  --hero-glow:   rgba(37, 99, 235, 0.10);
  --radius:      6px;
  --radius-lg:   10px;
}

/* ─── Dark (navy) ────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:          #0d1117;
  --bg-surface:  #161b27;
  --bg-raised:   #1e2536;
  --border:      #2a3247;
  --text:        #e2e8f0;
  --text-muted:  #7c8ea6;
  --text-faint:  #4a5568;
  --accent:      #3b82f6;
  --accent-dim:  #1d4ed8;
  --nav-bg:      rgba(13, 17, 23, 0.92);
  --status-approved: #22c55e;
  --status-pending:  #f59e0b;
  --status-missing:  #94a3b8;
  --status-rejected: #ef4444;
  --hero-dot:    rgba(124, 142, 166, 0.18);
  --hero-glow:   rgba(59, 130, 246, 0.16);
}

/* ─── Reset / Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.2s, color 0.2s;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }

/* ─── Layout ─────────────────────────────────────────────────── */
.vd-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Nav ────────────────────────────────────────────────────── */
.vd-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s;
}

.vd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.vd-wordmark {
  font-family: 'DM Mono', monospace;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.vd-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vd-nav-links a:not(.vd-btn-nav) {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.vd-nav-links a:not(.vd-btn-nav):hover { color: var(--text); }

.vd-btn-nav {
  font-size: 13px;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.vd-btn-nav:hover { background: var(--accent-dim); }

/* Theme toggle button */
.vd-theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 6px 8px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.vd-theme-toggle:hover {
  border-color: var(--text-muted);
  color: var(--text);
}
.vd-theme-toggle .icon-sun  { display: none; }
.vd-theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .vd-theme-toggle .icon-sun  { display: block; }
[data-theme="dark"] .vd-theme-toggle .icon-moon { display: none; }

.vd-mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.vd-mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: background 0.15s;
}
.vd-mobile-menu-btn:hover span { background: var(--text); }

.vd-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 12px 0 16px;
}
.vd-mobile-menu.open { display: flex; }
.vd-mobile-menu a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-muted);
}
.vd-mobile-menu a:hover { color: var(--text); }
.vd-btn-mobile {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-align: center;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.vd-hero {
  position: relative;
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}

/* Faint dotted grid, masked so it fades toward the bottom-right */
.vd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(var(--hero-dot) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(120% 120% at 0% 0%, #000 35%, transparent 75%);
          mask-image: radial-gradient(120% 120% at 0% 0%, #000 35%, transparent 75%);
}

/* Soft accent glow anchored top-right of the hero */
.vd-hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 560px;
  height: 560px;
  z-index: -1;
  background: radial-gradient(circle, var(--hero-glow), transparent 65%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .vd-hero::after { will-change: auto; }
}

.vd-hero-inner {
  max-width: 680px;
}

.vd-headline {
  font-family: 'DM Mono', monospace;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  text-wrap: balance; /* even line distribution where supported; manual <br> is the fallback */
}

.vd-subhead {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 560px;
  text-wrap: pretty; /* avoids orphans/awkward wraps; manual <br> is the fallback */
}

.vd-br-desktop { display: none; }
@media (min-width: 640px) { .vd-br-desktop { display: block; } }

.vd-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.vd-btn-primary {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background 0.15s, transform 0.1s;
}
.vd-btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}
.vd-btn-primary:active { transform: translateY(0); }

.vd-supporting {
  font-size: 13px;
  color: var(--text-faint);
}

/* ─── Workflow ───────────────────────────────────────────────── */
.vd-workflow {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

.vd-section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 40px;
}

.vd-workflow-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 72px;
}

.vd-mock-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vd-mock-card-header {
  padding: 16px 18px 14px;
  border-bottom: 1px solid var(--border);
}

.vd-mock-card-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
}

.vd-mock-campaign-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vd-mock-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.vd-badge-event {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent);
}

.vd-mock-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vd-mock-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--bg-raised);
  border-radius: 2px;
  overflow: hidden;
}

.vd-mock-progress-fill {
  height: 100%;
  background: var(--status-approved);
  border-radius: 2px;
}

.vd-mock-progress-label {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.vd-mock-vendor-list {
  padding: 4px 0;
}

.vd-mock-vendor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.vd-mock-vendor:last-child { border-bottom: none; }

.vd-mock-vendor-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.vd-mock-vendor-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vd-mock-vendor-email {
  font-size: 11px;
  color: var(--text-faint);
}

.vd-status {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.vd-status-approved { background: rgba(34, 197, 94, 0.12); color: var(--status-approved); }
.vd-status-pending  { background: rgba(245, 158, 11, 0.12); color: var(--status-pending); }
.vd-status-missing  { background: rgba(148, 163, 184, 0.1); color: var(--status-missing); }
.vd-status-rejected { background: rgba(239, 68, 68, 0.12); color: var(--status-rejected); }

.vd-mock-footer-note {
  padding: 10px 18px;
  font-size: 11px;
  color: var(--text-faint);
  background: var(--bg);
  border-top: 1px solid var(--border);
  font-style: italic;
}

.vd-workflow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-faint);
}

.vd-arrow-label {
  font-size: 11px;
  color: var(--text-faint);
  white-space: nowrap;
}

.vd-mock-vendor-side {
  background: var(--bg-surface);
}

.vd-mock-upload-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.vd-mock-org-label {
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 3px;
}

.vd-mock-campaign-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.vd-mock-upload-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vd-mock-upload-instruction {
  font-size: 13px;
  color: var(--text-muted);
}

.vd-mock-dropzone {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.vd-mock-file-hint {
  font-size: 11px;
  color: var(--text-faint);
}

.vd-mock-upload-btn {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: default;
  font-family: inherit;
}

.vd-mock-vendor-note {
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.5;
}

/* ─── 3-step flow ────────────────────────────────────────────── */
.vd-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.vd-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vd-step-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  margin-top: 2px;
}

.vd-step-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.vd-step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.vd-step-connector {
  align-self: center;
  width: 32px;
  height: 1px;
  background: var(--border);
  margin: 0 4px;
  margin-top: -24px;
}

/* ─── Who it's for ───────────────────────────────────────────── */
.vd-who {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.vd-who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vd-who-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-muted);
}
.vd-who-item svg { color: var(--text-faint); flex-shrink: 0; }

/* Linked persona cards (e.g. → use-case pages) */
.vd-who-item-link {
  transition: border-color 0.15s, color 0.15s, transform 0.1s;
}
.vd-who-item-link:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}
.vd-who-item-link:hover svg { color: var(--accent); }

/* ─── Pricing ────────────────────────────────────────────────── */
.vd-pricing {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}

.vd-pricing-framing {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: -24px;
  margin-bottom: 48px;
  max-width: 480px;
}

.vd-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.vd-price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vd-price-card-featured {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.04);
}

.vd-price-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.vd-price-amount {
  font-family: 'DM Mono', monospace;
  font-size: 48px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.vd-price-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: -8px;
}

.vd-price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vd-price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.vd-price-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-faint);
}

.vd-price-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.vd-price-tier {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
}
.vd-price-tier:last-child { border-bottom: none; }

.vd-price-tier-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  grid-column: 1;
  grid-row: 1;
}

.vd-price-tier-amount {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  grid-column: 1;
  grid-row: 2;
}
.vd-price-tier-amount span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.vd-price-tier-desc {
  font-size: 13px;
  color: var(--text-muted);
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.vd-btn-secondary {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: border-color 0.15s, color 0.15s;
  text-align: center;
}
.vd-btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ─── Trust ──────────────────────────────────────────────────── */
.vd-trust {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.vd-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.vd-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.vd-trust-list li svg { color: var(--text-faint); flex-shrink: 0; }

/* ─── Footer CTA ─────────────────────────────────────────────── */
.vd-footer-cta {
  padding: 88px 0;
}

.vd-footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.vd-footer-cta p {
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  max-width: 480px;
  line-height: 1.4;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.vd-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.vd-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vd-wordmark-footer {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-faint);
}

.vd-footer-copy {
  font-size: 13px;
  color: var(--text-faint);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .vd-workflow-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vd-workflow-arrow {
    flex-direction: row;
    justify-content: center;
  }
  .vd-workflow-arrow svg { transform: rotate(90deg); }

  .vd-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vd-step-connector {
    width: 1px;
    height: 24px;
    margin: 0 0 0 15px;
  }
}

@media (max-width: 768px) {
  .vd-nav-links { display: none; }
  .vd-mobile-menu-btn { display: flex; }
  .vd-theme-toggle { display: none; }

  .vd-hero { padding: 64px 0 56px; }

  .vd-pricing-grid { grid-template-columns: 1fr; }

  .vd-trust-list {
    flex-direction: column;
    gap: 20px;
  }

  .vd-footer-cta p { font-size: 20px; }
}

/* ─── Use-case pages (food-truck-festivals, etc.) ────────────── */

/* Breadcrumb */
.vd-breadcrumb {
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-faint);
}
.vd-breadcrumb .vd-container {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.vd-breadcrumb a { color: var(--text-muted); transition: color 0.15s; }
.vd-breadcrumb a:hover { color: var(--text); }

/* Hero eyebrow */
.vd-eyebrow {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Prose sections (problem, requirements, guides) */
.vd-prose-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.vd-prose-section.vd-prose-alt { background: var(--bg-surface); }

.vd-prose { max-width: 680px; }
.vd-prose p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.vd-prose p:last-child { margin-bottom: 0; }
.vd-prose strong { color: var(--text); font-weight: 600; }

.vd-prose-note {
  font-size: 15px !important;
  color: var(--text-faint) !important;
  border-left: 2px solid var(--border);
  padding-left: 16px;
  margin-top: 24px;
}

/* Checklist (what to require) */
.vd-checklist {
  margin: 8px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vd-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}
.vd-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  /* white check mark */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
  /* fallback for no-mask browsers handled by the solid dot above */
}
@supports not ((-webkit-mask: url('')) or (mask: url(''))) {
  .vd-checklist li::before { background: var(--accent); }
}

/* FAQ */
.vd-faq {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.vd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
}
.vd-faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.vd-faq-item p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .vd-prose-section { padding: 48px 0; }
  .vd-faq { padding: 48px 0; }
  .vd-prose p { font-size: 16px; }
}

/* ─── Guide pages ────────────────────────────────────────────── */

/* Reading time / date meta line below hero headline */
.vd-guide-meta {
  font-size: 13px;
  color: var(--text-faint);
  display: flex;
  gap: 16px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 24px;
}

/* H2 / H3 headings inside .vd-prose sections */
.vd-prose-h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  margin-top: 40px;
  line-height: 1.3;
}
.vd-prose-h2:first-child { margin-top: 0; }

.vd-prose-h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  margin-top: 28px;
}
.vd-prose-h3:first-child { margin-top: 0; }

/* Links inside .vd-prose-note callouts */
.vd-prose-note a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.vd-prose-note a:hover {
  color: var(--text);
  text-decoration-color: var(--text-muted);
}

/* ─── Footer link group ──────────────────────────────────────── */
.vd-footer-links {
  display: flex;
  gap: 20px;
}
.vd-footer-links a {
  font-size: 13px;
  color: var(--text-faint);
  transition: color 0.15s;
}
.vd-footer-links a:hover { color: var(--text); }

/* ─── Legal pages (privacy, terms) ───────────────────────────── */
.vd-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
  transition: color 0.15s, text-decoration-color 0.15s;
}
.vd-legal a:hover {
  color: var(--text);
  text-decoration-color: var(--text-muted);
}

.vd-legal-list {
  margin: 8px 0 24px;
  padding-left: 20px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vd-legal-list li {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}
.vd-legal-list li::marker { color: var(--text-faint); }

/* Numbered ACORD field walkthrough list */
.vd-coi-field-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0;
}

.vd-coi-field {
  display: grid;
  grid-template-columns: 40px 1fr;
  border-bottom: 1px solid var(--border);
  padding: 18px;
  background: var(--bg-surface);
}
.vd-coi-field:nth-child(even) { background: var(--bg); }
.vd-coi-field:last-child { border-bottom: none; }

.vd-coi-field-num {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  padding-top: 2px;
}

.vd-coi-field-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vd-coi-field-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.vd-coi-field-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Comparison table (certificate holder vs additional insured) */
.vd-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.vd-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.vd-compare-table thead th {
  text-align: left;
  padding: 12px 16px;
  background: var(--bg-raised);
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.vd-compare-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.6;
}

.vd-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.vd-compare-table tbody tr:nth-child(even) td {
  background: var(--bg-surface);
}

.vd-compare-table tbody td:first-child {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .vd-compare-table { min-width: 480px; }
}

/* Mid-content product nudge card */
.vd-guide-cta-inline {
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  background: rgba(37, 99, 235, 0.04);
  padding: 24px 28px;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
}

.vd-guide-cta-inline p {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0 !important;
}

.vd-guide-cta-inline .vd-supporting {
  margin-top: 0;
}
