/* ============================================
   pages.css — Styles for standalone pages
   ============================================ */

/* === Legal Pages — force text visibility over Elementor === */
.vd-legal-body,
.vd-legal-body .elementor,
.vd-legal-body .elementor-widget-container,
.vd-legal-body .elementor-text-editor,
.vd-legal-body .elementor-heading-title,
.vd-legal-body p,
.vd-legal-body li,
.vd-legal-body span,
.vd-legal-body h1, .vd-legal-body h2, .vd-legal-body h3, .vd-legal-body h4 {
  color: var(--vd-text) !important;
}

.vd-legal-body .elementor-section,
.vd-legal-body .elementor-container,
.vd-legal-body .elementor-column,
.vd-legal-body .elementor-widget-wrap,
.vd-legal-body .elementor-element {
  background: transparent !important;
}

.vd-legal-page,
.vd-legal-page .vd-section,
.vd-legal-page .vd-section[data-anim] {
  opacity: 1 !important;
  transform: none !important;
}

/* === Blog Pagination === */
.vd-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--vd-space-section);
  flex-wrap: wrap;
}

.vd-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
  background: var(--vd-card);
  color: var(--vd-text-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.vd-blog-pagination .page-numbers:hover {
  border-color: var(--vd-primary-border);
  color: var(--vd-text);
}

.vd-blog-pagination .page-numbers.current {
  background: var(--vd-primary);
  border-color: var(--vd-primary);
  color: #fff;
}

.vd-blog-pagination .page-numbers.dots {
  border: none;
  background: none;
  color: var(--vd-text-faint);
  min-width: auto;
  padding: 0 4px;
}

.vd-blog-pagination .page-numbers.prev,
.vd-blog-pagination .page-numbers.next {
  padding: 0 24px;
  height: 40px;
  color: var(--vd-primary);
  border-color: var(--vd-primary-border);
  white-space: nowrap;
}

.vd-blog-pagination .page-numbers.prev:hover,
.vd-blog-pagination .page-numbers.next:hover {
  background: var(--vd-primary);
  color: #fff;
}

/* Global overflow protection — mobile only (desktop needs sticky to work) */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }
}

/* === Screen-reader only utility === */
.vd-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Mobile input-link stack === */
@media (max-width: 640px) {
  .vd-input-link,
  .vd-input-link.vd-input-link-strong,
  .vd-hero .vd-input-link,
  .vd-cta-section .vd-input-link {
    flex-direction: column !important;
    padding: var(--vd-space-inner) !important;
    gap: var(--vd-space-inner) !important;
  }

  .vd-input-link input {
    width: 100% !important;
    padding: var(--vd-space-tight) !important;
    text-align: center;
    border: 1px solid var(--vd-stroke) !important;
    border-radius: var(--vd-radius-btn) !important;
    background: var(--vd-bg) !important;
  }

  .vd-input-link .vd-btn-primary {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: var(--vd-space-tight) var(--vd-space-comp) !important;
  }

  .vd-input-link > svg:first-child {
    display: none !important;
  }
}

/* === Page spacing (navbar offset + footer gap) === */
.vd-page-main {
  padding-top: 100px;
}

@media (min-width: 768px) {
  .vd-page-main {
    padding-top: 140px;
  }
}

.vd-page-main.has-no-cta {
  padding-bottom: var(--vd-space-section);
}

/* Primeira seção dentro do main não precisa de padding-top extra */
.vd-page-main > section:first-child,
.vd-page-main > .vd-section:first-child {
  padding-top: 0;
}

/* === Pricing Calculator === */
.vd-calc-box {
  margin-top: var(--vd-space-card);
  padding: 20px;
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
}

@media (max-width: 380px) {
  .vd-calc-box {
    padding: var(--vd-space-comp);
  }
}

@media (min-width: 768px) {
  .vd-calc-box {
    padding: var(--vd-space-card);
  }
}

/* Inputs row */
.vd-calc-inputs-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-comp);
}

@media (min-width: 480px) {
  .vd-calc-inputs-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--vd-space-comp) var(--vd-space-card-inner);
  }
}

@media (min-width: 768px) {
  .vd-calc-inputs-row {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vd-space-card-inner);
    align-items: end;
  }
}

.vd-calc-input-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--vd-space-inner);
}

.vd-calc-q-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Number input with +/- */
.vd-calc-number-input {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--vd-radius-input);
  overflow: hidden;
  background: var(--vd-bg);
  height: 42px;
}

html.light .vd-calc-number-input {
  border-color: var(--vd-stroke);
  background: #fff;
}

.vd-calc-number-input span {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--vd-text);
  font-family: 'JetBrains Mono', monospace;
}

.vd-calc-minus,
.vd-calc-plus {
  width: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--vd-text);
  background: transparent;
  cursor: pointer;
  transition: color 0.15s;
  border: none;
  font-family: inherit;
}

.vd-calc-minus:hover,
.vd-calc-plus:hover {
  color: var(--vd-primary);
}

/* Custom dropdown */
.vd-calc-dropdown {
  position: relative;
}

.vd-calc-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 42px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--vd-text);
  background: var(--vd-bg);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--vd-radius-input);
  cursor: pointer;
  transition: border-color 0.15s;
}

html.light .vd-calc-dropdown-btn {
  background: #fff;
  border-color: var(--vd-stroke);
}

.vd-calc-dropdown-btn svg {
  color: var(--vd-text-faint);
  transition: transform 0.2s;
}

.vd-calc-dropdown.is-open .vd-calc-dropdown-btn {
  border-color: var(--vd-primary);
}

.vd-calc-dropdown.is-open .vd-calc-dropdown-btn svg {
  transform: rotate(180deg);
}

.vd-calc-dropdown-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #111118;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--vd-radius-btn);
  padding: var(--vd-space-micro);
  list-style: none;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  translate: 0 -4px;
  transition: opacity 0.15s, visibility 0.15s, translate 0.15s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

html.light .vd-calc-dropdown-list {
  background: #fff;
  border-color: var(--vd-stroke);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.vd-calc-dropdown.is-open .vd-calc-dropdown-list {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.vd-calc-dropdown-list li {
  padding: var(--vd-space-inner) var(--vd-space-tight);
  font-size: 14px;
  font-weight: 500;
  color: #ededef;
  border-radius: var(--vd-radius-tag);
  cursor: pointer;
  transition: background 0.1s;
}

html.light .vd-calc-dropdown-list li {
  color: #1a1a2e;
}

.vd-calc-dropdown-list li:hover {
  background: rgba(255,255,255,0.06);
}

html.light .vd-calc-dropdown-list li:hover {
  background: rgba(0,0,0,0.04);
}

.vd-calc-dropdown-list li.is-active {
  color: var(--vd-primary);
  font-weight: 600;
}

/* Platform icons */
.vd-calc-platforms {
  display: flex;
  gap: var(--vd-space-inner);
  align-items: center;
  height: 42px;
}

.vd-calc-platform {
  width: 42px;
  height: 42px;
  border-radius: var(--vd-radius-input);
  border: 1px solid rgba(255,255,255,0.15);
  background: var(--vd-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-text-faint);
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0.4;
}

html.light .vd-calc-platform {
  background: #fff;
  border-color: var(--vd-stroke);
}

.vd-calc-platform:hover {
  opacity: 0.7;
  color: var(--vd-text);
}

.vd-calc-platform.is-active {
  border-color: #22c55e;
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.08);
}

/* Result bar */
.vd-calc-result-bar {
  margin-top: var(--vd-space-card-inner);
  padding-top: var(--vd-space-card-inner);
  border-top: 1px solid var(--vd-stroke);
  display: flex;
  align-items: center;
  gap: var(--vd-space-card);
  flex-wrap: wrap;
}

/* Plan recommendation */
.vd-calc-rec {
  flex-shrink: 0;
}

.vd-calc-rec-label {
  display: block;
  font-size: 12px;
  color: var(--vd-text-muted);
  margin-bottom: var(--vd-space-micro);
}

.vd-calc-rec-plan {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--vd-primary);
  letter-spacing: -0.5px;
}

/* Stats inline */
.vd-calc-rec-stats {
  display: flex;
  align-items: center;
  gap: var(--vd-space-comp);
  flex: 1;
}

.vd-calc-rec-stat {
  text-align: center;
}

.vd-calc-rec-stat-val {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--vd-text);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}

.vd-calc-rec-stat-lbl {
  display: block;
  font-size: 12px;
  color: var(--vd-text-muted);
  margin-top: var(--vd-space-micro);
}

.vd-calc-rec-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

html.light .vd-calc-rec-divider {
  background: rgba(0,0,0,0.1);
}

/* CTA at end */
.vd-calc-result-bar > .vd-btn {
  flex-shrink: 0;
  margin-left: auto;
}

@media (max-width: 767px) {
  .vd-calc-result-bar {
    flex-direction: column;
    align-items: stretch;
    gap: var(--vd-space-comp);
  }

  .vd-calc-rec-stats {
    justify-content: space-between;
    gap: var(--vd-space-inner);
  }

  .vd-calc-rec-stat-val {
    font-size: 16px;
  }

  .vd-calc-rec-divider {
    height: 24px;
  }

  .vd-calc-result-bar > .vd-btn {
    margin-left: 0;
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .vd-calc-rec-plan {
    font-size: 20px;
  }

  .vd-calc-answer {
    padding: var(--vd-space-tight);
  }

  .vd-calc-rec-stat-lbl {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .vd-calc-rec-stats {
    flex-wrap: wrap;
    gap: var(--vd-space-micro) var(--vd-space-tight);
  }

  .vd-calc-rec-divider {
    display: none;
  }

  .vd-calc-rec-stat {
    min-width: 60px;
  }
}

/* --- Calculator Metrics Grid V2 --- */
.vd-calc-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vd-space-tight);
  width: 100%;
}

@media (min-width: 768px) {
  .vd-calc-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vd-calc-metric {
  padding: var(--vd-space-comp);
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-inner);
}

html.light .vd-calc-metric {
  background: var(--vd-bg);
}

.vd-calc-metric-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vd-calc-metric-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-muted);
  letter-spacing: 0.2px;
}

.vd-calc-metric-val {
  font-size: 28px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--vd-text);
  letter-spacing: -1px;
  line-height: 1;
}

.vd-calc-metric-sub {
  font-size: 12px;
  color: var(--vd-text-faint);
  line-height: 1.3;
}

/* Tooltip */
.vd-calc-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vd-stroke);
  color: var(--vd-text-muted);
  cursor: help;
  margin-left: auto;
  flex-shrink: 0;
}

.vd-calc-tooltip svg {
  display: none;
}

.vd-calc-tooltip::before {
  content: '?';
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.vd-calc-tooltip-text {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  padding: 10px 12px;
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-btn);
  box-shadow: var(--vd-shadow-md);
  font-size: 12px;
  line-height: 1.5;
  color: var(--vd-text-muted);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  pointer-events: none;
  z-index: 10;
}

.vd-calc-tooltip:hover .vd-calc-tooltip-text,
.vd-calc-tooltip:focus .vd-calc-tooltip-text {
  opacity: 1;
  visibility: visible;
}

/* Result bar layout override for V2 */
.vd-calc-result-bar {
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 640px) {
  .vd-calc-metrics {
    grid-template-columns: 1fr;
  }

  .vd-calc-metric-val {
    font-size: 24px;
  }
}

/* Slider */
.vd-calc-slider-row {
  display: flex;
  align-items: center;
  gap: var(--vd-space-tight);
}

.vd-calc-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 4px;
  border-radius: var(--vd-radius-tag);
  background: var(--vd-stroke);
  outline: none;
}

.vd-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vd-primary);
  cursor: pointer;
  border: 2px solid var(--vd-surface);
  box-shadow: 0 0 0 1px var(--vd-primary);
}

.vd-calc-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vd-primary);
  cursor: pointer;
  border: 2px solid var(--vd-surface);
  box-shadow: 0 0 0 1px var(--vd-primary);
}

.vd-calc-slider-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--vd-primary);
  min-width: 24px;
  text-align: center;
}

/* Multi-select options */
.vd-calc-options-multi .vd-calc-opt.is-active {
  background: var(--vd-primary-subtle);
  border-color: var(--vd-primary);
  color: var(--vd-primary);
}

.vd-calc-bar-pct {
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
  min-width: 32px;
  text-align: right;
}

/* Toggle options */
.vd-calc-options {
  display: flex;
  gap: var(--vd-space-inner);
  flex-wrap: wrap;
}

.vd-calc-opt {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vd-text-muted);
  background: transparent;
  border: 1px solid var(--vd-stroke);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.15s;
}

.vd-calc-opt:hover {
  border-color: var(--vd-text-faint);
  color: var(--vd-text);
}

.vd-calc-opt.is-active {
  background: var(--vd-primary);
  border-color: var(--vd-primary);
  color: #fff;
}

/* Result answer — appears below questions */
.vd-calc-answer {
  margin-top: var(--vd-space-card-inner);
  padding: var(--vd-space-card-inner);
  background: var(--vd-bg);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--vd-radius-card);
  overflow: hidden;
}

@media (max-width: 639px) {
  .vd-calc-answer {
    padding: var(--vd-space-comp);
  }
}

html.light .vd-calc-answer {
  background: #f5f5f5;
  border-color: var(--vd-stroke);
}

.vd-calc-answer-inner {
  display: flex;
  align-items: center;
  gap: var(--vd-space-card);
  flex-wrap: wrap;
}

.vd-calc-answer-plan {
  flex-shrink: 0;
}

.vd-calc-result-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--vd-text-muted);
  margin-bottom: var(--vd-space-micro);
}

.vd-calc-result-plan {
  font-size: 28px;
  font-weight: 700;
  color: var(--vd-primary);
  letter-spacing: -0.5px;
}

.vd-calc-result-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  white-space: nowrap;
}

.vd-calc-result-badge[data-level="comfortable"] { background: rgba(34,197,94,0.12); color: #22c55e; }
.vd-calc-result-badge[data-level="perfect"] { background: var(--vd-primary-subtle); color: var(--vd-primary); }
.vd-calc-result-badge[data-level="tight"] { background: rgba(239,68,68,0.12); color: #ef4444; }

/* Stats row */
.vd-calc-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vd-space-card-inner);
  align-items: flex-end;
}

.vd-calc-stat {
  display: flex;
  flex-direction: column;
}

.vd-calc-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--vd-text);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}

.vd-calc-stat-label {
  font-size: 12px;
  color: var(--vd-text-muted);
  margin-top: var(--vd-space-micro);
}

/* Usage bar */
.vd-calc-bar-wrap {
  display: flex;
  align-items: center;
  gap: var(--vd-space-tight);
}

.vd-calc-bar {
  flex: 1;
  height: 8px;
  background: var(--vd-stroke);
  border-radius: var(--vd-radius-tag);
  overflow: hidden;
}

.vd-calc-bar-fill {
  height: 100%;
  background: var(--vd-primary);
  border-radius: var(--vd-radius-tag);
  transition: width 0.4s ease;
}

.vd-calc-bar-fill[data-level="comfortable"] { background: #22c55e; }
.vd-calc-bar-fill[data-level="perfect"] { background: var(--vd-primary); }
.vd-calc-bar-fill[data-level="tight"] { background: #ef4444; }

.vd-calc-bar-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--vd-text-muted);
  white-space: nowrap;
}

/* === Pricing Page — Comparison Table === */
.vd-compare-section {
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  background-color: var(--vd-bg);
}

/* Scroll wrapper for comparison table */
.vd-compare-scroll {
  /* no extra scroll — handled by section */
}

@media (max-width: 767px) {
  .vd-compare-section {
    border-radius: var(--vd-radius-btn);
  }

  .vd-compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .vd-compare-table {
    min-width: 550px;
  }

  .vd-compare-table thead th {
    position: static !important;
    box-shadow: none !important;
    padding: var(--vd-space-tight) var(--vd-space-inner) !important;
    font-size: 13px !important;
    vertical-align: bottom !important;
    top: auto !important;
    background-color: #111118 !important;
  }

  html.light .vd-compare-table thead th {
    background-color: #ececec !important;
  }

  .vd-compare-table thead th:first-child {
    min-width: 0 !important;
    max-width: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
    line-height: 0 !important;
    font-size: 0 !important;
  }

  .vd-compare-table tbody td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .vd-compare-table tbody td:first-child {
    min-width: 120px;
    font-size: 13px;
  }

  .vd-compare-th-badge {
    font-size: 12px;
    padding: 2px 6px;
    margin-bottom: var(--vd-space-micro);
  }

  .vd-compare-th-name {
    font-size: 13px;
  }

  .vd-compare-th-price {
    font-size: 12px;
  }

  .vd-compare-group td {
    padding: var(--vd-space-comp) var(--vd-space-inner) var(--vd-space-inner);
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .vd-compare-check {
    width: 20px;
    height: 20px;
  }

  .vd-compare-check svg {
    width: 12px;
    height: 12px;
  }
}

.vd-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  min-width: 700px;
}

/* --- Sticky Header --- */
.vd-compare-table thead th {
  padding: 28px 16px 24px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--vd-text);
  background-color: #0d0d15;
  vertical-align: bottom;
  position: sticky;
  top: 61px;
  z-index: 10;
  box-shadow: inset 0 -1px 0 0 rgba(255,255,255,0.12);
}

html.light .vd-compare-table thead th {
  background-color: #f2f2f2;
  box-shadow: inset 0 -1px 0 0 rgba(0,0,0,0.12);
}

.vd-compare-table thead th.is-featured {
  background-color: #14100a;
}

html.light .vd-compare-table thead th.is-featured {
  background-color: #fff3eb;
}

.vd-compare-table thead th:first-child {
  text-align: left;
  min-width: 240px;
  color: var(--vd-text-faint);
  font-size: 13px;
  font-weight: 500;
}

/* Plan name */
.vd-compare-th-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--vd-text);
  letter-spacing: -0.3px;
  margin-bottom: var(--vd-space-micro);
}

.vd-compare-th-price {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--vd-text-muted);
}

.vd-compare-th-btn {
  display: block;
  margin-top: var(--vd-space-inner);
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 12px;
  padding: 6px 12px;
}

.is-featured .vd-compare-th-name {
  color: var(--vd-primary);
}

/* Popular badge */
.vd-compare-th-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: var(--vd-primary);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: var(--vd-space-inner);
}

/* --- Category group rows --- */
.vd-compare-group td {
  padding: var(--vd-space-card-inner) var(--vd-space-comp) var(--vd-space-tight);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--vd-text);
  border-bottom: 2px solid var(--vd-stroke);
  border-top: 1px solid var(--vd-stroke);
  background-color: var(--vd-surface);
}

.vd-compare-group td:first-child {
  color: var(--vd-text);
  display: flex;
  align-items: center;
  gap: var(--vd-space-inner);
}

.vd-compare-group td:first-child::before {
  content: '';
  width: 3px;
  height: 18px;
  background: var(--vd-primary);
  border-radius: 2px;
  flex-shrink: 0;
  border-radius: 2px;
}

.vd-compare-group td.is-featured {
  background-color: var(--vd-surface);
}

/* --- Feature rows --- */
.vd-compare-table tbody tr:not(.vd-compare-group) td {
  padding: var(--vd-space-comp);
  text-align: center;
  color: var(--vd-text-muted);
  border-bottom: 1px solid var(--vd-stroke);
  font-size: 14px;
  line-height: 1.4;
  transition: background-color 0.15s ease;
}

.vd-compare-table tbody tr:not(.vd-compare-group) td:first-child {
  text-align: left;
  color: var(--vd-text);
  font-weight: 500;
}

/* Featured column highlight */
.vd-compare-table tbody tr:not(.vd-compare-group) td.is-featured {
  background-color: #110d08;
}

.vd-compare-table tbody tr:not(.vd-compare-group):nth-child(even) td.is-featured {
  background-color: #14100a;
}

html.light .vd-compare-table tbody tr:not(.vd-compare-group) td.is-featured {
  background-color: #fff8f2;
}

html.light .vd-compare-table tbody tr:not(.vd-compare-group):nth-child(even) td.is-featured {
  background-color: #fff3eb;
}

/* Row hover */
.vd-compare-table tbody tr:not(.vd-compare-group):hover td {
  background-color: rgba(255,255,255,0.03);
}

.vd-compare-table tbody tr:not(.vd-compare-group):hover td.is-featured {
  background-color: #1a1209;
}

html.light .vd-compare-table tbody tr:not(.vd-compare-group):hover td {
  background-color: rgba(0,0,0,0.02);
}

html.light .vd-compare-table tbody tr:not(.vd-compare-group):hover td.is-featured {
  background-color: #ffedd9;
}

/* Last row — no bottom border */
.vd-compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* --- Checkmark icon --- */
.vd-compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(34,197,94,0.12);
  color: #22c55e;
  transition: transform 0.15s;
}

.vd-compare-table tbody tr:hover .vd-compare-check {
  transform: scale(1.1);
}

.vd-compare-check svg {
  width: 14px;
  height: 14px;
}

/* --- Dash (not available) --- */
.vd-compare-dash {
  color: var(--vd-text-muted);
  font-size: 18px;
  opacity: 0.7;
}

/* --- Clock/Soon icon --- */
.vd-compare-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(150,150,150,0.12);
  color: var(--vd-text-muted);
}

.vd-compare-soon svg {
  width: 14px;
  height: 14px;
}

/* --- Text values in cells --- */
.vd-compare-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
}

/* Featured column values bold */
td.is-featured .vd-compare-value {
  color: var(--vd-text);
}

/* (sticky first column now defined in the mobile section above) */

/* Light mode adjustments */
html.light .vd-compare-th-badge {
  background-color: var(--vd-primary);
  color: #fff;
}

/* === Pricing Page — Hero spacing === */
.vd-pricing-hero {
  text-align: center;
  padding-top: var(--vd-space-section);
  padding-bottom: 8px;
}

.vd-pricing-hero .vd-h1 {
  margin-bottom: var(--vd-space-tight);
}

.vd-pricing-hero .vd-body {
  color: var(--vd-text-muted);
  max-width: 560px;
  margin: 0 auto 20px;
}

.vd-pricing-hero .vd-pricing-toggle {
  margin-top: 0;
}

.vd-pricing-discount-note {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--vd-primary);
}

/* === Pricing Page — Annual Savings Badge === */
.vd-pricing-save {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--vd-primary);
  background-color: var(--vd-primary-subtle);
  padding: 3px 10px;
  border-radius: var(--vd-radius-pill);
  margin-left: var(--vd-space-inner);
  vertical-align: middle;
}

/* When inside active toggle button (white on dark bg) */
.vd-pricing-toggle button.is-active .vd-pricing-save {
  color: var(--vd-primary);
  background: rgba(255,255,255,0.9);
}

/* === FAQ Section in Pages === */
.vd-faq-container {
  max-width: var(--vd-container-narrow);
}

/* ============================================
   Page Hero (internal pages)
   ============================================ */
.vd-page-hero.vd-section {
  padding-top: 0;
  padding-bottom: var(--vd-space-card);
  text-align: center;
}
.vd-page-hero .vd-container {
  max-width: var(--vd-container-secondary);
}
.vd-page-hero h1 {
  margin-bottom: var(--vd-space-comp);
}
.vd-page-hero p {
  color: var(--vd-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .vd-page-hero.vd-section {
    padding-bottom: var(--vd-space-container);
  }
}

/* ============================================
   Legal Pages
   ============================================ */
.vd-legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--vd-space-card-inner);
}

.vd-legal-header {
  margin-bottom: var(--vd-space-container);
  padding-bottom: var(--vd-space-card-inner);
  border-bottom: 1px solid var(--vd-stroke);
}
.vd-legal-header h1 {
  margin-bottom: var(--vd-space-inner);
}
.vd-legal-header p {
  color: var(--vd-text-muted);
  font-size: 14px;
}

.vd-legal-body {
  line-height: 1.8;
  color: var(--vd-text);
  overflow-wrap: break-word;
  word-break: break-word;
}
.vd-legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-top: var(--vd-space-container);
  margin-bottom: var(--vd-space-comp);
  color: var(--vd-text);
}
.vd-legal-body h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
  margin-top: var(--vd-space-card);
  margin-bottom: var(--vd-space-tight);
  color: var(--vd-text);
}
.vd-legal-body p {
  margin-bottom: var(--vd-space-comp);
  color: var(--vd-text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.vd-legal-body ul,
.vd-legal-body ol {
  margin-bottom: var(--vd-space-comp);
  padding-left: var(--vd-space-card-inner);
  color: var(--vd-text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.vd-legal-body ul {
  list-style: disc;
}
.vd-legal-body ol {
  list-style: decimal;
}
.vd-legal-body li {
  margin-bottom: var(--vd-space-inner);
}
.vd-legal-body a {
  color: var(--vd-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vd-legal-body a:hover {
  color: var(--vd-primary-hover);
}
.vd-legal-body strong {
  color: var(--vd-text);
  font-weight: 600;
}

/* ============================================
   Blog Listing
   ============================================ */
.vd-blog-tags {
  display: flex;
  gap: var(--vd-space-inner);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--vd-space-inner);
  margin-bottom: var(--vd-space-card);
  scrollbar-width: none;
}
.vd-blog-tags::-webkit-scrollbar {
  display: none;
}

.vd-blog-tag {
  display: inline-flex;
  align-items: center;
  padding: var(--vd-space-inner) var(--vd-space-comp);
  border-radius: var(--vd-radius-pill);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  background-color: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  color: var(--vd-text-muted);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.vd-blog-tag:hover {
  border-color: var(--vd-text-muted);
  color: var(--vd-text);
}
.vd-blog-tag.is-active {
  background-color: var(--vd-primary);
  border-color: var(--vd-primary);
  color: #fff;
}

/* Blog tag list row */
.vd-blog-tags-list {
  display: flex;
  gap: var(--vd-space-inner);
  flex-wrap: wrap;
}

/* Blog hero — featured post with image overlay */
.vd-blog-hero {
  display: block;
  position: relative;
  border-radius: var(--vd-radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 21 / 9;
}

.vd-blog-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vd-blog-hero:hover .vd-blog-hero-bg {
  transform: scale(1.03);
}

.vd-blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.vd-blog-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: var(--vd-space-card);
}

.vd-blog-hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--vd-primary);
  padding: 3px 10px;
  border-radius: var(--vd-radius-tag);
}

.vd-blog-hero-meta {
  display: flex;
  gap: var(--vd-space-comp);
  margin-top: var(--vd-space-tight);
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

@media (min-width: 768px) {
  .vd-blog-hero-content {
    padding: var(--vd-space-container);
  }
}

@media (max-width: 640px) {
  .vd-blog-hero {
    aspect-ratio: 16 / 10;
  }

  .vd-blog-hero-content .vd-h2 {
    font-size: 22px;
  }

  .vd-blog-hero-content {
    padding: var(--vd-space-card-inner);
  }
}

/* Blog filters — search + tags */
.vd-blog-filters {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-comp);
}

@media (min-width: 768px) {
  .vd-blog-filters {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--vd-space-card-inner);
  }
}

.vd-blog-search {
  display: flex;
  align-items: center;
  gap: var(--vd-space-inner);
  padding: 10px var(--vd-space-comp);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-input);
  transition: border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
  width: 100%;
  max-width: none;
  color: var(--vd-text-muted);
}

@media (min-width: 768px) {
  .vd-blog-search {
    max-width: 320px;
  }
}

.vd-blog-search:focus-within {
  border-color: var(--vd-primary);
  color: var(--vd-text);
  box-shadow: 0 0 0 3px var(--vd-primary-subtle);
}

.vd-blog-search-input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--vd-text);
  outline: none;
  width: 100%;
}

.vd-blog-search-input::placeholder {
  color: var(--vd-text-muted);
}

/* Blog featured (legacy, kept for index.html blog section) */
.vd-blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
  background-color: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  overflow: hidden;
  margin-bottom: var(--vd-space-container);
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.vd-blog-featured:hover {
  box-shadow: var(--vd-shadow-md);
  border-color: var(--vd-primary-border);
}

@media (min-width: 768px) {
  .vd-blog-featured {
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
  }
}

.vd-blog-featured .vd-blog-card-img {
  aspect-ratio: 16 / 9;
  border-radius: 0;
}
.vd-blog-featured .vd-blog-card-body {
  padding: var(--vd-space-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vd-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
}
@media (min-width: 640px) {
  .vd-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .vd-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vd-blog-card {
  background-color: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

html.light .vd-blog-card {
  box-shadow: var(--vd-shadow-sm);
}

.vd-blog-card:hover {
  box-shadow: var(--vd-shadow-md);
  border-color: var(--vd-primary-border);
  transform: translateY(-3px);
}

.vd-blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--vd-surface);
  overflow: hidden;
}
.vd-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.vd-blog-card:hover .vd-blog-card-img img {
  transform: scale(1.03);
}

.vd-blog-card-body {
  padding: var(--vd-space-card-inner);
}
.vd-blog-card-body .vd-tag {
  margin-bottom: var(--vd-space-tight);
}
.vd-blog-card-body h3 {
  margin-bottom: var(--vd-space-inner);
}
.vd-blog-card-body p {
  color: var(--vd-text-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: var(--vd-space-comp);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vd-blog-meta {
  display: flex;
  align-items: center;
  gap: var(--vd-space-inner);
  font-size: 13px;
  color: var(--vd-text-muted);
}
.vd-blog-meta img {
  width: 24px;
  height: 24px;
  border-radius: var(--vd-radius-pill);
  object-fit: cover;
}
.vd-blog-meta span {
  color: var(--vd-text-faint);
}

.vd-blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vd-space-inner);
  margin-top: var(--vd-space-container);
}
.vd-blog-pagination a,
.vd-blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--vd-radius-btn);
  font-size: 14px;
  font-weight: 500;
  color: var(--vd-text-muted);
  border: 1px solid var(--vd-stroke);
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.vd-blog-pagination a:hover {
  border-color: var(--vd-text-muted);
  color: var(--vd-text);
}
.vd-blog-pagination .is-active {
  background-color: var(--vd-primary);
  border-color: var(--vd-primary);
  color: #fff;
}

/* Pagination page buttons */
.vd-blog-pagination-pages {
  display: flex;
  align-items: center;
  gap: var(--vd-space-inner);
}
.vd-blog-pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--vd-radius-btn);
  font-size: 14px;
  font-weight: 500;
  color: var(--vd-text-muted);
  border: 1px solid var(--vd-stroke);
  background: none;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.vd-blog-pagination-page:hover {
  border-color: var(--vd-text-muted);
  color: var(--vd-text);
}
.vd-blog-pagination-page.is-active {
  background-color: var(--vd-primary);
  border-color: var(--vd-primary);
  color: #fff;
}

/* Blog hero layout — featured + sidebar */
.vd-blog-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-comp);
}

@media (min-width: 768px) {
  .vd-blog-hero-layout {
    grid-template-columns: 1.6fr 1fr;
    min-height: 420px;
  }

  .vd-blog-hero {
    aspect-ratio: auto;
  }
}

/* Side cards column */
.vd-blog-hero-side {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-tight);
}

.vd-blog-hero-side-card {
  display: flex;
  gap: var(--vd-space-tight);
  padding: var(--vd-space-tight);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  flex: 1;
  align-items: center;
}

.vd-blog-hero-side-card:hover {
  border-color: var(--vd-primary-border);
  box-shadow: var(--vd-shadow-sm);
  transform: translateX(4px);
}

.vd-blog-hero-side-card:hover .vd-blog-hero-side-img img {
  transform: scale(1.05);
}

.vd-blog-hero-side-img {
  width: 80px;
  height: 60px;
  border-radius: var(--vd-radius-btn);
  overflow: hidden;
  flex-shrink: 0;
}

.vd-blog-hero-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vd-blog-hero-side-text {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-micro);
  min-width: 0;
}

.vd-blog-hero-side-text .vd-tag {
  align-self: flex-start;
}

.vd-blog-hero-side-text h3 {
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Light mode — blog improvements */
html.light .vd-blog-tag {
  background-color: #f0f0f0;
  border-color: #e0e0e0;
}

html.light .vd-blog-tag.is-active {
  background-color: var(--vd-primary);
  border-color: var(--vd-primary);
  color: #fff;
}

html.light .vd-blog-search {
  background: #fff;
  border-color: #e0e0e0;
  box-shadow: var(--vd-shadow-sm);
}

html.light .vd-blog-hero-side-card {
  box-shadow: var(--vd-shadow-sm);
}

/* ============================================
   Blog Article
   ============================================ */
/* Post header */
.vd-post-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.vd-post-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vd-space-inner);
  flex-wrap: wrap;
  margin-bottom: var(--vd-space-card-inner);
}

.vd-post-header-meta {
  display: flex;
  align-items: center;
  gap: var(--vd-space-inner);
  font-size: 13px;
  color: var(--vd-text-muted);
}

.vd-post-header-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--vd-text-faint);
}

.vd-post-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--vd-text);
}

@media (max-width: 640px) {
  .vd-post-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }
}

.vd-post-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: var(--vd-text-muted);
  margin: var(--vd-space-comp) auto 0;
  max-width: 560px;
}

@media (max-width: 640px) {
  .vd-post-subtitle {
    font-size: 15px;
  }
}

/* Post cover — contained with rounded corners */
.vd-post-cover {
  border-radius: var(--vd-radius-card);
  overflow: hidden;
  margin-bottom: 0;
}

.vd-post-cover img {
  width: 100%;
  display: block;
}

/* Post footer — share icons */
.vd-post-footer {
  margin-top: var(--vd-space-container);
  padding-top: var(--vd-space-card-inner);
  border-top: 1px solid var(--vd-stroke);
}

.vd-post-share {
  display: flex;
  align-items: center;
  gap: var(--vd-space-tight);
}

.vd-post-share-icons {
  display: flex;
  gap: var(--vd-space-inner);
}

.vd-post-share-icons a {
  width: 32px;
  height: 32px;
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-text-muted);
  transition: all 0.15s;
}

.vd-post-share-icons a:hover {
  color: var(--vd-primary);
  border-color: var(--vd-primary);
  background: var(--vd-primary-subtle);
}

/* Article layout — content + sidebar */
.vd-article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-container);
}

@media (min-width: 1024px) {
  .vd-article-layout {
    grid-template-columns: 1fr 280px;
  }
}

/* Article main column */
.vd-article-main {
  max-width: 760px;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Article head */
.vd-article-head {
  margin-bottom: var(--vd-space-container);
}

.vd-article-back {
  display: inline-flex;
  align-items: center;
  gap: var(--vd-space-micro);
  font-size: 13px;
  font-weight: 500;
  color: var(--vd-text-faint);
  margin-bottom: var(--vd-space-card-inner);
  transition: color 0.15s;
}

.vd-article-back:hover {
  color: var(--vd-primary);
}

.vd-article-tag-row {
  display: flex;
  align-items: center;
  gap: var(--vd-space-tight);
  flex-wrap: wrap;
  margin-bottom: var(--vd-space-tight);
}

.vd-article-author-inline {
  display: flex;
  align-items: center;
  gap: var(--vd-space-tight);
  margin-top: var(--vd-space-card-inner);
  padding-top: var(--vd-space-card-inner);
  border-top: 1px solid var(--vd-stroke);
}

.vd-article-author-inline .vd-article-author-avatar {
  width: 36px;
  height: 36px;
  font-size: 13px;
}

/* Sidebar */
.vd-article-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .vd-article-sidebar {
    display: block;
  }
}

.vd-article-sidebar-sticky {
  position: sticky;
  top: 85px;
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-card-inner);
}

.vd-article-sidebar-cta {
  padding: var(--vd-space-card-inner);
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-top: 2px solid var(--vd-primary);
  border-radius: var(--vd-radius-card);
}

.vd-article-sidebar-toc {
  padding: var(--vd-space-card-inner);
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
}

.vd-article-toc-link {
  display: block;
  font-size: 13px;
  color: var(--vd-text-muted);
  padding: 6px 0;
  border-left: 2px solid var(--vd-stroke);
  padding-left: var(--vd-space-tight);
  transition: color 0.15s, border-color 0.15s;
}

.vd-article-toc-link:hover {
  color: var(--vd-text);
  border-left-color: var(--vd-primary);
}

.vd-article-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--vd-text-muted);
}
.vd-article-body h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: var(--vd-text);
  margin-top: var(--vd-space-container);
  margin-bottom: var(--vd-space-comp);
}
.vd-article-body h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: var(--vd-text);
  margin-top: var(--vd-space-card);
  margin-bottom: var(--vd-space-tight);
}
.vd-article-body p {
  margin-bottom: var(--vd-space-card-inner);
}
.vd-article-body a {
  color: var(--vd-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vd-article-body a:hover {
  color: var(--vd-primary-hover);
}
.vd-article-body strong {
  color: var(--vd-text);
  font-weight: 600;
}
.vd-article-body ul,
.vd-article-body ol {
  margin-bottom: var(--vd-space-card-inner);
  padding-left: var(--vd-space-card-inner);
}
.vd-article-body ul {
  list-style: disc;
}
.vd-article-body ol {
  list-style: decimal;
}
.vd-article-body li {
  margin-bottom: var(--vd-space-inner);
}

.vd-article-body blockquote {
  margin: var(--vd-space-card) 0;
  padding: var(--vd-space-card-inner) var(--vd-space-card);
  border-left: 3px solid var(--vd-primary);
  background-color: var(--vd-primary-subtle);
  border-radius: 0 var(--vd-radius-btn) var(--vd-radius-btn) 0;
  font-style: italic;
  color: var(--vd-text);
}

.vd-article-body pre {
  margin: var(--vd-space-card-inner) 0;
  padding: var(--vd-space-card-inner);
  background-color: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-input);
  overflow-x: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--vd-text);
}

.vd-article-body img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--vd-radius-card);
  margin: var(--vd-space-card-inner) 0;
}

.vd-article-body figure {
  margin: var(--vd-space-card) 0;
}
.vd-article-body figure img {
  margin: 0 0 var(--vd-space-inner) 0;
}
.vd-article-body figcaption {
  font-size: 13px;
  font-weight: 500;
  color: var(--vd-text-faint);
  text-align: center;
  line-height: 1.5;
}

.vd-article-author {
  display: flex;
  align-items: center;
  gap: var(--vd-space-comp);
  padding: var(--vd-space-card);
  margin-top: var(--vd-space-container);
  background-color: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
}
.vd-article-author img {
  width: 56px;
  height: 56px;
  border-radius: var(--vd-radius-pill);
  object-fit: cover;
  flex-shrink: 0;
}
.vd-article-author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--vd-text);
  margin-bottom: var(--vd-space-micro);
}
.vd-article-author-bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--vd-text-muted);
}

.vd-article-related {
  margin-top: var(--vd-space-container);
}
.vd-article-related h2 {
  margin-bottom: var(--vd-space-card-inner);
}

/* Article header inner wrapper */
.vd-article-header-inner {
  max-width: var(--vd-container-secondary);
  margin: 0 auto;
}

/* Article content wrapper */
.vd-article-content {
  max-width: 760px;
  margin: 0 auto;
}

/* Author avatar (text fallback) */
.vd-article-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--vd-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* Author info block */
.vd-article-author-info {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-micro);
}

/* About story block */
.vd-about-story {
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   Contact
   ============================================ */

/* Layout: form + sidebar */
.vd-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card);
}

@media (min-width: 768px) {
  .vd-contact-layout {
    grid-template-columns: 1fr 320px;
    gap: var(--vd-space-container);
  }
}

/* Form card */
.vd-contact-form-card {
  padding: var(--vd-space-card-inner);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
}

@media (min-width: 768px) {
  .vd-contact-form-card {
    padding: var(--vd-space-card);
  }
}

.vd-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-comp);
  margin-top: var(--vd-space-card-inner);
}

.vd-contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-comp);
}

@media (min-width: 480px) {
  .vd-contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.vd-contact-field {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-micro);
}

.vd-contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
}

.vd-contact-input {
  padding: var(--vd-space-tight) var(--vd-space-comp);
  font-size: 14px;
  font-family: inherit;
  color: var(--vd-text);
  background: var(--vd-bg);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-input);
  transition: border-color 0.15s;
  outline: none;
}

.vd-contact-input:focus {
  border-color: var(--vd-primary);
}

.vd-contact-input::placeholder {
  color: var(--vd-text-faint);
}

.vd-contact-textarea {
  resize: vertical;
  min-height: 120px;
}

html.light .vd-contact-input {
  background: #fff;
}

/* Sidebar */
.vd-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-tight);
}

/* Channel link */
.vd-contact-channel {
  display: flex;
  align-items: center;
  gap: var(--vd-space-tight);
  padding: var(--vd-space-comp);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s;
}

.vd-contact-channel:hover {
  border-color: var(--vd-primary-border);
}

.vd-contact-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--vd-radius-input);
  background: var(--vd-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--vd-primary);
}

.vd-contact-channel-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--vd-text);
}

.vd-contact-channel-value {
  display: block;
  font-size: 13px;
  color: var(--vd-primary);
}

/* Social card in sidebar */
.vd-contact-channel-social {
  padding: var(--vd-space-comp);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
}

.vd-contact-social-icons {
  display: flex;
  gap: var(--vd-space-inner);
  margin-top: var(--vd-space-tight);
}

.vd-contact-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-text-muted);
  transition: all 0.15s;
}

.vd-contact-social-icons a:hover {
  color: var(--vd-primary);
  border-color: var(--vd-primary);
  background: var(--vd-primary-subtle);
}

/* Info items in sidebar */
.vd-contact-channel-info {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-inner);
  padding: var(--vd-space-comp);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
}

.vd-contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--vd-space-inner);
  font-size: 13px;
  color: var(--vd-text-muted);
}

.vd-contact-info-item svg {
  flex-shrink: 0;
}

/* ============================================
   404
   ============================================ */
.vd-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 200px);
  padding: var(--vd-space-container) var(--vd-space-card-inner);
}
.vd-404-number {
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -4px;
  color: rgba(255,255,255,0.12);
  margin-bottom: var(--vd-space-comp);
}
html.light .vd-404-number {
  color: rgba(0,0,0,0.08);
}
.vd-404 h1 {
  margin-bottom: var(--vd-space-tight);
}
.vd-404 p {
  color: var(--vd-text-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto var(--vd-space-card);
}

@media (min-width: 768px) {
  .vd-404-number {
    font-size: 180px;
    letter-spacing: -6px;
  }
}

/* ============================================
   About
   ============================================ */

/* Hero split — text + image */
.vd-about-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card);
  align-items: center;
}

@media (min-width: 768px) {
  .vd-about-hero-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--vd-space-container);
  }
}

.vd-about-hero-img {
  border-radius: var(--vd-radius-card);
  overflow: hidden;
}

.vd-about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Story + metrics grid */
.vd-about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-container);
}

@media (min-width: 768px) {
  .vd-about-story-grid {
    grid-template-columns: 1fr 280px;
    gap: 64px;
  }
}

.vd-about-story-text h2 {
  position: relative;
  padding-left: var(--vd-space-comp);
}

.vd-about-story-text h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--vd-primary);
  border-radius: 2px;
}

/* Metrics column */
.vd-about-metrics-col {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-comp);
}

@media (max-width: 767px) {
  .vd-about-metrics-col {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 374px) {
  .vd-about-metrics-col {
    flex-direction: column;
  }
}

.vd-about-metric-card {
  padding: var(--vd-space-card-inner);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  text-align: center;
  flex: 1;
}

.vd-about-metric-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--vd-primary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -1px;
  line-height: 1;
}

.vd-about-metric-text {
  display: block;
  font-size: 13px;
  color: var(--vd-text-muted);
  margin-top: var(--vd-space-inner);
}

/* Values grid */
.vd-about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vd-space-comp);
  margin-top: var(--vd-space-card);
}

@media (min-width: 768px) {
  .vd-about-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vd-about-value-card {
  padding: var(--vd-space-card-inner);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  text-align: center;
}

.vd-about-value-card .vd-icon-box {
  margin: 0 auto var(--vd-space-tight);
}

.vd-about-value-card h3 {
  margin-bottom: var(--vd-space-inner);
}

/* Testimonials grid — responsive */
.vd-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-comp);
  margin-top: var(--vd-space-card);
}

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

/* About metrics responsive */
@media (max-width: 639px) {
  .vd-about-metrics-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vd-space-inner);
  }

  .vd-about-metric-card {
    padding: var(--vd-space-comp) var(--vd-space-inner);
  }

  .vd-about-metric-number {
    font-size: 22px;
  }

  .vd-about-metric-text {
    font-size: 12px;
  }
}

@media (max-width: 479px) {
  .vd-about-value-card {
    padding: var(--vd-space-comp);
  }
}

/* ============================================
   Responsive fixes — mobile (max 640px)
   ============================================ */
@media (max-width: 640px) {
  /* Pricing hero heading */
  .vd-pricing-hero .vd-h1 {
    font-size: 28px;
  }

  /* Blog hero text */
  .vd-blog-hero h2 {
    font-size: 22px;
  }

  /* Article hero text */
  .vd-article-hero-content h1 {
    font-size: 24px;
  }

  /* Contact layout sidebar on small screens */
  .vd-contact-sidebar {
    flex-direction: column;
  }

  /* 404 number on small mobile */
  .vd-404-number {
    font-size: 100px;
    letter-spacing: -3px;
  }

  /* About metric cards number size */
  .vd-about-metric-number {
    font-size: 24px;
  }
}

/* ============================================
   Ferramentas (Tools) — Listing + Individual
   ============================================ */

/* --- Tools listing grid --- */
.vd-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
}

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

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

/* --- Tool card --- */
.vd-tool-card {
  display: flex;
  flex-direction: column;
  background-color: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

html.light .vd-tool-card {
  box-shadow: var(--vd-shadow-sm);
}

.vd-tool-card:hover {
  box-shadow: var(--vd-shadow-md);
  border-color: var(--vd-primary-border);
  transform: translateY(-3px);
}

/* Thumbnail area */
.vd-tool-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--vd-surface);
  overflow: hidden;
  position: relative;
}

.vd-tool-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.vd-tool-card:hover .vd-tool-card-img img {
  transform: scale(1.05);
}

.vd-tool-card-img svg {
  width: 40px;
  height: 40px;
  color: var(--vd-primary);
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.3s;
}

.vd-tool-card:hover .vd-tool-card-img svg {
  opacity: 1;
  transform: scale(1.1);
}

/* Text content */
.vd-tool-card-body {
  padding: var(--vd-space-card-inner);
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-inner);
  flex: 1;
}

.vd-tool-card-body h3 {
  margin-bottom: 0;
}

.vd-tool-card-body p {
  color: var(--vd-text-muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vd-tool-card-body .vd-tool-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--vd-space-micro);
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-primary);
  margin-top: auto;
  transition: gap 0.15s;
}

.vd-tool-card:hover .vd-tool-card-link {
  gap: var(--vd-space-inner);
}

/* Feature card variant (mini-mockup instead of image) */
.vd-tool-card-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: linear-gradient(135deg, var(--vd-surface-2) 0%, var(--vd-surface) 100%);
  border-bottom: 1px solid var(--vd-stroke);
  overflow: hidden;
}
.vd-tool-card--feature:hover .vd-tool-card-mockup {
  background: linear-gradient(135deg, var(--vd-surface) 0%, var(--vd-surface-2) 100%);
}

/* Editor — mini timeline with preview */
.vd-mini-timeline {
  width: 85%;
  padding: 14px 16px;
  background: var(--vd-surface);
  border-radius: 10px;
  border: 1px solid var(--vd-stroke);
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.vd-mini-tl-preview {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--vd-stroke);
}
.vd-mini-tl-screen {
  flex: 1;
  height: 50px;
  border-radius: 4px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vd-mini-tl-screen svg { opacity: 0.5; }
.vd-mini-tl-tools {
  width: 60px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vd-mini-tl-tools span {
  height: 6px;
  border-radius: 3px;
  background: var(--vd-stroke);
}
.vd-mini-tl-tools span:nth-child(2) { width: 70%; }
.vd-mini-track {
  height: 10px;
  border-radius: 5px;
  background: var(--vd-stroke);
}
.vd-mini-track--accent {
  background: linear-gradient(90deg, var(--vd-primary), #f97316);
  opacity: 0.85;
}
.vd-mini-track--sub {
  height: 6px;
  border-radius: 3px;
  background: var(--vd-stroke);
  opacity: 0.5;
}
.vd-mini-playhead {
  position: absolute;
  top: 78px;
  bottom: 10px;
  left: 58%;
  width: 2px;
  background: var(--vd-primary);
  border-radius: 1px;
  box-shadow: 0 0 6px var(--vd-primary);
}
.vd-mini-playhead::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vd-primary);
}

/* Reframe — 16:9 to 9:16 */
.vd-mini-reframe {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vd-mini-landscape {
  width: 100px;
  height: 56px;
  border: 2px solid var(--vd-text-muted);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--vd-text-muted);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}
.vd-mini-landscape::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px dashed var(--vd-text-muted);
  border-radius: 2px;
  opacity: 0.3;
  right: 8px;
  top: 6px;
}
.vd-mini-reframe-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.vd-mini-reframe-arrow span {
  font-size: 9px;
  font-weight: 600;
  color: var(--vd-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vd-mini-portrait {
  width: 48px;
  height: 85px;
  border: 2px solid var(--vd-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--vd-primary);
  background: linear-gradient(135deg, rgba(234,88,12,0.1) 0%, rgba(249,115,22,0.05) 100%);
  box-shadow: 0 0 20px rgba(234,88,12,0.15);
  position: relative;
}
.vd-mini-portrait::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(234,88,12,0.2);
  border-radius: 3px;
}

/* Captions — word-by-word */
.vd-mini-captions-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.vd-mini-captions-screen {
  width: 160px;
  height: 90px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.vd-mini-captions-screen::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid rgba(255,255,255,0.06);
}
.vd-mini-captions {
  display: flex;
  gap: 4px;
}
.vd-mini-word {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  padding: 2px 5px;
  border-radius: 3px;
  transition: all 0.3s;
}
.vd-mini-word--active {
  color: #fff;
  background: var(--vd-primary);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(234,88,12,0.4);
}
.vd-mini-captions-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--vd-text-muted);
  opacity: 0.6;
}

/* Scheduler — mini calendar */
.vd-mini-sched-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.vd-mini-calendar {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  background: var(--vd-surface);
  border-radius: 10px;
  border: 1px solid var(--vd-stroke);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.vd-mini-cal-row {
  display: flex;
  gap: 3px;
}
.vd-mini-cal-row span {
  width: 30px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--vd-text-muted);
  border-radius: 6px;
}
.vd-mini-cal-row:first-child span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 20px;
  color: var(--vd-text-muted);
  opacity: 0.5;
}
.vd-mini-cal--today {
  background: var(--vd-primary) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(234,88,12,0.3);
}
.vd-mini-cal--scheduled {
  border: 1.5px solid var(--vd-primary);
  color: var(--vd-primary) !important;
  font-weight: 600 !important;
}
.vd-mini-sched-platforms {
  display: flex;
  gap: 6px;
}
.vd-mini-sched-platforms span {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--vd-stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--vd-text-muted);
}
.vd-mini-sched-platforms span:first-child { color: var(--vd-primary); border: 1px solid var(--vd-primary); background: transparent; }

/* --- Tool page hero --- */
.vd-tool-hero {
  text-align: center;
  padding-top: 0;
  padding-bottom: var(--vd-space-container);
}

.vd-tool-hero .vd-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--vd-container-secondary);
}

.vd-tool-hero img {
  display: block;
  margin: 0 auto;
}

.vd-tool-hero .vd-badge {
  margin-bottom: var(--vd-space-comp);
}

.vd-tool-hero h1 {
  margin-bottom: var(--vd-space-tight);
}

.vd-tool-hero p {
  color: var(--vd-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.vd-tool-hero .vd-input-link {
  margin-top: var(--vd-space-card);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Social proof bar --- */
.vd-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vd-space-tight);
  margin-top: var(--vd-space-card-inner);
  flex-wrap: wrap;
}

.vd-social-proof-avatars {
  display: flex;
  align-items: center;
}

.vd-social-proof-avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--vd-bg);
  background-color: var(--vd-surface);
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-muted);
  margin-left: -8px;
}

.vd-social-proof-avatars span:first-child {
  margin-left: 0;
}

.vd-social-proof-text {
  font-size: 13px;
  color: var(--vd-text-muted);
}

.vd-social-proof-text strong {
  color: var(--vd-text);
  font-weight: 600;
}

.vd-social-proof-stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
}

.vd-social-proof-stars svg {
  width: 14px;
  height: 14px;
}

/* Platform logos row */
.vd-platform-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vd-space-card-inner);
  margin-top: var(--vd-space-card-inner);
  flex-wrap: wrap;
}

.vd-platform-logos svg {
  width: 24px;
  height: 24px;
  color: var(--vd-text-faint);
  transition: color 0.15s;
}

.vd-platform-logos svg:hover {
  color: var(--vd-text-muted);
}

/* --- Features grid (benefits) --- */
.vd-tool-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
}

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

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

.vd-tool-feature {
  padding: var(--vd-space-card-inner);
  background-color: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  text-align: center;
  transition: border-color 0.15s;
}

.vd-tool-feature:hover {
  border-color: var(--vd-primary-border);
}

.vd-tool-feature .vd-icon-box {
  margin: 0 auto var(--vd-space-tight);
}

.vd-tool-feature h3 {
  margin-bottom: var(--vd-space-inner);
}

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

html.light .vd-tool-feature {
  box-shadow: var(--vd-shadow-sm);
}

/* --- Tool features header centering --- */
.vd-tool-features-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--vd-space-card);
}

/* --- Tool steps header centering --- */
.vd-tool-steps-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--vd-space-card);
}

/* --- Tool stats section --- */
.vd-tool-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vd-space-card-inner);
  margin-top: var(--vd-space-card);
}

@media (max-width: 640px) {
  .vd-tool-stats {
    grid-template-columns: 1fr;
    gap: var(--vd-space-comp);
  }
}

.vd-tool-stat {
  text-align: center;
  padding: var(--vd-space-card) var(--vd-space-card-inner);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
}

.vd-tool-stat-number {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--vd-primary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -1px;
  line-height: 1;
}

.vd-tool-stat-label {
  display: block;
  font-size: 14px;
  color: var(--vd-text-muted);
  margin-top: var(--vd-space-inner);
}

/* --- How it works (steps) --- */
.vd-tool-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
  counter-reset: tool-step;
}

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

@media (min-width: 1024px) {
  .vd-tool-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vd-tool-step {
  padding: var(--vd-space-card-inner);
  background-color: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  text-align: center;
  position: relative;
}

html.light .vd-tool-step {
  box-shadow: var(--vd-shadow-sm);
}

.vd-tool-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--vd-primary-subtle);
  color: var(--vd-primary);
  font-size: 18px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: var(--vd-space-tight);
}

.vd-tool-step h3 {
  margin-bottom: var(--vd-space-inner);
}

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

/* --- Related tools --- */
.vd-related-tools {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-comp);
}

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

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

.vd-related-tools .vd-tool-card {
  font-size: 14px;
}

.vd-related-tools .vd-tool-card-img {
  aspect-ratio: 16 / 9;
}

.vd-related-tools .vd-tool-card-body {
  padding: var(--vd-space-comp);
}

/* --- Tool proof bar (new tool pages) --- */
.vd-tool-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--vd-space-card-inner);
  flex-wrap: wrap;
}

.vd-tool-proof-avatars {
  display: flex;
  align-items: center;
}

.vd-tool-proof-avatars .vd-hero-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--vd-bg);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-left: -8px;
}

.vd-tool-proof-avatars .vd-hero-avatar:first-child {
  margin-left: 0;
}

.vd-tool-proof-rating {
  display: flex;
  align-items: center;
  gap: var(--vd-space-inner);
}

.vd-tool-proof-rating .vd-hero-stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
}

.vd-tool-proof-platforms {
  display: flex;
  align-items: center;
  gap: var(--vd-space-comp);
}

.vd-tool-proof-platforms svg {
  color: var(--vd-text-faint);
  transition: color 0.15s;
}

.vd-tool-proof-platforms svg:hover {
  color: var(--vd-text-muted);
}

/* --- Tool features grid (new tool pages) --- */
.vd-tool-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
}

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

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

/* --- Tool steps grid (new tool pages) --- */
.vd-tool-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
}

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

@media (min-width: 1024px) {
  .vd-tool-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Tool testimonials grid --- */
.vd-tool-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
}

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

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

/* --- Tool related cards grid --- */
.vd-tool-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
}

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

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

.vd-tool-related-card {
  display: block;
  padding: var(--vd-space-card-inner);
  background-color: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  text-decoration: none;
  color: var(--vd-text);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.vd-tool-related-card:hover {
  border-color: var(--vd-primary-border);
  transform: translateY(-3px);
  box-shadow: var(--vd-shadow-md);
}

.vd-tool-related-card .vd-icon-box {
  margin-bottom: var(--vd-space-tight);
}

.vd-tool-related-card h3 {
  margin-bottom: var(--vd-space-inner);
}

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

html.light .vd-tool-related-card {
  box-shadow: var(--vd-shadow-sm);
}

html.light .vd-tool-related-card:hover {
  box-shadow: var(--vd-shadow-md);
}

/* --- Ferramentas responsive fixes --- */
@media (max-width: 640px) {
  .vd-tool-hero h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

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

  .vd-tool-steps,
  .vd-tool-steps-grid {
    grid-template-columns: 1fr;
  }

  .vd-social-proof {
    flex-direction: column;
    gap: var(--vd-space-inner);
    text-align: center;
  }

  .vd-tool-proof-row {
    flex-direction: column;
    align-items: center;
    gap: var(--vd-space-tight);
  }

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

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

  .vd-tool-step-num {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}

/* --- How it works: 2-col layout (steps + image) --- */
.vd-tool-how-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-container);
  align-items: center;
}

@media (min-width: 768px) {
  .vd-tool-how-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.vd-tool-how-img {
  border-radius: var(--vd-radius-card);
  overflow: hidden;
}

.vd-tool-how-img img {
  width: 100%;
  display: block;
}

/* Steps inside how-layout — vertical stack */
.vd-tool-how-layout .vd-tool-steps {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-card-inner);
}

.vd-tool-how-layout .vd-tool-step {
  display: flex;
  align-items: flex-start;
  gap: var(--vd-space-comp);
  text-align: left;
  padding: 0;
  background: none;
  border: none;
}

/* Tool hero split — text left, image right */
.vd-tool-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-container);
  align-items: center;
}

@media (min-width: 768px) {
  .vd-tool-hero-split {
    grid-template-columns: 1fr 1fr;
  }
}

.vd-tool-hero-text {
  text-align: left;
}

.vd-tool-hero-img {
  border-radius: var(--vd-radius-card);
  overflow: hidden;
}

.vd-tool-hero-img img {
  width: 100%;
  display: block;
}

/* Vertical steps (inside how-layout) */
.vd-tool-steps-vertical {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-card);
}

.vd-tool-step-v {
  display: flex;
  align-items: flex-start;
  gap: var(--vd-space-comp);
}

.vd-tool-step-v-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vd-primary-subtle);
  color: var(--vd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
  border: 1px solid var(--vd-primary-border);
}

@media (max-width: 640px) {
  .vd-tool-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--vd-space-card-inner);
    gap: var(--vd-space-comp);
  }
}

/* ============================================
   FERRAMENTAS V2 — Enhanced tool page design
   ============================================ */

/* --- Hero image glow effect --- */
.vd-tool-hero-img {
  position: relative;
}

.vd-tool-hero-img::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.vd-tool-hero-img img {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.vd-tool-hero-img:hover img {
  transform: scale(1.03);
}

html.light .vd-tool-hero-img::before {
  background: radial-gradient(ellipse at center, rgba(224,95,0,0.1) 0%, transparent 70%);
}

/* --- Benefits V2: numbered left-aligned cards with hover glow --- */
.vd-tool-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.vd-tool-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.vd-tool-benefit::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--vd-radius-card);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--vd-primary-border), 0 0 20px rgba(255,107,0,0.06);
}

.vd-tool-benefit:hover {
  border-color: var(--vd-primary-border);
  transform: translateY(-2px);
}

.vd-tool-benefit:hover::after {
  opacity: 1;
}

html.light .vd-tool-benefit {
  background: var(--vd-surface);
  box-shadow: var(--vd-shadow-sm);
}

html.light .vd-tool-benefit:hover {
  box-shadow: var(--vd-shadow-md);
}

.vd-tool-benefit-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: var(--vd-primary-subtle);
  border: 1px solid var(--vd-primary-border);
  color: var(--vd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  transition: background 0.25s, color 0.25s;
}

.vd-tool-benefit:hover .vd-tool-benefit-num {
  background: var(--vd-primary);
  color: #fff;
}

.vd-tool-benefit-content h3 {
  margin-bottom: 6px;
}

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

/* --- Stats V2: with accent bar --- */
.vd-tool-stats-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .vd-tool-stats-v2 {
    grid-template-columns: 1fr;
  }
}

.vd-tool-stat-v2 {
  text-align: center;
  padding: 32px 24px;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.vd-tool-stat-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--vd-primary);
  border-radius: 0 0 2px 2px;
  transition: width 0.3s;
}

.vd-tool-stat-v2:hover {
  border-color: var(--vd-primary-border);
  transform: translateY(-2px);
}

.vd-tool-stat-v2:hover::before {
  width: 60px;
}

html.light .vd-tool-stat-v2 {
  background: var(--vd-surface);
  box-shadow: var(--vd-shadow-sm);
}

.vd-tool-stat-v2 .vd-tool-stat-number {
  font-size: 44px;
  font-weight: 700;
  color: var(--vd-primary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -2px;
  line-height: 1;
  display: block;
}

.vd-tool-stat-v2 .vd-tool-stat-label {
  display: block;
  font-size: 14px;
  color: var(--vd-text-muted);
  margin-top: 10px;
}

/* --- Timeline Steps V2 --- */
.vd-tool-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vd-tool-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--vd-stroke);
}

.vd-tool-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.vd-tool-timeline-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--vd-bg);
  border: 2px solid var(--vd-stroke);
  color: var(--vd-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  z-index: 1;
  transition: border-color 0.3s, color 0.3s, background 0.3s, box-shadow 0.3s;
}

.vd-tool-timeline-step:hover .vd-tool-timeline-num {
  border-color: var(--vd-primary);
  color: var(--vd-primary);
  box-shadow: 0 0 0 4px var(--vd-primary-subtle);
}

html.light .vd-tool-timeline-num {
  background: var(--vd-surface);
}

.vd-tool-timeline-content h3 {
  margin-bottom: 4px;
}

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

/* --- Testimonials V2: with stars --- */
.vd-tool-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.vd-tool-testimonial {
  padding: 24px;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  transition: border-color 0.2s, transform 0.2s;
}

.vd-tool-testimonial:hover {
  border-color: var(--vd-primary-border);
  transform: translateY(-2px);
}

html.light .vd-tool-testimonial {
  background: var(--vd-surface);
  box-shadow: var(--vd-shadow-sm);
}

.vd-tool-testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #f59e0b;
}

.vd-tool-testimonial-stars svg {
  width: 14px;
  height: 14px;
}

.vd-tool-testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--vd-text);
  margin-bottom: 16px;
}

.vd-tool-testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vd-tool-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.vd-tool-testimonial-name {
  font-size: 14px;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}

.vd-tool-testimonial-role {
  font-size: 12px;
  color: var(--vd-text-muted);
  display: block;
}

/* --- Related tools V2: full grid with images --- */
.vd-tool-related-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .vd-tool-related-v2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .vd-tool-related-v2 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vd-tool-related-item {
  display: flex;
  flex-direction: column;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.vd-tool-related-item:hover {
  border-color: var(--vd-primary-border);
  box-shadow: var(--vd-shadow-md);
  transform: translateY(-3px);
}

html.light .vd-tool-related-item {
  box-shadow: var(--vd-shadow-sm);
}

.vd-tool-related-item-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--vd-surface);
}

.vd-tool-related-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.vd-tool-related-item:hover .vd-tool-related-item-img img {
  transform: scale(1.05);
}

.vd-tool-related-item-body {
  padding: 14px 16px;
}

.vd-tool-related-item-body h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}

/* --- Ferramentas listing V2 --- */
.vd-tools-hero-visual {
  position: relative;
  padding-bottom: 0;
}

.vd-tools-hero-visual::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

html.light .vd-tools-hero-visual::before {
  background: radial-gradient(ellipse at center, rgba(224,95,0,0.05) 0%, transparent 70%);
}

.vd-tools-hero-visual .vd-container {
  position: relative;
  z-index: 1;
}

/* Tool card badge */
.vd-tool-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--vd-radius-tag);
  z-index: 2;
  text-transform: uppercase;
}

html.light .vd-tool-card-badge {
  background: rgba(255,255,255,0.85);
  color: var(--vd-text);
}

/* Tools grid V2 — 4 columns on large */
.vd-tools-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

@media (min-width: 1280px) {
  .vd-tools-grid-v2 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Trust bar for tools listing */
.vd-tools-trust {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--vd-stroke);
  border-bottom: 1px solid var(--vd-stroke);
}

.vd-tools-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.vd-tools-trust-num {
  font-size: 24px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--vd-text);
  letter-spacing: -0.5px;
}

.vd-tools-trust-label {
  font-size: 13px;
  color: var(--vd-text-muted);
}

/* --- Tool page hero: compact spacing --- */
.vd-page-main > .vd-section:first-child.vd-tool-hero-section {
  padding-bottom: var(--vd-space-container);
}

/* --- Logos after tool hero: no extra gap --- */
.vd-tool-hero-section + .vd-logos {
  margin-top: 0;
}

/* --- Ferramentas listing hero compact --- */
.vd-tools-hero-compact {
  padding-bottom: var(--vd-space-card) !important;
  text-align: center;
}

.vd-tools-hero-compact .vd-tools-trust {
  margin-top: var(--vd-space-card);
  border: none;
  padding: 0;
  gap: 32px;
}

/* --- How it works section with background --- */
.vd-tool-how-section {
  background: var(--vd-surface);
  border-top: 1px solid var(--vd-stroke);
  border-bottom: 1px solid var(--vd-stroke);
}

html.light .vd-tool-how-section {
  background: #f5f5f5;
}

/* --- Stats V2: tighter spacing, integrated with benefits --- */
.vd-tool-stats-section {
  padding-top: var(--vd-space-container);
  padding-bottom: var(--vd-space-container);
}

/* --- Tool page section spacing override: tighter between tool sections --- */
.vd-page-main .vd-tool-section-tight {
  padding-top: var(--vd-space-container);
  padding-bottom: var(--vd-space-container);
}

/* --- Responsive fixes V2 --- */
@media (max-width: 640px) {
  .vd-tool-hero-split {
    gap: 32px;
  }

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

  .vd-tool-stats-v2 {
    grid-template-columns: 1fr;
  }

  .vd-tool-related-v2 {
    grid-template-columns: 1fr;
  }

  .vd-tool-stat-v2 .vd-tool-stat-number {
    font-size: 36px;
  }

  .vd-tools-trust {
    gap: 24px;
  }

  .vd-tools-trust-num {
    font-size: 20px;
  }
}

/* =====================================================
   Programa de Afiliados
   ===================================================== */

.vd-aff-hero .vd-section-header {
  text-align: center;
}

.vd-aff-hero-actions {
  display: flex;
  gap: var(--vd-space-tight);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--vd-space-card-inner);
}

/* Stats row */
.vd-aff-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vd-space-comp);
  margin-top: var(--vd-space-card);
}

@media (min-width: 768px) {
  .vd-aff-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vd-space-card-inner);
  }
}

.vd-aff-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--vd-space-card-inner);
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
}

.vd-aff-stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--vd-text);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.vd-aff-stat-label {
  font-size: 13px;
  color: var(--vd-text-muted);
  margin-top: var(--vd-space-inner);
}

/* Calculadora — split layout */
.vd-aff-calc {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
  max-width: 1080px;
  margin: var(--vd-space-card) auto 0;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  padding: var(--vd-space-card-inner);
  position: relative;
  overflow: hidden;
}

@media (min-width: 900px) {
  .vd-aff-calc {
    grid-template-columns: 1fr 1fr;
    gap: var(--vd-space-card);
    padding: var(--vd-space-card);
  }
}

/* Decorative dots (subtle background) */
.vd-aff-calc::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--vd-primary-subtle) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.vd-aff-calc::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--vd-primary-subtle) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.vd-aff-calc-left,
.vd-aff-calc-right {
  position: relative;
  z-index: 1;
}

/* LEFT column (inputs) */
.vd-aff-calc-left {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-card-inner);
  padding: var(--vd-space-comp);
}

@media (min-width: 900px) {
  .vd-aff-calc-left {
    padding: var(--vd-space-card-inner) var(--vd-space-card-inner) var(--vd-space-card-inner) 0;
  }
}

.vd-aff-calc-left h3 {
  margin: 0;
}

.vd-aff-calc-plan-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--vd-space-tight) var(--vd-space-comp);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-input);
}

.vd-aff-calc-plan-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.vd-aff-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.vd-aff-toggle button {
  justify-content: center;
}

.vd-aff-calc-field {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-inner);
}

.vd-aff-calc-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vd-aff-calc-label {
  display: inline-flex;
  align-items: center;
  gap: var(--vd-space-micro);
  font-size: 14px;
  font-weight: 600;
  color: var(--vd-text);
}

.vd-aff-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--vd-text-muted);
  cursor: help;
  position: relative;
  transition: color 0.18s;
}

.vd-aff-info:hover {
  color: var(--vd-primary);
}

.vd-aff-info::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 240px;
  padding: 8px 12px;
  background: var(--vd-text);
  color: var(--vd-surface);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: var(--vd-radius-btn);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, visibility 0.18s;
  pointer-events: none;
  z-index: 10;
  white-space: normal;
  text-align: center;
}

.vd-aff-info:hover::after {
  opacity: 1;
  visibility: visible;
}

.vd-aff-calc-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 6px 14px;
  background: var(--vd-primary-subtle);
  color: var(--vd-primary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--vd-radius-pill);
  border: 1px solid var(--vd-primary-border);
}

.vd-aff-slider {
  width: 100%;
  accent-color: var(--vd-primary);
}

.vd-aff-calc-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 11px;
  color: var(--vd-text-faint);
  font-family: 'JetBrains Mono', monospace;
}

.vd-aff-calc-structure {
  padding: var(--vd-space-comp);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-input);
}

.vd-aff-calc-structure-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: var(--vd-text-muted);
}

.vd-aff-calc-structure-row strong {
  color: var(--vd-text);
  font-weight: 600;
}

/* RIGHT column (orange highlight card) */
.vd-aff-calc-right {
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-comp);
  padding: var(--vd-space-card);
  background: var(--vd-primary);
  border-radius: var(--vd-radius-card);
  color: #fff;
  box-shadow: 0 20px 60px rgba(255,107,0,0.25);
  min-height: 460px;
}

.vd-aff-calc-right-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--vd-space-inner);
}

.vd-aff-calc-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--vd-radius-pill);
  letter-spacing: 0.3px;
}

.vd-aff-calc-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--vd-space-card-inner) 0;
  flex: 1;
  justify-content: center;
}

.vd-aff-calc-hero-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--vd-space-inner);
}

.vd-aff-calc-hero-value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-size: 56px;
  letter-spacing: -2px;
}

.vd-aff-calc-hero-symbol {
  font-size: 26px;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .vd-aff-calc-hero-value {
    font-size: 64px;
  }
  .vd-aff-calc-hero-symbol {
    font-size: 28px;
  }
}

.vd-aff-calc-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vd-space-inner);
}

.vd-aff-calc-sub-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--vd-space-comp);
  background: rgba(255,255,255,0.14);
  border-radius: var(--vd-radius-input);
  text-align: center;
}

.vd-aff-calc-sub-label {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

.vd-aff-calc-sub-value {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.7px;
}

.vd-aff-calc-sub-symbol {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.8;
}

.vd-aff-calc-sub-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

.vd-aff-calc-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--vd-space-comp);
  background: rgba(255,255,255,0.14);
  border-radius: var(--vd-radius-input);
  gap: var(--vd-space-micro);
}

.vd-aff-calc-alt-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.vd-aff-calc-alt-value {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
}

.vd-aff-calc-alt-symbol {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.85;
}

/* ======================================================================
   JOURNEY (Como Funciona) — cada passo é uma cena com mini-mockup CSS
   ====================================================================== */
.vd-aff-journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--vd-space-card-inner);
  margin-top: var(--vd-space-card);
}

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

@media (min-width: 1100px) {
  .vd-aff-journey {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.vd-aff-jstep {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.vd-aff-jstep:hover {
  transform: translateY(-6px);
  border-color: var(--vd-primary-border);
  box-shadow: var(--vd-shadow-lg);
}

/* ---- Scene (top half) ---- */
.vd-aff-jstep-scene {
  position: relative;
  height: 200px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.02) 55%, transparent);
  border-bottom: 1px solid var(--vd-stroke);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.vd-aff-jstep-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(255,107,0,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,107,0,0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle dotted grid background on every scene */
.vd-aff-scene-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,0,0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.vd-aff-jstep-scene > * {
  position: relative;
  z-index: 1;
}

/* Scene 01 — Signup form */
.vd-aff-scene-window {
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: 12px;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.03);
  backdrop-filter: blur(8px);
}

.vd-aff-scene-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--vd-stroke);
}
.vd-aff-scene-window-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--vd-text-muted);
}

.vd-aff-scene-dots {
  display: flex;
  gap: 4px;
}
.vd-aff-scene-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vd-text-faint);
  opacity: 0.5;
}
.vd-aff-scene-dots span:first-child { background: #ff5f56; opacity: 0.7; }
.vd-aff-scene-dots span:nth-child(2) { background: #ffbd2e; opacity: 0.7; }
.vd-aff-scene-dots span:nth-child(3) { background: #27c93f; opacity: 0.7; }

.vd-aff-scene-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: 6px;
  font-size: 10px;
  color: var(--vd-text-muted);
}

.vd-aff-scene-field--muted { opacity: 0.55; }

.vd-aff-scene-caret {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: var(--vd-primary);
  animation: vd-aff-caret 1s steps(2) infinite;
}
@keyframes vd-aff-caret {
  50% { opacity: 0; }
}

.vd-aff-scene-cta {
  background: linear-gradient(135deg, var(--vd-primary), #ff8a3d);
  color: #fff;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(255,107,0,0.28);
}
.vd-aff-scene-cta svg { stroke-width: 3; }

.vd-aff-scene-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--vd-primary-subtle);
  color: var(--vd-primary);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid var(--vd-primary-border);
}

/* Scene 02 — Link generation */
.vd-aff-scene-linkbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: 8px;
  font-size: 11px;
  color: var(--vd-text-muted);
  box-shadow: var(--vd-shadow-sm);
}
.vd-aff-scene-linkbar svg { color: var(--vd-primary); flex-shrink: 0; }
.vd-aff-scene-linkbar span:nth-child(2) {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vd-aff-scene-linkbar strong {
  color: var(--vd-text);
  font-weight: 700;
}
.vd-aff-scene-copy {
  background: var(--vd-primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 3px 8px rgba(255,107,0,0.3);
}

.vd-aff-scene-meter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: var(--vd-text-muted);
}
.vd-aff-scene-meter-label { flex-shrink: 0; }
.vd-aff-scene-meter-bar {
  flex: 1;
  height: 4px;
  background: var(--vd-stroke);
  border-radius: 100px;
  overflow: hidden;
}
.vd-aff-scene-meter-bar i {
  display: block;
  width: 92%;
  height: 100%;
  background: linear-gradient(90deg, var(--vd-primary), #ffb066);
  border-radius: 100px;
  animation: vd-aff-fill 2.4s ease-out;
}
@keyframes vd-aff-fill {
  from { width: 0%; }
}
.vd-aff-scene-meter-val {
  color: var(--vd-primary);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.vd-aff-scene-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--vd-text-faint);
  font-variant-numeric: tabular-nums;
}

/* Tracking active (step 02) */
.vd-aff-scene-linkwrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vd-aff-scene-tracking {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: 8px;
  box-shadow: var(--vd-shadow-sm);
  font-size: 10px;
}
.vd-aff-scene-track-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: vd-aff-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
.vd-aff-scene-track-text {
  flex: 1;
  color: var(--vd-text);
  font-weight: 600;
}
.vd-aff-scene-track-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
}
.vd-aff-scene-track-sparkline i {
  width: 3px;
  background: linear-gradient(180deg, var(--vd-primary), rgba(255,107,0,0.35));
  border-radius: 2px 2px 0 0;
}

/* Post mockup (step 03) */
.vd-aff-scene-post {
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.vd-aff-scene-post-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vd-aff-scene-post-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vd-primary), #ff9e5c);
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.vd-aff-scene-post-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.vd-aff-scene-post-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--vd-text);
}
.vd-aff-scene-post-time {
  font-size: 9px;
  color: var(--vd-text-muted);
}
.vd-aff-scene-post-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: var(--vd-primary-subtle);
  border: 1px dashed var(--vd-primary-border);
  border-radius: 6px;
  font-size: 10px;
  color: var(--vd-primary);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.vd-aff-scene-sociline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 0 2px;
}
.vd-aff-scene-sociline-icon {
  color: var(--vd-text-muted);
  opacity: 0.7;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.vd-aff-scene-sociline-icon:hover,
.vd-aff-jstep:hover .vd-aff-scene-sociline-icon {
  color: var(--vd-primary);
  opacity: 1;
}
.vd-aff-jstep:hover .vd-aff-scene-sociline-icon:nth-child(1) { transform: translateY(-2px); transition-delay: 0ms; }
.vd-aff-jstep:hover .vd-aff-scene-sociline-icon:nth-child(2) { transform: translateY(-3px); transition-delay: 60ms; }
.vd-aff-jstep:hover .vd-aff-scene-sociline-icon:nth-child(3) { transform: translateY(-4px); transition-delay: 120ms; }
.vd-aff-jstep:hover .vd-aff-scene-sociline-icon:nth-child(4) { transform: translateY(-3px); transition-delay: 180ms; }
.vd-aff-jstep:hover .vd-aff-scene-sociline-icon:nth-child(5) { transform: translateY(-2px); transition-delay: 240ms; }

/* Scene 03 — Share socials */
.vd-aff-scene-socials {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  justify-content: center;
}
.vd-aff-scene-chip {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--chip-bg, var(--chip, var(--vd-primary)));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vd-aff-scene-chip svg { display: block; }
.vd-aff-jstep:hover .vd-aff-scene-chip:nth-child(1) { transform: translateY(-3px); }
.vd-aff-jstep:hover .vd-aff-scene-chip:nth-child(2) { transform: translateY(-5px); transition-delay: 60ms; }
.vd-aff-jstep:hover .vd-aff-scene-chip:nth-child(3) { transform: translateY(-7px); transition-delay: 120ms; }
.vd-aff-jstep:hover .vd-aff-scene-chip:nth-child(4) { transform: translateY(-5px); transition-delay: 180ms; }
.vd-aff-jstep:hover .vd-aff-scene-chip:nth-child(5) { transform: translateY(-3px); transition-delay: 240ms; }

.vd-aff-scene-ping {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: 100px;
  align-self: center;
  font-size: 10px;
  color: var(--vd-text-muted);
  box-shadow: var(--vd-shadow-sm);
}
.vd-aff-scene-ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  animation: vd-aff-pulse 1.6s ease-out infinite;
}
@keyframes vd-aff-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.vd-aff-scene-ping-text strong { color: var(--vd-text); font-weight: 700; }

/* Scene 04 — Earnings */
.vd-aff-scene-earn-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vd-aff-scene-earn-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--vd-text-muted);
}

.vd-aff-scene-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--vd-text);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.vd-aff-scene-currency {
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-primary);
  letter-spacing: 0;
  margin-right: 3px;
}
.vd-aff-scene-number { font-size: 34px; }
.vd-aff-scene-decimal { font-size: 15px; color: var(--vd-text-muted); font-weight: 700; }

.vd-aff-scene-pix {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 10px;
  color: var(--vd-text-muted);
  font-weight: 500;
}
.vd-aff-scene-pix-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  background: #0070BA;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: 4px;
}

.vd-aff-scene-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 44px;
  padding-top: 4px;
}
.vd-aff-scene-chart i {
  flex: 1;
  background: linear-gradient(180deg, var(--vd-primary), rgba(255,107,0,0.3));
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: vd-aff-bar 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.vd-aff-scene-chart i:nth-child(1) { animation-delay: 0ms; }
.vd-aff-scene-chart i:nth-child(2) { animation-delay: 80ms; }
.vd-aff-scene-chart i:nth-child(3) { animation-delay: 160ms; }
.vd-aff-scene-chart i:nth-child(4) { animation-delay: 240ms; }
.vd-aff-scene-chart i:nth-child(5) { animation-delay: 320ms; }
.vd-aff-scene-chart i:nth-child(6) {
  animation-delay: 400ms;
  background: linear-gradient(180deg, #ff8a3d, var(--vd-primary));
  box-shadow: 0 2px 8px rgba(255,107,0,0.35);
}
@keyframes vd-aff-bar {
  from { transform: scaleY(0); }
}

.vd-aff-scene-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(34,197,94,0.18);
  color: #22c55e;
  padding: 3px 7px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  font-variant-numeric: tabular-nums;
}

/* ---- Body (bottom half) ---- */
.vd-aff-jstep-body {
  padding: 20px 22px 24px;
  position: relative;
}

.vd-aff-jstep-num {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--vd-primary);
  margin-bottom: 8px;
  padding: 3px 8px;
  background: var(--vd-primary-subtle);
  border-radius: 100px;
}

.vd-aff-jstep-body h3 {
  margin: 0 0 6px;
  color: var(--vd-text);
}

.vd-aff-jstep-body p {
  margin: 0;
  color: var(--vd-text-muted);
  line-height: 1.55;
}

/* Testimonials: 3 colunas em desktop (override do default 2-col) */
@media (min-width: 1024px) {
  .vd-aff-testimonials {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ======================================================================
   BENEFITS BENTO — cohesive orange theme with hero + 5 cards
   ====================================================================== */
.vd-aff-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: var(--vd-space-card);
}

@media (min-width: 700px) {
  .vd-aff-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vd-aff-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 18px;
  }
  .vd-aff-bento-hero {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.vd-aff-bento-card {
  position: relative;
  padding: 26px;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.vd-aff-bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--vd-primary-border);
  box-shadow: var(--vd-shadow-md);
}

.vd-aff-bento-card h3 {
  margin: 0;
  color: var(--vd-text);
}

.vd-aff-bento-card p {
  margin: 0;
  color: var(--vd-text-muted);
  line-height: 1.55;
}

.vd-aff-bento-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--vd-primary-subtle);
  color: var(--vd-primary);
  border: 1px solid var(--vd-primary-border);
  flex-shrink: 0;
}

/* Hero card */
.vd-aff-bento-hero {
  padding: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,107,0,0.18), transparent 55%),
    linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.02));
  border-color: var(--vd-primary-border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .vd-aff-bento-hero {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 36px;
  }
}

.vd-aff-bento-hero-visual {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vd-aff-bento-hero-pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  color: var(--vd-primary);
  background: linear-gradient(135deg, var(--vd-primary), #ff9345);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}
.vd-aff-bento-hero-pct sup {
  font-size: 38px;
  top: -0.5em;
  letter-spacing: 0;
  margin-left: 2px;
}

.vd-aff-bento-hero-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed var(--vd-primary-border);
  animation: vd-aff-rotate 24s linear infinite;
}
.vd-aff-bento-hero-arc::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--vd-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(255,107,0,0.15);
}
@keyframes vd-aff-rotate {
  to { transform: rotate(360deg); }
}

.vd-aff-bento-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--vd-primary);
  margin-bottom: 10px;
}

.vd-aff-bento-hero-body h3 {
  margin-bottom: 10px;
}

.vd-aff-bento-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
}
.vd-aff-bento-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--vd-text);
  font-weight: 500;
}
.vd-aff-bento-hero-meta svg {
  color: var(--vd-primary);
}

/* Stat card (generic large number with small unit) */
.vd-aff-bento-stat .vd-aff-bento-big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--vd-text);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.vd-aff-bento-stat .vd-aff-bento-big em {
  font-style: normal;
  font-size: 20px;
  font-weight: 600;
  color: var(--vd-primary);
  letter-spacing: 0;
}

/* Leads bonus card */
.vd-aff-bento-leads-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: auto;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--vd-primary-subtle), transparent);
  border: 1px solid var(--vd-primary-border);
  border-radius: 12px;
  align-self: flex-start;
  font-variant-numeric: tabular-nums;
}
.vd-aff-bento-leads-plus {
  font-size: 20px;
  font-weight: 700;
  color: var(--vd-primary);
  line-height: 1;
}
.vd-aff-bento-leads-currency {
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-primary);
  letter-spacing: 0;
}
.vd-aff-bento-leads-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--vd-primary);
  line-height: 1;
}
.vd-aff-bento-leads-unit {
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-muted);
  letter-spacing: 0.3px;
  margin-left: 4px;
}

/* Dashboard card */
.vd-aff-bento-dash {
  position: relative;
}
.vd-aff-bento-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
  margin-top: auto;
}
.vd-aff-bento-dash-bars i {
  flex: 1;
  background: linear-gradient(180deg, var(--vd-primary), rgba(255,107,0,0.25));
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.vd-aff-bento-dash:hover .vd-aff-bento-dash-bars i {
  transform: scaleY(1.1);
}

/* Kit card (brand materials) */
.vd-aff-bento-kit-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: auto;
}
.vd-aff-bento-kit-tiles span {
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--vd-primary-subtle);
  border: 1px solid var(--vd-primary-border);
  transition: background 0.3s ease, transform 0.3s ease;
}
.vd-aff-bento-kit-tiles span:nth-child(1)::before,
.vd-aff-bento-kit-tiles span:nth-child(2)::before,
.vd-aff-bento-kit-tiles span:nth-child(3)::before,
.vd-aff-bento-kit-tiles span:nth-child(4)::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: 8px 8px;
}
.vd-aff-bento-kit-tiles span:nth-child(1) { background: linear-gradient(135deg, rgba(255,107,0,0.3), rgba(255,107,0,0.08)); }
.vd-aff-bento-kit-tiles span:nth-child(2) {
  background: var(--vd-primary-subtle);
  background-image: repeating-linear-gradient(45deg, var(--vd-primary-border) 0 2px, transparent 2px 6px);
}
.vd-aff-bento-kit-tiles span:nth-child(3) {
  background: linear-gradient(180deg, var(--vd-primary-subtle), transparent);
  border: 1px solid var(--vd-primary);
}
.vd-aff-bento-kit-tiles span:nth-child(4) {
  background: var(--vd-primary);
  opacity: 0.9;
}

.vd-aff-bento-card:hover .vd-aff-bento-kit-tiles span {
  transform: scale(1.05);
}

/* Payment card */
.vd-aff-bento-pay-methods {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.vd-aff-bento-pay-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--vd-primary-subtle);
  border: 1px solid var(--vd-primary-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text);
  letter-spacing: 0.2px;
}
.vd-aff-bento-pay-pill strong {
  color: #0070BA;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* Free card */
.vd-aff-bento-free-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--vd-primary), #ff8a3d);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: 100px;
  margin-top: auto;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(255,107,0,0.3);
}

/* ============================================
   FEATURE PAGE — template-feature.php
   ============================================ */

/* --- Feature Hero --- */
.vd-feat-hero {
  position: relative;
  padding: 140px 0 0;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 767px) {
  .vd-feat-hero {
    padding: 100px 0 0;
  }
}

/* Radial gradient glow behind hero */
.vd-feat-hero-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(255,107,0,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 25% at 60% 20%, rgba(139,92,246,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Grid pattern background */
.vd-feat-hero-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

html.light .vd-feat-hero-glow {
  background: radial-gradient(
    ellipse at center,
    rgba(224,95,0,0.08) 0%,
    rgba(224,95,0,0.02) 35%,
    transparent 65%
  );
}

html.light .vd-feat-hero-grid-bg {
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}

.vd-feat-hero .vd-container {
  position: relative;
  z-index: 1;
}

.vd-feat-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.vd-feat-hero-content .vd-display {
  margin-top: 20px;
}

.vd-feat-hero-content .vd-body {
  margin-top: 20px;
  color: var(--vd-text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.vd-feat-hero-input {
  max-width: 520px;
  margin: 32px auto 0;
}

.vd-feat-hero .vd-input-link {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 4px 16px rgba(0,0,0,0.2);
}

.vd-feat-hero .vd-input-link:focus-within {
  border-color: var(--vd-primary-border);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}

html.light .vd-feat-hero .vd-input-link {
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  box-shadow: var(--vd-shadow-sm);
  backdrop-filter: none;
}

html.light .vd-feat-hero .vd-input-link:focus-within {
  border-color: var(--vd-primary);
  box-shadow: 0 0 0 3px rgba(224,95,0,0.1);
}

/* Social proof row */
.vd-feat-hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.vd-feat-hero-avatars {
  display: flex;
}

.vd-feat-hero-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--vd-bg);
}

.vd-feat-hero-avatar + .vd-feat-hero-avatar {
  margin-left: -6px;
}

/* Hero screenshot / mockup image */
.vd-feat-hero-screenshot {
  position: relative;
  margin-top: 64px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.vd-feat-hero-screenshot-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.12) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.vd-feat-hero-screenshot img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  box-shadow: 0 -4px 60px rgba(0,0,0,0.3);
}

html.light .vd-feat-hero-screenshot img {
  border-color: var(--vd-stroke);
  box-shadow: 0 -4px 40px rgba(0,0,0,0.08);
}

@media (max-width: 767px) {
  .vd-feat-hero-screenshot {
    margin-top: 40px;
  }
}

/* Full app screenshot below hero mockup */
.vd-feat-hero-app-screenshot {
  position: relative;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.vd-feat-hero-app-screenshot img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 60px rgba(0,0,0,0.3);
}

.vd-feat-hero-app-screenshot::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--vd-bg));
  z-index: 2;
  pointer-events: none;
}

html.light .vd-feat-hero-app-screenshot img {
  border-color: var(--vd-stroke);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.08);
}

@media (max-width: 767px) {
  .vd-feat-hero-app-screenshot {
    margin-top: 32px;
    border-radius: 12px 12px 0 0;
  }
  .vd-feat-hero-app-screenshot img {
    border-radius: 12px 12px 0 0;
  }
}

/* --- Feature Showcase (alternating blocks) --- */
.vd-feat-showcase {
  padding: var(--vd-space-section) 0;
}

.vd-feat-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: var(--vd-space-section) 0;
  position: relative;
}

.vd-feat-block + .vd-feat-block {
  border-top: 1px solid var(--vd-stroke);
}

@media (min-width: 1024px) {
  .vd-feat-block {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .vd-feat-block--reversed {
    direction: rtl;
  }

  .vd-feat-block--reversed > * {
    direction: ltr;
  }
}

/* Feature block text */
.vd-feat-block-text {
  max-width: 520px;
}

@media (min-width: 1024px) {
  .vd-feat-block--reversed .vd-feat-block-text {
    margin-left: auto;
  }
}

/* Feature pill badge */
.vd-feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: var(--vd-radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-primary);
  background: var(--vd-primary-subtle);
  border: 1px solid var(--vd-primary-border);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(255,107,0,0.08);
}

.vd-feat-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.vd-feat-block-text h2 {
  margin-bottom: 16px;
}

.vd-feat-block-text .vd-body {
  color: var(--vd-text-muted);
  line-height: 1.7;
}

/* Feature block media / screenshot */
.vd-feat-block-media {
  position: relative;
  overflow: hidden;
}

.vd-feat-block-media-glow {
  position: absolute;
  inset: -5%;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,107,0,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 30% 70%, rgba(139,92,246,0.05) 0%, transparent 50%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.vd-feat-block-media:hover .vd-feat-block-media-glow,
.vd-feat-block.is-visible .vd-feat-block-media-glow {
  opacity: 1;
}

.vd-feat-block-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vd-feat-block-media:hover img {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}

html.light .vd-feat-block-media img {
  border-color: var(--vd-stroke);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

html.light .vd-feat-block-media:hover img {
  box-shadow: 0 28px 70px rgba(0,0,0,0.12);
}

html.light .vd-feat-block-media-glow {
  background: radial-gradient(ellipse at center, rgba(224,95,0,0.06) 0%, transparent 70%);
}

@media (max-width: 767px) {
  .vd-feat-block {
    gap: 32px;
  }

  .vd-feat-block-text {
    max-width: 100%;
  }
}

/* --- Benefits Grid Section --- */
.vd-feat-benefits {
  position: relative;
  background: var(--vd-surface);
  overflow: hidden;
}

/* Dot pattern decoration */
.vd-feat-benefits-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 60% 40% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 40% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

html.light .vd-feat-benefits-dots {
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
}

.vd-feat-benefits > .vd-container {
  position: relative;
  z-index: 1;
}

.vd-feat-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

/* Benefit card */
.vd-feat-benefit-card {
  padding: 32px;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.vd-feat-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vd-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.vd-feat-benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,107,0,0.04) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.vd-feat-benefit-card:hover {
  border-color: var(--vd-primary-border);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 0 0 1px var(--vd-primary-border);
}

.vd-feat-benefit-card:hover::before {
  opacity: 1;
}

.vd-feat-benefit-card:hover::after {
  opacity: 1;
}

html.light .vd-feat-benefit-card {
  background: var(--vd-card);
  box-shadow: var(--vd-shadow-sm);
}

html.light .vd-feat-benefit-card:hover {
  box-shadow: var(--vd-shadow-lg);
}

/* Benefit icon */
.vd-feat-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--vd-primary-subtle);
  border: 1px solid var(--vd-primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--vd-primary);
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}

.vd-feat-benefit-card:hover .vd-feat-benefit-icon {
  background: var(--vd-primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(255,107,0,0.25);
}

.vd-feat-benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8px;
}

.vd-feat-benefit-card h3 {
  margin-bottom: 8px;
}

.vd-feat-benefit-card .vd-body-sm {
  color: var(--vd-text-muted);
  line-height: 1.65;
}

/* --- FAQ Section --- */
.vd-feat-faq {
  position: relative;
}

/* --- Final CTA Section --- */
.vd-feat-final-cta {
  text-align: center;
  position: relative;
  background: var(--vd-surface);
  overflow: hidden;
}

.vd-feat-final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 800px;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255,107,0,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 35% 45%, rgba(139,92,246,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 65% 55%, rgba(59,130,246,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

html.light .vd-feat-final-cta-glow {
  background: radial-gradient(
    ellipse at center,
    rgba(224,95,0,0.08) 0%,
    rgba(224,95,0,0.02) 40%,
    transparent 65%
  );
}

.vd-feat-final-cta-content {
  position: relative;
  z-index: 1;
}

.vd-feat-final-cta-content .vd-display {
  background: linear-gradient(135deg, var(--vd-text) 0%, var(--vd-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vd-feat-final-cta-content .vd-body {
  max-width: 480px;
  margin: 16px auto 0;
  color: var(--vd-text-muted);
}

.vd-feat-final-cta-input {
  max-width: 520px;
  margin: 32px auto 0;
}

/* --- Feature page responsive tweaks --- */
@media (max-width: 767px) {
  .vd-feat-hero-content .vd-display {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .vd-feat-block-text h2 {
    font-size: 26px;
    letter-spacing: -0.6px;
  }

  .vd-feat-final-cta-content .vd-display {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .vd-feat-benefit-card {
    padding: 24px;
  }
}

/* --- Feature page animations --- */
@keyframes vd-feat-glow-pulse {
  0%, 100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

.vd-feat-hero-glow {
  animation: vd-feat-glow-pulse 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .vd-feat-hero-glow {
    animation: none;
  }

  .vd-feat-block-media img {
    transition: none;
  }

  .vd-feat-benefit-card {
    transition: none;
  }

  .vd-feat-benefit-card::before {
    transition: none;
  }
}

/* ==========================================================
   AI Clipping Feature Page — CSS Mockups
   ========================================================== */

/* --- Shared mockup container --- */
.vd-feat-mock {
  border-radius: var(--vd-radius-card);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(145deg, var(--vd-card) 0%, rgba(20,20,30,0.95) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 4px 16px rgba(0,0,0,0.2),
    0 24px 64px rgba(0,0,0,0.35);
  padding: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.vd-feat-mock::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}

html.light .vd-feat-mock {
  background: linear-gradient(145deg, var(--vd-card) 0%, var(--vd-bg) 100%);
  border-color: var(--vd-stroke);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.04),
    0 24px 64px rgba(0,0,0,0.08);
  backdrop-filter: none;
}

html.light .vd-feat-mock::before {
  display: none;
}

/* ==========================================================
   HERO MOCKUP — Floating Phone Clips
   ========================================================== */
.vd-feat-hero-phones {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0 10px;
}

.vd-feat-phone {
  position: relative;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: vd-feat-phoneFloat 6s ease-in-out infinite;
}

.vd-feat-phone:hover {
  box-shadow:
    0 16px 48px rgba(0,0,0,0.5),
    0 0 60px rgba(255,107,0,0.08);
}

html.light .vd-feat-phone {
  border-color: var(--vd-stroke);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.vd-feat-phone-1 {
  width: 160px;
  transform: rotate(-6deg) translateY(20px);
  animation-delay: 0s;
  z-index: 1;
}

.vd-feat-phone-2 {
  width: 190px;
  transform: translateY(-10px);
  animation-delay: 1s;
  z-index: 3;
}

.vd-feat-phone-3 {
  width: 160px;
  transform: rotate(6deg) translateY(20px);
  animation-delay: 2s;
  z-index: 1;
}

.vd-feat-phone-screen {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--vd-surface);
}

.vd-feat-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-phone-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vd-feat-phone-caption {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.vd-feat-phone-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vd-feat-phone-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
}

.vd-feat-phone-dur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

.vd-feat-phone-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}

.vd-feat-phone-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.vd-feat-phone:hover .vd-feat-phone-play {
  opacity: 1;
}

.vd-feat-phone-platform {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.vd-feat-phone-plat-tk {
  background: rgba(0,0,0,0.6);
  color: #ff0050;
}

.vd-feat-phone-plat-ig {
  background: rgba(0,0,0,0.6);
  color: #e1306c;
}

.vd-feat-phone-plat-yt {
  background: rgba(0,0,0,0.6);
  color: #ff0000;
}

@keyframes vd-feat-phoneFloat {
  0%, 100% { transform: var(--phone-base, none) translateY(0); }
  50% { transform: var(--phone-base, none) translateY(-8px); }
}

.vd-feat-phone-1 { --phone-base: rotate(-6deg) translateY(20px); }
.vd-feat-phone-2 { --phone-base: translateY(-10px); }
.vd-feat-phone-3 { --phone-base: rotate(6deg) translateY(20px); }

@media (max-width: 640px) {
  .vd-feat-hero-phones {
    gap: 10px;
  }
  .vd-feat-phone-1 {
    width: 110px;
  }
  .vd-feat-phone-2 {
    width: 140px;
  }
  .vd-feat-phone-3 {
    width: 110px;
  }
  .vd-feat-phone-caption {
    font-size: 10px;
  }
}


/* ==========================================================
   BLOCK 1 — AI Scanning + Clip Cards
   ========================================================== */
.vd-feat-mock-scan {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vd-feat-scan-source {
  position: relative;
  border-radius: var(--vd-radius-input);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--vd-surface);
  box-shadow: var(--vd-shadow-lg);
}

.vd-feat-scan-source img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-scan-beam {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vd-primary);
  box-shadow: 0 0 16px rgba(255,107,0,0.7), 0 0 32px rgba(255,107,0,0.4);
  z-index: 3;
  animation: vd-feat-scanLine 5s ease-in-out infinite;
}

.vd-feat-scan-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(255,107,0,0.12), rgba(255,107,0,0.04));
  z-index: 2;
  animation: vd-feat-scanFill 5s ease-in-out infinite;
}

.vd-feat-scan-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-primary);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vd-feat-scan-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vd-primary);
  animation: vd-feat-dotPulse 1.5s ease-in-out infinite;
}

/* Clip result cards */
.vd-feat-scan-results {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vd-feat-scan-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-input);
  opacity: 0;
  transform: translateY(12px);
  animation: vd-feat-cardAppear 0.5s ease forwards;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.vd-feat-scan-card:hover {
  border-color: var(--vd-primary-border);
  background: rgba(255,107,0,0.03);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateX(4px);
}

.vd-feat-sc-1 { animation-delay: 1.0s; }
.vd-feat-sc-2 { animation-delay: 1.5s; }
.vd-feat-sc-3 { animation-delay: 2.0s; }
.vd-feat-sc-4 { animation-delay: 2.5s; }

.vd-feat-sc-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.vd-feat-sc-thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--vd-radius-tag);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--vd-surface);
}

.vd-feat-sc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-sc-thumb svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  color: rgba(255,255,255,0.8);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity 0.2s;
}

.vd-feat-scan-card:hover .vd-feat-sc-thumb svg {
  opacity: 1;
}

.vd-feat-sc-left > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.vd-feat-sc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vd-feat-sc-dur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--vd-text-faint);
}

.vd-feat-sc-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding: 3px 10px;
  border-radius: 8px;
  flex-shrink: 0;
  min-width: 36px;
  text-align: center;
}

.vd-feat-sc-score-green { background: #22c55e; }
.vd-feat-sc-score-blue { background: #3b82f6; }
.vd-feat-sc-score-yellow { background: #f59e0b; }
.vd-feat-sc-score-red { background: #ef4444; }

html.light .vd-feat-scan-source {
  background: var(--vd-stroke);
}

html.light .vd-feat-scan-badge {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

/* ==========================================================
   BLOCK 2 — Virality Score Gauge
   ========================================================== */
.vd-feat-mock-score {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vd-feat-score-top {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vd-feat-score-gauge-wrap {
  position: relative;
  flex-shrink: 0;
}

.vd-feat-score-gauge {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
}

.vd-feat-score-gauge-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    #22c55e 0deg,
    #3b82f6 120deg,
    #8b5cf6 240deg,
    rgba(255,255,255,0.05) 240deg,
    rgba(255,255,255,0.05) 360deg
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 10px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 10px));
  animation: vd-feat-gaugeFill 2s ease-out forwards;
  transform: rotate(-90deg);
}

.vd-feat-score-glow-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    rgba(34,197,94,0.15) 0deg,
    rgba(59,130,246,0.15) 120deg,
    rgba(139,92,246,0.15) 240deg,
    transparent 240deg
  );
  filter: blur(12px);
  opacity: 0;
  animation: vd-feat-glowAppear 1s ease 2s forwards;
  transform: rotate(-90deg);
  pointer-events: none;
}

.vd-feat-score-gauge-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.vd-feat-score-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 800;
  color: var(--vd-text);
  line-height: 1;
}

.vd-feat-score-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Clip info beside gauge */
.vd-feat-score-clip-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.vd-feat-score-clip-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--vd-radius-input);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--vd-surface);
}

.vd-feat-score-clip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-score-clip-thumb svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.vd-feat-score-clip-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--vd-text);
  display: block;
}

.vd-feat-score-clip-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--vd-text-faint);
  display: block;
  margin-top: 2px;
}

/* Score category bars */
.vd-feat-score-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vd-feat-score-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vd-feat-score-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-muted);
  width: 90px;
  flex-shrink: 0;
}

.vd-feat-score-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  overflow: hidden;
}

html.light .vd-feat-score-bar-track {
  background: rgba(0,0,0,0.06);
}

.vd-feat-score-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--bar-color);
  width: 0;
  animation: vd-feat-barGrow 1.5s ease-out forwards;
}

.vd-feat-sbf-1 { animation-delay: 1.5s; }
.vd-feat-sbf-2 { animation-delay: 1.8s; }
.vd-feat-sbf-3 { animation-delay: 2.1s; }

.vd-feat-score-bar-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--vd-text);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .vd-feat-score-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .vd-feat-score-clip-info {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================
   BLOCK 3 — Mini Timeline Editor
   ========================================================== */
.vd-feat-mock-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vd-feat-tl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--vd-space-inner) var(--vd-space-tight);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-btn);
}

.vd-feat-tl-toolbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vd-feat-tl-tool-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--vd-card);
  border: 1px solid var(--vd-stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-text-faint);
}

.vd-feat-tl-play-btn {
  background: var(--vd-primary);
  border-color: var(--vd-primary);
  color: #fff;
}

.vd-feat-tl-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--vd-text-faint);
}

.vd-feat-tl-export-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--vd-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  animation: vd-feat-exportPulse 3s ease-in-out infinite;
}

.vd-feat-tl-export-btn svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

/* Ruler */
.vd-feat-tl-ruler {
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  margin-top: 4px;
}

.vd-feat-tl-ruler span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--vd-text-faint);
}

/* Tracks area */
.vd-feat-tl-tracks {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
}

/* Playhead */
.vd-feat-tl-playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vd-primary);
  z-index: 10;
  box-shadow: 0 0 8px rgba(255,107,0,0.4);
  animation: vd-feat-playhead 6s linear infinite;
}

.vd-feat-tl-playhead::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vd-primary);
}

/* Single track row */
.vd-feat-tl-track {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 32px;
}

.vd-feat-tl-track-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}

.vd-feat-tl-track-bar {
  flex: 1;
  height: 100%;
  position: relative;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}

html.light .vd-feat-tl-track-bar {
  background: rgba(0,0,0,0.03);
}

/* Track segments */
.vd-feat-tl-seg {
  position: absolute;
  top: 2px;
  bottom: 2px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

html.light .vd-feat-tl-seg {
  border-color: rgba(0,0,0,0.08);
}

/* Waveform inside audio track */
.vd-feat-tl-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
  padding: 4px 8px;
}

.vd-feat-tl-waveform > div {
  flex: 1;
  background: rgba(34,197,94,0.5);
  border-radius: 2px;
  animation: vd-feat-waveBar 2s ease-in-out infinite;
}

.vd-feat-tl-waveform > div:nth-child(odd) {
  animation-delay: 0.3s;
}

.vd-feat-tl-waveform > div:nth-child(3n) {
  animation-delay: 0.6s;
}

/* Caption segments */
.vd-feat-tl-cap-text {
  font-size: 9px;
  font-weight: 600;
  color: rgba(245,158,11,0.8);
  white-space: nowrap;
  padding: 0 6px;
  line-height: 28px;
}

/* Caption preview below timeline */
.vd-feat-tl-caption-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  margin-top: 4px;
}

html.light .vd-feat-tl-caption-preview {
  background: rgba(0,0,0,0.06);
}

.vd-feat-tl-cp-word {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s, transform 0.3s;
}

html.light .vd-feat-tl-cp-word {
  color: rgba(0,0,0,0.25);
}

.vd-feat-cp-highlight {
  color: var(--vd-primary) !important;
  transform: scale(1.05);
}

.vd-feat-cp-w1 { animation: vd-feat-wordCycle 4s ease infinite 0s; }
.vd-feat-cp-w2 { animation: vd-feat-wordCycle 4s ease infinite 1s; }
.vd-feat-cp-w3 { animation: vd-feat-wordCycle 4s ease infinite 2s; }
.vd-feat-cp-w4 { animation: vd-feat-wordCycle 4s ease infinite 3s; }

/* Captions image in timeline */
.vd-feat-tl-captions-img {
  margin: 8px 16px 16px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--vd-stroke);
  max-height: 160px;
}

.vd-feat-tl-captions-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 480px) {
  .vd-feat-tl-ruler {
    padding: 0 52px;
  }
  .vd-feat-tl-track-label {
    width: 36px;
    font-size: 10px;
  }
}

/* ==========================================================
   BLOCK 4 — Social Publishing Calendar
   ========================================================== */
.vd-feat-mock-publish {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Platform icons row */
.vd-feat-pub-platforms {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.vd-feat-pub-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.vd-feat-pub-platform-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--vd-radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vd-feat-pub-connected .vd-feat-pub-platform-icon {
  border-color: var(--vd-primary-border);
  box-shadow: 0 0 0 2px rgba(255,107,0,0.08);
}

.vd-feat-pub-platform span {
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-faint);
}

.vd-feat-pub-check {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 6px rgba(34,197,94,0.4);
}

.vd-feat-pub-tiktok svg { color: #ff0050; }
.vd-feat-pub-insta svg { color: #e1306c; }
.vd-feat-pub-yt svg { color: #ff0000; }

/* Scheduled clip preview */
.vd-feat-pub-scheduled-clip {
  display: flex;
  align-items: center;
  gap: var(--vd-space-tight);
  padding: var(--vd-space-tight) var(--vd-space-card-inner);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-input);
  transition: border-color 0.2s;
}

.vd-feat-pub-scheduled-clip:hover {
  border-color: var(--vd-primary-border);
}

.vd-feat-pub-clip-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--vd-radius-btn);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--vd-surface);
}

.vd-feat-pub-clip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-pub-clip-thumb svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.8);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

.vd-feat-pub-clip-info {
  flex: 1;
  min-width: 0;
}

.vd-feat-pub-clip-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vd-feat-pub-clip-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--vd-text-faint);
  display: block;
  margin-top: 2px;
}

.vd-feat-pub-clip-platforms {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.vd-feat-pub-mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

html.light .vd-feat-pub-scheduled-clip {
  background: var(--vd-card);
}

/* Calendar grid */
.vd-feat-pub-calendar {
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-card);
  overflow: hidden;
}

.vd-feat-pub-cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px 0;
  border-bottom: 1px solid var(--vd-stroke);
}

.vd-feat-pub-cal-header span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vd-feat-pub-cal-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.vd-feat-pub-cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  position: relative;
  transition: background 0.2s;
}

.vd-feat-pub-cal-day:hover {
  background: rgba(255,107,0,0.04);
}

.vd-feat-pub-cal-day > span {
  font-size: 12px;
  font-weight: 500;
  color: var(--vd-text-muted);
}

.vd-feat-pub-today {
  background: rgba(255,107,0,0.08);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255,107,0,0.15);
}

.vd-feat-pub-today > span {
  color: var(--vd-primary);
  font-weight: 700;
}

.vd-feat-pub-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Status bar */
.vd-feat-pub-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--vd-space-tight) var(--vd-space-card-inner);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: var(--vd-radius-input);
}

.vd-feat-pub-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #22c55e;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  animation: vd-feat-badgeAppear 0.6s ease 2.5s forwards;
}

.vd-feat-pub-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vd-feat-pub-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--vd-text-faint);
}

.vd-feat-pub-stat svg {
  color: var(--vd-text-faint);
}

.vd-feat-pub-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-muted);
}

html.light .vd-feat-pub-calendar {
  background: var(--vd-card);
}

html.light .vd-feat-pub-status {
  background: var(--vd-card);
}

/* ==========================================================
   KEYFRAME ANIMATIONS — AI Clipping Feature Page
   ========================================================== */

/* Scan line moves across video */
@keyframes vd-feat-scanLine {
  0% { left: 0; }
  50% { left: 100%; }
  50.01% { left: 0; opacity: 0; }
  55% { opacity: 1; }
  100% { left: 100%; }
}

/* Scan fill follows the beam */
@keyframes vd-feat-scanFill {
  0% { width: 0; }
  50% { width: 100%; }
  50.01% { width: 0; }
  100% { width: 100%; }
}

/* Dot pulse */
@keyframes vd-feat-dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Arrow pulse */
@keyframes vd-feat-arrowPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Clip cards slide in from right */
@keyframes vd-feat-clipSlideIn {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Card appear from bottom */
@keyframes vd-feat-cardAppear {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Gauge fill from 0 to 240deg (67% of circle for score 92) */
@keyframes vd-feat-gaugeFill {
  0% {
    background: conic-gradient(
      #22c55e 0deg,
      rgba(255,255,255,0.05) 0deg,
      rgba(255,255,255,0.05) 360deg
    );
  }
  100% {
    background: conic-gradient(
      #22c55e 0deg,
      #3b82f6 120deg,
      #8b5cf6 240deg,
      rgba(255,255,255,0.05) 240deg,
      rgba(255,255,255,0.05) 360deg
    );
  }
}

/* Glow appears after gauge fills */
@keyframes vd-feat-glowAppear {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Score bars grow */
@keyframes vd-feat-barGrow {
  0% { width: 0; }
  100% { width: var(--bar-w); }
}

/* Playhead moves across timeline */
@keyframes vd-feat-playhead {
  0% { left: 60px; }
  100% { left: calc(100% - 10px); }
}

/* Export button pulse */
@keyframes vd-feat-exportPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
  50% { box-shadow: 0 0 0 4px rgba(255,107,0,0.2); }
}

/* Waveform bar animation */
@keyframes vd-feat-waveBar {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Word cycle highlight */
@keyframes vd-feat-wordCycle {
  0%, 10% { color: var(--vd-primary); transform: scale(1.08); }
  25%, 100% { color: rgba(255,255,255,0.4); transform: scale(1); }
}

html.light {
  @keyframes vd-feat-wordCycle {
    0%, 10% { color: var(--vd-primary); transform: scale(1.08); }
    25%, 100% { color: rgba(0,0,0,0.25); transform: scale(1); }
  }
}

/* Connection line pulse (legacy) */
@keyframes vd-feat-connPulse {
  0%, 100% { opacity: 0.3; height: 12px; }
  50% { opacity: 1; height: 16px; }
}

/* Published badge appear */
@keyframes vd-feat-badgeAppear {
  0% { opacity: 0; transform: translateY(4px) scale(0.9); }
  60% { opacity: 1; transform: translateY(-2px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================
   REDUCED MOTION — AI Clipping Feature Page
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  .vd-feat-hero-scan-line,
  .vd-feat-hero-scan-overlay,
  .vd-feat-scan-beam,
  .vd-feat-scan-fill,
  .vd-feat-tl-playhead,
  .vd-feat-score-gauge-ring,
  .vd-feat-score-glow-ring,
  .vd-feat-score-bar-fill,
  .vd-feat-hero-clip,
  .vd-feat-scan-card,
  .vd-feat-pub-status-badge,
  .vd-feat-tl-export-btn,
  .vd-feat-tl-waveform > div,
  .vd-feat-tl-cp-word {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: var(--bar-w, auto) !important;
  }
}

/* ==========================================================
   NEW FEATURE PAGE MOCKUPS
   ========================================================== */

/* --- Editor Hero CSS Mockup --- */
.vd-feat-editor-mock {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--vd-radius-card);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(145deg, var(--vd-card) 0%, rgba(20,20,30,0.95) 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 24px 64px rgba(0,0,0,0.35);
  overflow: hidden;
}

.vd-feat-ed-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--vd-stroke);
}

.vd-feat-ed-dots {
  display: flex;
  gap: 6px;
}

.vd-feat-ed-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.vd-feat-ed-toolbar {
  display: flex;
  gap: 4px;
}

.vd-feat-ed-tbtn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-text-faint);
}

.vd-feat-ed-play {
  background: var(--vd-primary);
  border-color: var(--vd-primary);
  color: #fff;
}

.vd-feat-ed-export {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--vd-primary);
  padding: 5px 12px;
  border-radius: 6px;
}

.vd-feat-ed-body {
  display: flex;
  min-height: 220px;
}

.vd-feat-ed-sidebar {
  width: 40px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--vd-stroke);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 0;
}

.vd-feat-ed-si {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-text-faint);
}

.vd-feat-ed-si.active {
  background: var(--vd-primary-subtle);
  color: var(--vd-primary);
}

.vd-feat-ed-preview {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a12;
  overflow: hidden;
}

.vd-feat-ed-preview img {
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.vd-feat-ed-caption-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  white-space: nowrap;
}

.vd-feat-ed-caption-overlay strong {
  color: var(--vd-primary);
}

.vd-feat-ed-timeline {
  position: relative;
  padding: 10px 12px;
  border-top: 1px solid var(--vd-stroke);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vd-feat-ed-tl-playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 35%;
  width: 2px;
  background: var(--vd-primary);
  z-index: 5;
  box-shadow: 0 0 6px rgba(255,107,0,0.4);
}

.vd-feat-ed-tl-playhead::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vd-primary);
}

.vd-feat-ed-tl-track {
  height: 18px;
  position: relative;
  border-radius: 3px;
  background: rgba(255,255,255,0.02);
}

.vd-feat-ed-tl-track > div {
  position: absolute;
  top: 2px;
  bottom: 2px;
  border-radius: 2px;
}

html.light .vd-feat-editor-mock {
  background: linear-gradient(145deg, var(--vd-card) 0%, var(--vd-bg) 100%);
  border-color: var(--vd-stroke);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

/* Editor toolbar separator */
.vd-feat-ed-sep {
  width: 1px;
  height: 16px;
  background: var(--vd-stroke);
  margin: 0 4px;
}

.vd-feat-ed-zoom {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--vd-text-faint);
}

/* Editor preview - use wide image */
.vd-feat-ed-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Crop handles */
.vd-feat-ed-handles {
  position: absolute;
  inset: 8%;
  pointer-events: none;
}

.vd-feat-ed-h {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,0.6);
}

.vd-feat-ed-h.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.vd-feat-ed-h.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.vd-feat-ed-h.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.vd-feat-ed-h.br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Format badge */
.vd-feat-ed-format-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--vd-primary);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--vd-primary-border);
}

/* Timeline bar */
.vd-feat-ed-tl-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-bottom: 1px solid var(--vd-stroke);
}

.vd-feat-ed-tl-tools {
  display: flex;
  gap: 3px;
}

.vd-feat-ed-tl-tbtn {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-text-faint);
}

.vd-feat-ed-tl-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--vd-text-faint);
  margin-left: auto;
}

.vd-feat-ed-tl-fmt {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: var(--vd-primary);
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--vd-primary-subtle);
  border: 1px solid var(--vd-primary-border);
}

/* Timeline ruler */
.vd-feat-ed-tl-ruler {
  display: flex;
  justify-content: space-between;
  padding: 4px 12px;
}

.vd-feat-ed-tl-ruler span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--vd-text-faint);
}

/* Timeline tracks container */
.vd-feat-ed-tl-tracks {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 12px 12px;
}

/* Face tracking in editor preview */
.vd-feat-ed-face-box {
  position: absolute;
  top: 8%;
  left: 30%;
  width: 28%;
  height: 55%;
  border: 2px dashed var(--vd-primary);
  border-radius: 8px;
  animation: vd-feat-trackPulse 2s ease-in-out infinite;
  pointer-events: none;
}

.vd-feat-ed-face-tag {
  position: absolute;
  top: 5%;
  left: 44%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--vd-primary);
  padding: 2px 8px;
  border-radius: 4px;
  pointer-events: none;
}

/* Animated playhead */
.vd-feat-ed-tl-playhead {
  animation: vd-feat-edPlayhead 8s linear infinite;
}

@keyframes vd-feat-edPlayhead {
  0% { left: 12%; }
  100% { left: 88%; }
}

@media (max-width: 640px) {
  .vd-feat-ed-body { min-height: 160px; }
  .vd-feat-ed-sidebar { width: 32px; }
  .vd-feat-ed-si { width: 24px; height: 24px; }
}

/* Compact Face Motion in feature block */
.vd-feat-fm-compact .vd-fm-layout {
  max-height: none;
}

/* --- Face Motion Mockup (Editor) --- */
.vd-feat-fm-preview {
  position: relative;
  border-radius: var(--vd-radius-input);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 260px;
  margin: 0 auto;
  width: fit-content;
}

.vd-feat-fm-preview img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
}

.vd-feat-fm-trackbox {
  position: absolute;
  top: 20%;
  left: 25%;
  width: 50%;
  height: 45%;
  border: 2px dashed var(--vd-primary);
  border-radius: 8px;
  animation: vd-feat-trackPulse 2s ease-in-out infinite;
}

.vd-feat-fm-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--vd-primary);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vd-feat-fm-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--vd-primary);
  animation: vd-feat-dotPulse 1.5s ease-in-out infinite;
}

.vd-feat-fm-controls {
  margin-top: 12px;
}

.vd-feat-fm-zoom-btns {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.vd-feat-fm-zbtn {
  padding: 6px 14px;
  border-radius: var(--vd-radius-btn);
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-faint);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  cursor: pointer;
}

.vd-feat-fm-zbtn-active {
  background: var(--vd-primary);
  color: #fff;
  border-color: var(--vd-primary);
}

.vd-feat-fm-info {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-faint);
}

/* --- Reframe Hero (enlarged demo) --- */
.vd-feat-reframe-hero-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.vd-feat-reframe-hero-wrap .vd-reframe-demo {
  padding: 32px 24px 16px;
  background: linear-gradient(145deg, var(--vd-card) 0%, rgba(20,20,30,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--vd-radius-card);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 24px 64px rgba(0,0,0,0.35);
}

.vd-feat-reframe-hero-wrap .vd-reframe-slide {
  gap: 28px;
}

.vd-feat-reframe-hero-wrap .vd-reframe-monitor {
  min-width: 260px;
}

.vd-feat-reframe-hero-wrap .vd-reframe-phone {
  width: 90px;
  height: 160px;
}

html.light .vd-feat-reframe-hero-wrap .vd-reframe-demo {
  background: linear-gradient(145deg, var(--vd-card) 0%, var(--vd-bg) 100%);
  border-color: var(--vd-stroke);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}

/* Legacy (unused but kept for reference) */
.vd-feat-reframe-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 650px;
  margin: 0 auto;
  padding: 20px 0;
}

.vd-feat-reframe-source {
  position: relative;
  flex: 0 1 380px;
  border-radius: var(--vd-radius-card);
  overflow: hidden;
  border: 1px solid var(--vd-stroke);
  box-shadow: var(--vd-shadow-lg);
}

.vd-feat-reframe-source img {
  width: 100%;
  display: block;
}

.vd-feat-reframe-track-box {
  position: absolute;
  top: 15%;
  left: 30%;
  width: 30%;
  height: 65%;
  border: 2px dashed var(--vd-primary);
  border-radius: 6px;
  animation: vd-feat-trackPulse 2s ease-in-out infinite;
}

@keyframes vd-feat-trackPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
  50% { box-shadow: 0 0 0 4px rgba(255,107,0,0.15); }
}

.vd-feat-reframe-label-src,
.vd-feat-reframe-label-res {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-faint);
  margin-top: 8px;
}

.vd-feat-reframe-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vd-primary);
  box-shadow: 0 0 12px rgba(255,107,0,0.6);
  z-index: 3;
  animation: vd-feat-scanLine 5s ease-in-out infinite;
}

.vd-feat-reframe-src-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--vd-primary);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vd-feat-reframe-src-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--vd-primary);
  animation: vd-feat-dotPulse 1.5s ease-in-out infinite;
}

.vd-feat-reframe-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vd-primary-subtle);
  border: 1px solid var(--vd-primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: vd-feat-arrowPulse 2s ease-in-out infinite;
}

.vd-feat-reframe-outputs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.vd-feat-reframe-out {
  text-align: center;
}

.vd-feat-reframe-out-main {
  animation: vd-feat-phoneFloat 6s ease-in-out infinite;
  --phone-base: none;
}

.vd-feat-reframe-out-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--vd-text);
  margin-top: 6px;
}

.vd-feat-reframe-out-plat {
  display: block;
  font-size: 11px;
  color: var(--vd-text-faint);
  margin-top: 2px;
}

.vd-feat-reframe-out-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vd-feat-reframe-out-mini {
  text-align: center;
}

.vd-feat-reframe-out-mini span {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--vd-text-faint);
  margin-top: 4px;
}

.vd-feat-reframe-mini-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--vd-stroke);
}

.vd-feat-reframe-mini-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-reframe-sq { width: 60px; aspect-ratio: 1/1; }
.vd-feat-reframe-45 { width: 55px; aspect-ratio: 4/5; }

.vd-feat-reframe-phone-frame {
  width: 120px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--vd-stroke);
  box-shadow: var(--vd-shadow-lg);
  aspect-ratio: 9/16;
}

.vd-feat-reframe-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .vd-feat-reframe-hero { flex-direction: column; gap: 16px; }
  .vd-feat-reframe-phone-frame { width: 100px; }
  .vd-feat-hero-flow-arrow { transform: rotate(90deg); }
}

/* --- B-Roll Grid (Editor) --- */
.vd-feat-broll-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.vd-feat-broll-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
}

.vd-feat-broll-count {
  font-size: 12px;
  color: var(--vd-text-faint);
}

.vd-feat-broll-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.vd-feat-broll-card {
  border-radius: var(--vd-radius-btn);
  overflow: hidden;
  border: 1px solid var(--vd-stroke);
  background: var(--vd-surface);
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.vd-feat-broll-card:hover {
  border-color: var(--vd-primary-border);
  transform: translateY(-2px);
}

.vd-feat-broll-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.vd-feat-broll-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-broll-dur {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 1px 5px;
  border-radius: 3px;
}

.vd-feat-broll-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-muted);
  padding: 6px 8px;
}

.vd-feat-broll-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 12px;
  background: var(--vd-surface);
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}

/* --- Silence Removal Waveform (Editor) --- */
.vd-feat-silence-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 80px;
  padding: 12px;
  background: var(--vd-surface);
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
}

.vd-feat-silence-bar {
  flex: 1;
  background: var(--vd-primary);
  border-radius: 2px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.vd-feat-silence-gap {
  background: rgba(239,68,68,0.4) !important;
  opacity: 0.5 !important;
  border: 1px dashed rgba(239,68,68,0.6);
}

.vd-feat-silence-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.vd-feat-silence-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vd-feat-silence-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 800;
  color: var(--vd-text);
}

.vd-feat-silence-stat-label {
  font-size: 11px;
  color: var(--vd-text-faint);
  font-weight: 600;
}

.vd-feat-silence-btn {
  margin-left: auto;
  padding: 8px 16px;
  border-radius: var(--vd-radius-btn);
  background: var(--vd-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* --- Format Preview Cards (Editor + Reframe) --- */
.vd-feat-formats-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.vd-feat-format-card {
  flex: 1;
  max-width: 150px;
  text-align: center;
  padding: 12px;
  border-radius: var(--vd-radius-card);
  border: 1px solid var(--vd-stroke);
  background: var(--vd-surface);
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}

.vd-feat-format-card:hover {
  border-color: var(--vd-primary-border);
  transform: translateY(-2px);
}

.vd-feat-format-selected {
  border-color: var(--vd-primary);
  box-shadow: 0 0 0 2px rgba(255,107,0,0.1);
}

.vd-feat-format-preview {
  border-radius: var(--vd-radius-btn);
  overflow: hidden;
  margin: 0 auto 8px;
  background: var(--vd-surface);
}

.vd-feat-format-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-format-9x16 { width: 50px; aspect-ratio: 9/16; margin: 0 auto 8px; }
.vd-feat-format-1x1 { width: 70px; aspect-ratio: 1/1; margin: 0 auto 8px; }
.vd-feat-format-16x9 { width: 100%; aspect-ratio: 16/9; margin-bottom: 8px; }
.vd-feat-format-4x5 { width: 65px; aspect-ratio: 4/5; margin: 0 auto 8px; }

.vd-feat-format-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--vd-text);
}

.vd-feat-format-plat {
  display: block;
  font-size: 11px;
  color: var(--vd-text-faint);
  margin-top: 2px;
}

/* --- Reframe Split Mockup --- */
.vd-feat-mock-reframe-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  overflow: visible;
}

.vd-feat-rsplit-source {
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.vd-feat-rsplit-source .vd-reframe-monitor {
  border-radius: var(--vd-radius-btn);
  overflow: hidden;
  border: 1px solid var(--vd-stroke);
}

.vd-feat-rsplit-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: var(--vd-primary);
  font-size: 12px;
  font-weight: 700;
}

.vd-feat-rsplit-result {
  flex-shrink: 0;
  text-align: center;
}

.vd-feat-rsplit-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-faint);
  margin-top: 8px;
}

@media (max-width: 640px) {
  .vd-feat-mock-reframe-split {
    flex-direction: column;
    gap: 12px;
  }
  .vd-feat-rsplit-arrow { transform: rotate(90deg); }
}

/* --- Face Tracking (Reframe) --- */
.vd-feat-mock-facetrack {
  overflow: visible;
}

.vd-feat-facetrack-frame {
  position: relative;
  border-radius: var(--vd-radius-input);
  overflow: visible;
  aspect-ratio: 16/9;
}

.vd-feat-facetrack-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-facetrack-box {
  position: absolute;
  border: 2px dashed var(--vd-primary);
  border-radius: 6px;
  animation: vd-feat-trackPulse 2s ease-in-out infinite;
}

.vd-feat-ftb-1 { top: 5%; left: 22%; width: 18%; height: 50%; }
.vd-feat-ftb-2 { top: 3%; left: 58%; width: 17%; height: 52%; animation-delay: 0.5s; }

.vd-feat-facetrack-label {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  color: var(--vd-primary);
  white-space: nowrap;
  background: rgba(0,0,0,0.7);
  padding: 2px 6px;
  border-radius: 4px;
}

.vd-feat-facetrack-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-primary);
}

.vd-feat-facetrack-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vd-primary);
  animation: vd-feat-dotPulse 1.5s ease-in-out infinite;
}

/* --- Multi-person (Reframe) --- */
.vd-feat-mock-multiperson {
  overflow: visible;
}

.vd-feat-mp-source {
  position: relative;
  border-radius: var(--vd-radius-input);
  overflow: visible;
  aspect-ratio: 16/9;
  margin-bottom: 28px;
}

.vd-feat-mp-source img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--vd-radius-input);
  border: 1px solid var(--vd-stroke);
}

.vd-feat-mp-box {
  position: absolute;
  border: 2px dashed var(--vd-primary);
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.vd-feat-mp-box span {
  background: var(--vd-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -9px;
}

.vd-feat-mp-results {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.vd-feat-mp-clip {
  width: 90px;
  text-align: center;
}

.vd-feat-mp-clip img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--vd-stroke);
  display: block;
  transition: border-color 0.2s;
}

.vd-feat-mp-clip:hover img {
  border-color: var(--vd-primary-border);
}

.vd-feat-mp-clip span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-faint);
  margin-top: 6px;
}

/* --- Batch Rendering Queue (Reframe) --- */
.vd-feat-batch-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
  background: var(--vd-surface);
  margin-bottom: 8px;
}

.vd-feat-batch-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.vd-feat-batch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-feat-batch-info {
  flex: 1;
  min-width: 0;
}

.vd-feat-batch-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vd-feat-batch-meta {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--vd-text-faint);
  margin-top: 2px;
}

.vd-feat-batch-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}

html.light .vd-feat-batch-bar { background: rgba(0,0,0,0.06); }

.vd-feat-batch-bar-fill {
  height: 100%;
  background: var(--vd-primary);
  border-radius: 2px;
  transition: width 1s ease;
}

.vd-feat-batch-status-done {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #22c55e;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.vd-feat-batch-pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--vd-primary);
  flex-shrink: 0;
}

.vd-feat-batch-status-queue {
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-faint);
  flex-shrink: 0;
}

.vd-feat-batch-queue { opacity: 0.5; }

/* --- Transcription View (Captions) --- */
.vd-feat-transcript-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.vd-feat-transcript-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--vd-text);
  padding: 4px 10px;
  border-radius: var(--vd-radius-btn);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  cursor: pointer;
}

.vd-feat-transcript-accuracy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
}

.vd-feat-transcript-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vd-feat-transcript-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid transparent;
  transition: background 0.2s;
}

.vd-feat-transcript-line:hover {
  background: rgba(255,255,255,0.02);
}

.vd-feat-transcript-active {
  border-left-color: var(--vd-primary);
  background: rgba(255,107,0,0.04);
}

.vd-feat-transcript-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--vd-text-faint);
  flex-shrink: 0;
  padding-top: 2px;
}

.vd-feat-transcript-text {
  font-size: 14px;
  color: var(--vd-text);
  line-height: 1.5;
}

/* --- Caption Styles Grid (Captions) --- */
.vd-feat-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.vd-feat-style-card {
  padding: 12px;
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
  background: var(--vd-surface);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.vd-feat-style-card:hover {
  border-color: var(--vd-primary-border);
  transform: translateY(-2px);
}

.vd-feat-style-selected {
  border-color: var(--vd-primary);
  box-shadow: 0 0 0 2px rgba(255,107,0,0.1);
}

.vd-feat-style-preview {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  margin-bottom: 8px;
}

html.light .vd-feat-style-preview { background: rgba(0,0,0,0.06); }

.vd-feat-style-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-muted);
}

@media (max-width: 480px) {
  .vd-feat-styles-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Customization Panel (Captions) --- */
.vd-feat-custom-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--vd-stroke);
}

.vd-feat-custom-row:last-of-type { border-bottom: none; }

.vd-feat-custom-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-muted);
  width: 60px;
  flex-shrink: 0;
}

.vd-feat-custom-colors {
  display: flex;
  gap: 8px;
}

.vd-feat-custom-color {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s;
}

.vd-feat-custom-color:hover { transform: scale(1.15); }

.vd-feat-custom-color-active {
  border-color: var(--vd-primary);
  box-shadow: 0 0 0 2px rgba(255,107,0,0.2);
}

.vd-feat-custom-select {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
  padding: 6px 12px;
  border-radius: var(--vd-radius-btn);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  cursor: pointer;
}

.vd-feat-custom-slider { flex: 1; }

.vd-feat-custom-slider-track {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
}

html.light .vd-feat-custom-slider-track { background: rgba(0,0,0,0.08); }

.vd-feat-custom-slider-fill {
  height: 100%;
  background: var(--vd-primary);
  border-radius: 3px;
}

.vd-feat-custom-slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--vd-primary);
  border: 2px solid var(--vd-bg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.vd-feat-custom-positions {
  display: flex;
  gap: 6px;
}

.vd-feat-custom-pos {
  padding: 5px 12px;
  border-radius: var(--vd-radius-btn);
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-text-faint);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  cursor: pointer;
  transition: all 0.2s;
}

.vd-feat-custom-pos:hover { border-color: var(--vd-primary-border); }

.vd-feat-custom-pos-active {
  background: var(--vd-primary);
  color: #fff;
  border-color: var(--vd-primary);
}

.vd-feat-custom-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--vd-radius-btn);
  margin-top: 12px;
}

html.light .vd-feat-custom-preview { background: rgba(0,0,0,0.04); }

/* --- Translation Side-by-Side (Captions) --- */
.vd-feat-translate-cols {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vd-feat-translate-col {
  flex: 1;
  padding: 12px;
  background: var(--vd-surface);
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
}

.vd-feat-translate-col-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--vd-text);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--vd-stroke);
}

.vd-feat-translate-line {
  font-size: 13px;
  color: var(--vd-text-muted);
  line-height: 1.8;
}

.vd-feat-translate-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 40px;
}

.vd-feat-translate-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  justify-content: center;
}

.vd-feat-translate-lang {
  padding: 4px 10px;
  border-radius: var(--vd-radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-faint);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
}

.vd-feat-tl-active {
  border-color: var(--vd-primary-border);
  color: var(--vd-primary);
  background: var(--vd-primary-subtle);
}

@media (max-width: 480px) {
  .vd-feat-translate-cols { flex-direction: column; }
  .vd-feat-translate-arrow { padding-top: 0; transform: rotate(90deg); }
}

/* --- Calendar with Header (Scheduler) --- */
.vd-feat-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  margin-bottom: 4px;
}

.vd-feat-cal-header svg {
  color: var(--vd-text-faint);
  cursor: pointer;
  transition: color 0.2s;
}

.vd-feat-cal-header svg:hover { color: var(--vd-text); }

.vd-feat-cal-month {
  font-size: 14px;
  font-weight: 700;
  color: var(--vd-text);
}

/* --- Platform Toggle List (Scheduler) --- */
.vd-feat-plat-clip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--vd-radius-btn);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  margin-bottom: 12px;
}

.vd-feat-plat-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.vd-feat-plat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--vd-radius-btn);
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
}

.vd-feat-plat-row span {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
}

.vd-feat-plat-toggle {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}

html.light .vd-feat-plat-toggle { background: rgba(0,0,0,0.1); }

.vd-feat-plat-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vd-text-faint);
  transition: transform 0.2s, background 0.2s;
}

.vd-feat-plat-on {
  background: var(--vd-primary);
}

.vd-feat-plat-on::after {
  transform: translateX(16px);
  background: #fff;
}

.vd-feat-plat-publish {
  padding: 10px;
  border-radius: var(--vd-radius-btn);
  background: var(--vd-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

/* --- Heatmap (Scheduler) --- */
.vd-feat-heatmap {
  margin-bottom: 12px;
}

.vd-feat-heatmap-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.vd-feat-heatmap-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--vd-text-faint);
  width: 24px;
  flex-shrink: 0;
  text-align: right;
}

.vd-feat-heatmap-cell {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--vd-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  transition: transform 0.2s;
}

.vd-feat-heatmap-cell:hover { transform: scale(1.15); }

.vd-feat-heatmap-best {
  color: #fff !important;
  box-shadow: 0 0 0 2px var(--vd-primary);
  font-size: 12px;
}

.vd-feat-heatmap-days {
  display: flex;
  gap: 4px;
  padding-left: 28px;
  margin-top: 4px;
}

.vd-feat-heatmap-days span {
  flex: 1;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  color: var(--vd-text-faint);
}

.vd-feat-smarttime-rec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--vd-surface);
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
  font-size: 12px;
  color: var(--vd-text-muted);
}

.vd-feat-smarttime-rec strong { color: var(--vd-primary); }

.vd-feat-smarttime-btn {
  padding: 6px 14px;
  border-radius: var(--vd-radius-btn);
  background: var(--vd-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* --- Analytics Dashboard (Scheduler) --- */
.vd-feat-analytics-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.vd-feat-analytics-stat {
  flex: 1;
  padding: 12px;
  background: var(--vd-surface);
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
  text-align: center;
}

.vd-feat-analytics-val {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 800;
  color: var(--vd-text);
}

.vd-feat-analytics-label {
  display: block;
  font-size: 11px;
  color: var(--vd-text-faint);
  margin-top: 2px;
}

.vd-feat-analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 0 4px;
  margin-bottom: 12px;
}

.vd-feat-analytics-bar {
  flex: 1;
  background: linear-gradient(to top, var(--vd-primary), rgba(255,107,0,0.4));
  border-radius: 4px 4px 0 0;
  position: relative;
  min-height: 10px;
}

.vd-feat-analytics-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 600;
  color: var(--vd-text-faint);
  white-space: nowrap;
}

.vd-feat-analytics-top {
  padding: 8px 12px;
  background: var(--vd-surface);
  border-radius: var(--vd-radius-btn);
  border: 1px solid var(--vd-stroke);
  font-size: 12px;
  color: var(--vd-text-muted);
  margin-top: 24px;
}

/* --- Phone caption style text (Captions Hero) --- */
.vd-feat-phone-caption-style {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}


/* ===================================================
   SOLUTION PAGES - Workflow Hero Mockup
   =================================================== */

.vd-solution-workflow {
  background: var(--vd-surface);
  border: 1px solid var(--vd-stroke);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(255, 107, 0, 0.06);
}

.vd-solution-workflow-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.vd-swf-input-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vd-swf-input-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.vd-swf-input-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--vd-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vd-swf-input-sub {
  font-size: 11px;
  color: var(--vd-text-muted);
}

.vd-swf-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  height: 24px;
  --wave-color: rgba(255, 107, 0, 0.6);
}

.vd-swf-waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--wave-color);
  animation: waveform 1.2s ease-in-out infinite alternate;
}

.vd-swf-waveform span:nth-child(odd)  { height: 8px;  animation-delay: 0s; }
.vd-swf-waveform span:nth-child(3n)   { height: 16px; animation-delay: .15s; }
.vd-swf-waveform span:nth-child(4n)   { height: 20px; animation-delay: .3s; }
.vd-swf-waveform span:nth-child(5n)   { height: 12px; animation-delay: .45s; }
.vd-swf-waveform span:nth-child(even) { height: 10px; animation-delay: .1s; }

@keyframes waveform {
  from { transform: scaleY(0.4); opacity: 0.5; }
  to   { transform: scaleY(1);   opacity: 1; }
}

.vd-swf-process {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vd-swf-process-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.vd-swf-process-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--vd-primary), #ff9a44);
  border-radius: 2px;
  animation: processFill 2s ease-in-out infinite alternate;
}

@keyframes processFill {
  from { width: 55%; }
  to   { width: 88%; }
}

.vd-swf-process-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--vd-primary);
  font-weight: 500;
}

.vd-swf-clips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.vd-swf-clip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: clipReveal 0.5s ease-out both;
  animation-delay: var(--clip-delay, 0s);
}

@keyframes clipReveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vd-swf-clip-preview {
  aspect-ratio: 9/16;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.vd-swf-clip-time {
  font-family: monospace;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}

.vd-swf-clip-caption {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

.vd-swf-clip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.vd-swf-clip-score {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.vd-swf-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--vd-primary);
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
}

/* ===================================================
   SOLUTION PAGES — Niche Theme Variables & Components
   =================================================== */

.vd-solution-podcast    { --sol-accent: #ff6b00; --sol-glow: rgba(255,107,0,0.18); --sol-bg: rgba(255,107,0,0.07); --sol-stroke: rgba(255,107,0,0.22); }
.vd-solution-streamer   { --sol-accent: #a855f7; --sol-glow: rgba(168,85,247,0.18); --sol-bg: rgba(168,85,247,0.07); --sol-stroke: rgba(168,85,247,0.22); }
.vd-solution-religious  { --sol-accent: #f59e0b; --sol-glow: rgba(245,158,11,0.18); --sol-bg: rgba(245,158,11,0.07); --sol-stroke: rgba(245,158,11,0.22); }
.vd-solution-educator   { --sol-accent: #3b82f6; --sol-glow: rgba(59,130,246,0.18); --sol-bg: rgba(59,130,246,0.07); --sol-stroke: rgba(59,130,246,0.22); }
.vd-solution-coach      { --sol-accent: #22c55e; --sol-glow: rgba(34,197,94,0.18); --sol-bg: rgba(34,197,94,0.07); --sol-stroke: rgba(34,197,94,0.22); }
.vd-solution-media      { --sol-accent: #ef4444; --sol-glow: rgba(239,68,68,0.18); --sol-bg: rgba(239,68,68,0.07); --sol-stroke: rgba(239,68,68,0.22); }
.vd-solution-agency     { --sol-accent: #6366f1; --sol-glow: rgba(99,102,241,0.18); --sol-bg: rgba(99,102,241,0.07); --sol-stroke: rgba(99,102,241,0.22); }
.vd-solution-marketing  { --sol-accent: #10b981; --sol-glow: rgba(16,185,129,0.18); --sol-bg: rgba(16,185,129,0.07); --sol-stroke: rgba(16,185,129,0.22); }
.vd-solution-advertiser { --sol-accent: #f97316; --sol-glow: rgba(249,115,22,0.18); --sol-bg: rgba(249,115,22,0.07); --sol-stroke: rgba(249,115,22,0.22); }
.vd-solution-ecommerce  { --sol-accent: #06b6d4; --sol-glow: rgba(6,182,212,0.18); --sol-bg: rgba(6,182,212,0.07); --sol-stroke: rgba(6,182,212,0.22); }
.vd-solution-startup    { --sol-accent: #8b5cf6; --sol-glow: rgba(139,92,246,0.18); --sol-bg: rgba(139,92,246,0.07); --sol-stroke: rgba(139,92,246,0.22); }
.vd-solution-realestate { --sol-accent: #d97706; --sol-glow: rgba(217,119,6,0.18); --sol-bg: rgba(217,119,6,0.07); --sol-stroke: rgba(217,119,6,0.22); }
.vd-solution-politician { --sol-accent: #0ea5e9; --sol-glow: rgba(14,165,233,0.18); --sol-bg: rgba(14,165,233,0.07); --sol-stroke: rgba(14,165,233,0.22); }

/* Badge sol variant */
.vd-badge--sol {
  color: var(--sol-accent);
  background: var(--sol-bg);
  border-color: var(--sol-stroke);
}

/* Stats row */
.vd-solution-stats {
  display: flex;
  gap: 28px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.vd-sol-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vd-sol-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--sol-accent);
  line-height: 1;
}

.vd-sol-stat-label {
  font-size: 11px;
  color: var(--vd-text-faint);
  font-weight: 500;
}

/* Hero image wrapper */
.vd-sol-hero-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 60px var(--sol-glow);
  max-width: 100%;
  aspect-ratio: 16 / 9;
}

.vd-sol-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.vd-sol-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}

.vd-sol-hero-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  align-self: flex-start;
  white-space: nowrap;
}

.vd-sol-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sol-accent);
  box-shadow: 0 0 6px var(--sol-accent);
  flex-shrink: 0;
  animation: solLivePulse 1.5s ease-in-out infinite;
}

@keyframes solLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}

.vd-sol-clips-generated {
  align-self: flex-end;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  line-height: 1;
}

.vd-sol-clips-count {
  font-size: 24px;
  font-weight: 800;
  color: var(--sol-accent);
  display: block;
}

.vd-sol-clips-label {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  display: block;
}

/* Floating clip cards below hero image */
.vd-sol-floating-clips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.vd-sol-fclip {
  border-radius: 10px;
  overflow: hidden;
  background: var(--vd-surface);
  border: 1px solid rgba(255,255,255,0.07);
}

.vd-sol-fclip img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
  background: rgba(255,255,255,0.04);
}

.vd-sol-fclip-inner {
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vd-sol-fclip-score {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(255,107,0,0.14);
  color: var(--sol-accent);
  flex-shrink: 0;
}

.vd-sol-fclip-caption {
  font-size: 11px;
  color: var(--vd-text-muted);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

/* Checklist with accent checkmarks */
.vd-sol-checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.vd-sol-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--vd-text-muted);
  line-height: 1.5;
}

.vd-sol-checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sol-bg);
  border: 1px solid var(--sol-stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--sol-accent);
  margin-top: 1px;
}

/* Face tracking box overlay */
.vd-sol-face-track-box {
  position: absolute;
  border: 2px solid var(--sol-accent);
  border-radius: 4px;
  box-shadow: 0 0 12px var(--sol-glow), inset 0 0 6px rgba(0,0,0,0.2);
  pointer-events: none;
  animation: faceTrackShift 3s ease-in-out infinite alternate;
}

.vd-sol-face-track-box::before,
.vd-sol-face-track-box::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
}

.vd-sol-face-track-box::before {
  top: -3px;
  left: -3px;
  border-top: 2px solid var(--sol-accent);
  border-left: 2px solid var(--sol-accent);
  border-radius: 2px 0 0 0;
}

.vd-sol-face-track-box::after {
  bottom: -3px;
  right: -3px;
  border-bottom: 2px solid var(--sol-accent);
  border-right: 2px solid var(--sol-accent);
  border-radius: 0 0 2px 0;
}

@keyframes faceTrackShift {
  from { transform: translate(-2px, -1px); }
  to   { transform: translate(2px,  1px); }
}

/* Benefit card sol variant */
.vd-sol-benefit-card {
  border-top: 2px solid var(--sol-stroke) !important;
}

.vd-sol-benefit-icon {
  color: var(--sol-accent) !important;
  background: var(--sol-bg) !important;
  border-color: var(--sol-stroke) !important;
}

/* Prevent horizontal overflow on solution pages */
.vd-solution-podcast .vd-feat-hero,
.vd-solution-streamer .vd-feat-hero,
.vd-solution-religious .vd-feat-hero,
.vd-solution-educator .vd-feat-hero,
.vd-solution-coach .vd-feat-hero {
  overflow-x: hidden;
}

/* ===================================================
   SOLUTION PAGES — Responsive
   =================================================== */

@media (max-width: 768px) {
  .vd-solution-stats {
    gap: 18px;
    margin: 16px 0;
  }

  .vd-sol-stat-num {
    font-size: 24px;
  }

  .vd-sol-floating-clips {
    gap: 8px;
  }

  .vd-sol-fclip img {
    height: 56px;
  }

  .vd-sol-hero-badge-live {
    font-size: 10px;
    padding: 4px 9px;
  }

  .vd-sol-clips-count {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .vd-solution-stats {
    gap: 16px;
  }

  .vd-sol-stat-num {
    font-size: 22px;
  }

  .vd-sol-floating-clips {
    display: none;
  }

  .vd-sol-checklist li {
    font-size: 13px;
  }
}

/* ===================================================
   SOLUTION PAGES — Hero App Mockup (CSS-only visual)
   =================================================== */
.vd-sol-hero-mock {
  width: 100%;
  height: 100%;
  background: #0b0b14;
  display: flex;
  flex-direction: column;
}

.vd-sol-hm-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 9px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.vd-sol-hm-dots {
  display: flex;
  gap: 4px;
  margin-right: 4px;
  flex-shrink: 0;
}

.vd-sol-hm-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  font-style: normal;
  display: block;
}

.vd-sol-hm-dots i:nth-child(1) { background: #ef4444; }
.vd-sol-hm-dots i:nth-child(2) { background: #f59e0b; }
.vd-sol-hm-dots i:nth-child(3) { background: #22c55e; }

.vd-sol-hm-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--vd-text-muted);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vd-sol-hm-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  color: var(--sol-accent);
  background: var(--sol-bg);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--sol-stroke);
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.vd-sol-hm-dot-sm {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: solLivePulse 1.5s ease-in-out infinite;
}

.vd-sol-hm-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 14px;
  overflow: hidden;
  min-height: 0;
}

.vd-sol-hm-wave {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
  height: 44px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.vd-sol-hm-wave-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
}

.vd-sol-hm-bar {
  flex: 1;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  min-width: 0;
}

.vd-sol-hm-bar.hi {
  background: var(--sol-accent);
  opacity: 0.75;
}

.vd-sol-hm-results {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.vd-sol-hm-clip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}

.vd-sol-hm-clip-time {
  font-size: 9px;
  color: var(--vd-text-faint);
  font-family: monospace;
  min-width: 32px;
  flex-shrink: 0;
}

.vd-sol-hm-clip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sol-accent);
  flex-shrink: 0;
  opacity: 0.8;
}

.vd-sol-hm-clip-text {
  flex: 1;
  font-size: 9px;
  color: var(--vd-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.vd-sol-hm-clip-score {
  font-size: 10px;
  font-weight: 700;
  color: var(--sol-accent);
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--sol-bg);
  border: 1px solid var(--sol-stroke);
  flex-shrink: 0;
}

.vd-sol-hm-footer {
  height: 3px;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
  overflow: hidden;
}

.vd-sol-hm-progress {
  height: 100%;
  background: linear-gradient(to right, var(--sol-accent), rgba(255,255,255,0.4));
  animation: solHmProgress 3s ease-in-out infinite alternate;
  border-radius: 0 2px 2px 0;
}

@keyframes solHmProgress {
  from { width: 36%; }
  to   { width: 72%; }
}

/* Podcast face-motion block: CSS-only source panel */
.vd-sol-fm-source {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #12121e 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.vd-sol-fm-source-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
}

/* ===================================================
   TABLET BREAKPOINTS (768–1023px)
   =================================================== */
@media (max-width: 1023px) {
  .vd-feat-hero {
    padding-top: 100px;
  }

  .vd-feat-hero-screenshot {
    margin-top: 48px;
  }

  .vd-sol-hm-topbar {
    padding: 7px 11px 6px;
  }

  .vd-sol-hm-title {
    font-size: 10px;
  }

  .vd-sol-hm-body {
    padding: 8px 11px;
    gap: 6px;
  }

  .vd-sol-hm-wave {
    height: 36px;
  }

  .vd-sol-hm-clip {
    padding: 5px 8px;
  }

  .vd-sol-hm-clip-time {
    display: none;
  }

  /* Tablet typography — override typography.css (which may be cached) */
  .vd-display {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .vd-h1 {
    font-size: 32px;
    letter-spacing: -0.9px;
  }

  /* Tablet hero spacing — via .vd-page-main (not .vd-feat-hero) */
  .vd-page-main {
    padding-top: 110px;
  }

  /* Hide desktop CTA buttons on tablet/mobile — keep hamburger */
  .vd-navbar-actions .vd-btn {
    display: none !important;
  }
}

/* ===================================================
   SOLUTION PAGES — Clip Cards Hero Visual
   =================================================== */

.vd-sol-clips-showcase {
  position: relative;
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 4px 2px;
}

.vd-sol-clip-card {
  flex: 0 0 auto;
  width: 142px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid var(--sol-stroke);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 0 0.5px rgba(255,255,255,0.05);
  background: #0b0b16;
  display: flex;
  flex-direction: column;
}

.vd-sol-clip-card .vd-sol-cc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vd-sol-cc-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 35%, transparent 45%, rgba(0,0,0,0.88) 100%);
}

.vd-sol-cc-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 140% 50% at 50% 0%, var(--sol-glow) 0%, transparent 70%);
}

/* Fallback when no image */
.vd-sol-clip-card.vd-sol-cc-noimg {
  background: linear-gradient(170deg, var(--sol-glow) 0%, #0b0b16 55%);
}

.vd-sol-cc-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 8px 0;
}

.vd-sol-cc-score-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--sol-accent);
  background: rgba(0,0,0,0.72);
  padding: 2px 7px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: -0.2px;
  border: 1px solid var(--sol-stroke);
}

.vd-sol-cc-hot {
  font-size: 13px;
  line-height: 1;
}

.vd-sol-cc-deco {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  opacity: 0.12;
  pointer-events: none;
  color: var(--sol-accent);
}

.vd-sol-cc-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 8px 9px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vd-sol-cc-caption {
  font-size: 9.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0,0,0,1), 0 0 2px rgba(0,0,0,1);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vd-sol-cc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vd-sol-cc-platform {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.vd-sol-cc-views {
  font-size: 8px;
  color: rgba(255,255,255,0.3);
}

/* Fade on the right edge — suggests more clips */
.vd-sol-cs-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90px;
  background: linear-gradient(to right, transparent, var(--vd-bg));
  pointer-events: none;
  z-index: 3;
}

/* Responsive: portrait clip cards */
@media (max-width: 767px) {
  .vd-sol-clip-card { width: 110px; }
  .vd-sol-cs-fade { width: 60px; }
}

/* ====================================================
   SOLUTION HERO — BROWSER MOCKUP (unique per niche)
   ==================================================== */
.vd-sol-browser {
  background: var(--vd-card);
  border: 1px solid var(--vd-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
}

.vd-sol-browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--vd-border);
  background: rgba(255,255,255,.025);
}
.vd-sol-bc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.vd-sol-bc-url {
  font-size: 11px; color: var(--vd-text-muted);
  background: rgba(255,255,255,.06);
  padding: 3px 14px; border-radius: 4px; margin-left: 8px;
  letter-spacing: .2px;
}
.vd-sol-browser-body { padding: 14px; }

/* Header bar inside browser */
.vd-sol-br-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 10px; margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.vd-sol-br-hdr-left { display: flex; align-items: center; gap: 8px; }
.vd-sol-br-hdr-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--sol-bg); border: 1px solid var(--sol-stroke);
  display: flex; align-items: center; justify-content: center;
  color: var(--sol-accent); flex-shrink: 0;
}
.vd-sol-br-hdr-title { font-size: 12px; font-weight: 600; color: var(--vd-text); line-height: 1.3; }
.vd-sol-br-hdr-sub { font-size: 10px; color: var(--vd-text-muted); margin-top: 1px; }
.vd-sol-br-hdr-badge {
  font-size: 11px; font-weight: 700;
  color: var(--sol-accent); background: var(--sol-bg);
  border: 1px solid var(--sol-stroke);
  padding: 3px 10px; border-radius: 20px; white-space: nowrap;
}

/* Landscape clip grid — 4 columns */
.vd-sol-br-clips {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px;
}
.vd-sol-br-clips-2x2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px;
}
.vd-sol-br-clip {
  aspect-ratio: 16/9; border-radius: 7px; overflow: hidden;
  position: relative; background: #090912;
}
.vd-sol-br-score {
  position: absolute; top: 6px; right: 6px;
  font-size: 11px; font-weight: 800; color: #fff;
  background: var(--sol-accent); padding: 2px 6px; border-radius: 4px; line-height: 1.3;
}
.vd-sol-br-time {
  position: absolute; bottom: 5px; left: 6px;
  font-size: 10px; color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.58); padding: 1px 5px; border-radius: 3px; line-height: 1.4;
}
.vd-sol-br-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.vd-sol-br-play-btn {
  width: 28px; height: 28px; background: rgba(255,255,255,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff;
}
.vd-sol-br-play-btn svg { width: 10px; height: 10px; margin-left: 2px; }

/* Podcast: waveform */
.vd-sol-br-wave {
  display: flex; align-items: flex-end; gap: 2px;
  height: 34px; margin-bottom: 12px;
}
.vd-sol-br-wbar {
  flex: 1; border-radius: 2px 2px 0 0; min-height: 3px;
  background: rgba(255,255,255,.12);
}
.vd-sol-br-wbar.hi { background: var(--sol-accent); opacity: .85; }

/* More clips footer */
.vd-sol-br-more {
  text-align: center; font-size: 11px; color: var(--vd-text-faint); margin-top: 10px;
}
.vd-sol-br-more strong { color: var(--sol-accent); }

/* Streamer: LIVE badge */
.vd-sol-br-live {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.35);
  color: #ef4444; font-size: 11px; font-weight: 800;
  padding: 2px 8px; border-radius: 4px; letter-spacing: .3px;
}
.vd-sol-br-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #ef4444;
  box-shadow: 0 0 0 2px rgba(239,68,68,.3);
}
/* Streamer: main clip + highlights sidebar */
.vd-sol-br-stream {
  display: grid; grid-template-columns: 1fr 175px; gap: 10px;
}
.vd-sol-br-stream-main {
  aspect-ratio: 16/9; border-radius: 8px; overflow: hidden;
  position: relative; background: #090912;
}
.vd-sol-br-highlights { display: flex; flex-direction: column; gap: 5px; }
.vd-sol-br-hl-title {
  font-size: 10px; font-weight: 700; color: var(--vd-text-muted);
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px;
}
.vd-sol-br-hl {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px; padding: 5px 8px;
}
.vd-sol-br-hl-score {
  font-size: 11px; font-weight: 800; color: var(--sol-accent);
  flex-shrink: 0; min-width: 22px;
}
.vd-sol-br-hl-text {
  font-size: 10px; color: var(--vd-text-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Coach: metrics strip */
.vd-sol-br-metrics {
  display: flex; gap: 6px; margin-top: 10px;
}
.vd-sol-br-metric {
  flex: 1; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06); border-radius: 7px; padding: 7px 10px;
}
.vd-sol-br-metric-val {
  font-size: 17px; font-weight: 800; color: var(--sol-accent); line-height: 1;
}
.vd-sol-br-metric-lbl { font-size: 9px; color: var(--vd-text-muted); margin-top: 2px; }

/* Educator: chapters sidebar */
.vd-sol-br-edu {
  display: grid; grid-template-columns: 155px 1fr; gap: 10px;
}
.vd-sol-br-chs { display: flex; flex-direction: column; gap: 4px; }
.vd-sol-br-ch {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px; padding: 5px 8px; gap: 6px;
}
.vd-sol-br-ch-name { font-size: 10px; color: var(--vd-text-muted); flex: 1; line-height: 1.3; }
.vd-sol-br-ch-n {
  font-size: 10px; font-weight: 700; color: var(--sol-accent);
  background: var(--sol-bg); border: 1px solid var(--sol-stroke);
  padding: 0 5px; border-radius: 3px; flex-shrink: 0;
}

/* Religious: reach bar */
.vd-sol-br-reach {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.vd-sol-br-reach-item {
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; color: var(--vd-text-muted);
}
.vd-sol-br-reach-val { font-weight: 700; color: var(--vd-text); }

@media (max-width: 1023px) {
  .vd-sol-br-stream { grid-template-columns: 1fr; }
  .vd-sol-br-highlights { display: none; }
  .vd-sol-br-edu { grid-template-columns: 1fr; }
  .vd-sol-br-chs { display: none; }
  .vd-sol-br-clips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .vd-sol-browser-body { padding: 10px; }
  .vd-sol-br-clips { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .vd-sol-br-wave { height: 24px; }
  .vd-sol-br-metrics { display: none; }
  .vd-sol-br-reach { display: none; }
}

/* ====================================================
   SOLUTION HERO — constrain visual width
   ==================================================== */
.vd-solution-hero-visual { max-width: 840px; }

/* ====================================================
   SOLUTION HERO — TRANSFORMATION MOCKUP (.vd-tmock)
   Replaces the old flat clip-list browser mockup.
   Uses --sol-accent / --sol-glow / --sol-bg / --sol-stroke
   (set per-page on the root .vd-solution-* class above)
   ==================================================== */
.vd-tmock {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}
.vd-tmock-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.vd-tmock-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.vd-tmock-url {
  font-size: 11px; color: var(--vd-text-muted);
  background: rgba(255,255,255,.06);
  padding: 3px 14px; border-radius: 4px; margin-left: 8px;
  letter-spacing: .2px;
}
.vd-tmock-body { padding: 16px 18px 18px; }

/* Status row */
.vd-tmock-status {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.vd-tmock-status-left { display: flex; align-items: center; gap: 10px; }
.vd-tmock-title { font-size: 12px; font-weight: 700; color: var(--vd-text); }
.vd-tmock-sub   { font-size: 10px; color: var(--vd-text-muted); margin-top: 1px; }
.vd-tmock-badge {
  font-size: 11px; font-weight: 700;
  color: var(--sol-accent); background: var(--sol-bg);
  border: 1px solid var(--sol-stroke);
  padding: 3px 10px; border-radius: 20px; white-space: nowrap;
}

/* AI progress bar */
.vd-tmock-progress-wrap { margin-bottom: 16px; }
.vd-tmock-progress-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.vd-tmock-progress-label {
  font-size: 10px; color: var(--vd-text-muted);
  display: flex; align-items: center; gap: 5px;
}
.vd-tmock-progress-label-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sol-accent);
  box-shadow: 0 0 0 2px rgba(255,255,255,.08);
  animation: vd-tmock-blink 1.4s ease-in-out infinite;
}
.vd-tmock-progress-pct { font-size: 11px; font-weight: 700; color: var(--sol-accent); }
.vd-tmock-progress-track {
  height: 5px; background: rgba(255,255,255,.07);
  border-radius: 99px; overflow: hidden;
}
.vd-tmock-progress-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--sol-accent), rgba(255,255,255,.45));
  box-shadow: 0 0 8px var(--sol-glow);
  width: 73%;
  animation: vd-tmock-fill 3.6s ease-in-out infinite alternate;
}
@keyframes vd-tmock-fill {
  0%   { width: 28%; }
  100% { width: 94%; }
}
@keyframes vd-tmock-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: .3; }
}

/* Transformation pipeline grid */
.vd-tmock-pipeline {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  gap: 10px;
}

/* --- Left: source video --- */
.vd-tmock-source { display: flex; flex-direction: column; gap: 8px; }
.vd-tmock-src-label {
  font-size: 9px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--vd-text-faint);
}
.vd-tmock-src-video {
  aspect-ratio: 16/9;
  border-radius: 8px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.08);
  background: #0b0b14; position: relative;
}
.vd-tmock-src-video-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #10101e 0%, #1a1228 55%, #0d0d18 100%);
}
.vd-tmock-src-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.vd-tmock-src-play-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vd-tmock-src-timeline {
  position: absolute; bottom: 6px; left: 8px; right: 8px;
}
.vd-tmock-src-tl-track {
  height: 3px; background: rgba(255,255,255,.12);
  border-radius: 2px; overflow: visible; position: relative;
}
.vd-tmock-src-tl-fill {
  height: 100%; width: 38%;
  background: rgba(255,255,255,.35); border-radius: 2px;
}
.vd-tmock-src-tl-marker {
  position: absolute; top: -3px;
  width: 3px; height: 9px; border-radius: 1.5px;
  transform: translateX(-50%);
  background: var(--sol-accent);
  box-shadow: 0 0 4px var(--sol-glow);
  animation: vd-tmock-marker-pulse 2.4s ease-in-out infinite;
}
@keyframes vd-tmock-marker-pulse {
  0%,100% { opacity:.7; transform: translateX(-50%) scaleY(1);    }
  50%     { opacity:1;  transform: translateX(-50%) scaleY(1.35); }
}
.vd-tmock-src-duration {
  display: flex; justify-content: space-between; margin-top: 5px;
  font-size: 9px; color: rgba(255,255,255,.3); font-family: monospace;
}

/* --- Center: AI arrow --- */
.vd-tmock-arrow {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.vd-tmock-arrow-ai {
  font-size: 9px; font-weight: 800; letter-spacing: .4px;
  color: var(--sol-accent);
  background: var(--sol-bg);
  border: 1px solid var(--sol-stroke);
  padding: 3px 7px; border-radius: 5px;
}
.vd-tmock-arrow-icon {
  color: var(--sol-accent);
  animation: vd-tmock-arrow-pulse 1.8s ease-in-out infinite;
}
@keyframes vd-tmock-arrow-pulse {
  0%,100% { opacity:.6; transform: translateX(0);   }
  50%     { opacity:1;  transform: translateX(3px); }
}

/* --- Right: output vertical clips --- */
.vd-tmock-clips { display: flex; flex-direction: column; gap: 8px; }
.vd-tmock-clips-label {
  font-size: 9px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--sol-accent);
}
.vd-tmock-clips-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px;
}
.vd-tmock-clip {
  aspect-ratio: 9/16;
  border-radius: 8px; overflow: hidden; position: relative;
  border: 1.5px solid var(--sol-stroke);
  box-shadow: 0 0 12px var(--sol-glow);
  background: #0b0b14;
  animation: vd-tmock-clip-in 0.5s ease both;
}
.vd-tmock-clip:nth-child(1) { animation-delay: 0.05s; }
.vd-tmock-clip:nth-child(2) { animation-delay: 0.15s; }
.vd-tmock-clip:nth-child(3) { animation-delay: 0.25s; }
@keyframes vd-tmock-clip-in {
  from { opacity: 0; transform: scale(.88) translateY(6px); }
  to   { opacity: 1; transform: scale(1)   translateY(0); }
}
.vd-tmock-clip-bg {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(255,255,255,.04) 0%, rgba(0,0,0,.5) 100%);
}
.vd-tmock-clip-score {
  position: absolute; top: 5px; right: 5px;
  font-size: 10px; font-weight: 800; color: #fff;
  background: var(--sol-accent);
  padding: 2px 5px; border-radius: 4px; line-height: 1.3;
}
.vd-tmock-clip-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 5px 5px;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
}
.vd-tmock-clip-cap-line {
  height: 3px; background: rgba(255,255,255,.18);
  border-radius: 2px; margin-bottom: 4px;
}
.vd-tmock-clip-cap-line-accent {
  height: 3px; background: var(--sol-accent);
  border-radius: 2px; margin-bottom: 4px; width: 65%;
}
.vd-tmock-clip-cap-line-short {
  height: 2px; background: rgba(255,255,255,.1);
  border-radius: 2px; width: 50%;
}
.vd-tmock-clip-count {
  font-size: 10px; color: var(--vd-text-faint); text-align: right; margin-top: 4px;
}
.vd-tmock-clip-count strong { color: var(--sol-accent); }

/* Light mode */
html.light .vd-tmock {
  background: #fff;
  border-color: var(--vd-stroke);
  box-shadow: 0 12px 48px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.04);
}
html.light .vd-tmock-chrome {
  background: #f5f5f7; border-color: var(--vd-stroke);
}
html.light .vd-tmock-url {
  background: rgba(0,0,0,.05); color: var(--vd-text-muted);
}
html.light .vd-tmock-src-video-bg {
  background: linear-gradient(135deg, #e8e8f0 0%, #d4cce8 55%, #e0e0f0 100%);
}
html.light .vd-tmock-src-play-btn {
  background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.12);
}
html.light .vd-tmock-clip { background: #f0f0f5; }
html.light .vd-tmock-clip-bg {
  background: linear-gradient(175deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.15) 100%);
}
html.light .vd-tmock-src-duration { color: rgba(0,0,0,.25); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .vd-tmock-progress-fill     { animation: none; width: 73%; }
  .vd-tmock-progress-label-dot { animation: none; }
  .vd-tmock-src-tl-marker     { animation: none; }
  .vd-tmock-arrow-icon        { animation: none; }
  .vd-tmock-clip              { animation: none; }
}

/* ====================================================
   SOLUTION BROWSER — compact clip analysis list
   ==================================================== */
.vd-sol-br-clist {
  display: flex; flex-direction: column; gap: 4px;
}
.vd-sol-br-ci {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 7px; padding: 8px 10px;
  min-width: 0;
}
.vd-sol-br-ci-score {
  font-size: 13px; font-weight: 800; color: var(--sol-accent);
  flex-shrink: 0; min-width: 24px; text-align: right; line-height: 1;
}
.vd-sol-br-ci-div {
  width: 2px; height: 24px; border-radius: 1px;
  background: var(--sol-accent); opacity: .22; flex-shrink: 0;
}
.vd-sol-br-ci-time {
  font-family: monospace; font-size: 10px; color: var(--vd-text-faint);
  flex-shrink: 0; min-width: 40px;
}
.vd-sol-br-ci-text {
  flex: 1; font-size: 11px; color: var(--vd-text-muted); line-height: 1.3;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  min-width: 0;
}
.vd-sol-br-ci-tag {
  font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 3px;
  background: var(--sol-bg); color: var(--sol-accent);
  border: 1px solid var(--sol-stroke);
  flex-shrink: 0; white-space: nowrap; line-height: 1.5;
}

/* ====================================================
   EDITOR OVERFLOW FIX
   Grid cell min-width must be 0 so the container query
   sees the track width, not the 700px natural editor width.
   ==================================================== */
.vd-editor-block-mockup {
  min-width: 0;
  overflow: hidden;
}

/* ====================================================
   EDITOR BLOCKS — tablet: stack like mobile
   layout.css activates 2-col at 768px; override back
   to single column for tablets (< 1024px).
   ==================================================== */
@media (max-width: 1023px) {
  .vd-editor-block {
    grid-template-columns: 1fr !important;
  }
  .vd-editor-block.reversed .vd-editor-block-text,
  .vd-editor-block.reversed .vd-editor-block-mockup {
    order: unset !important;
  }
}

/* ====================================================
   SOLUTION HERO — stats centering
   ==================================================== */
.vd-solution-hero .vd-solution-stats {
  justify-content: center;
}

/* ====================================================
   SOLUTION PAGES — plain heading in final CTA
   (remove orange gradient that conflicts with per-niche accents)
   ==================================================== */
.vd-solution-podcast .vd-feat-final-cta-content .vd-display,
.vd-solution-streamer .vd-feat-final-cta-content .vd-display,
.vd-solution-religious .vd-feat-final-cta-content .vd-display,
.vd-solution-educator .vd-feat-final-cta-content .vd-display,
.vd-solution-coach .vd-feat-final-cta-content .vd-display,
.vd-solution-media .vd-feat-final-cta-content .vd-display,
.vd-solution-agency .vd-feat-final-cta-content .vd-display,
.vd-solution-marketing .vd-feat-final-cta-content .vd-display,
.vd-solution-advertiser .vd-feat-final-cta-content .vd-display,
.vd-solution-ecommerce .vd-feat-final-cta-content .vd-display,
.vd-solution-startup .vd-feat-final-cta-content .vd-display,
.vd-solution-realestate .vd-feat-final-cta-content .vd-display {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: var(--vd-text);
  color: var(--vd-text);
}

/* === Como Funciona — 3 passos === */
.vd-feat-how .vd-section-header { margin-bottom: 0; }
.vd-feat-how-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-top: 40px;
  border: 1.5px solid rgba(255,255,255,.07);
  border-radius: 16px; overflow: hidden;
}
.vd-feat-how-step {
  padding: 40px 32px; background: rgba(255,255,255,.022);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .2s;
}
.vd-feat-how-step:hover { background: rgba(255,255,255,.04); }
.vd-feat-how-step + .vd-feat-how-step { border-left: 1.5px solid rgba(255,255,255,.07); }
.vd-feat-how-num {
  font-size: 52px; font-weight: 800; line-height: 1;
  letter-spacing: -2px; font-variant-numeric: tabular-nums;
  color: var(--sol-accent); opacity: .2;
}
.vd-feat-how-step h3 {
  font-size: 1.0625rem; font-weight: 650;
  color: var(--vd-text); margin: 0; line-height: 1.35;
}
.vd-feat-how-step p { color: var(--vd-text-muted); margin: 0; }
@media (max-width: 820px) {
  .vd-feat-how-steps { grid-template-columns: 1fr; }
  .vd-feat-how-step + .vd-feat-how-step {
    border-left: none; border-top: 1.5px solid rgba(255,255,255,.07);
  }
}
html.light .vd-feat-how-steps { border-color: var(--vd-stroke); }
html.light .vd-feat-how-step { background: rgba(0,0,0,.015); }
html.light .vd-feat-how-step:hover { background: rgba(0,0,0,.03); }
html.light .vd-feat-how-step + .vd-feat-how-step { border-left-color: var(--vd-stroke); border-top-color: var(--vd-stroke); }

/* =========================================================
   Hero mockup — fotos temáticas por nicho (Unsplash, free)
   Source video: paisagem 640x380. Clips: retrato 260x460.
   ========================================================= */

/* Imobiliário */
.vd-solution-realestate .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('../img/niches/realestate-16x9.jpg') center/cover no-repeat;
}
.vd-solution-realestate .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/realestate-9x16-1.jpg') center/cover no-repeat;
}
.vd-solution-realestate .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/realestate-9x16-2.jpg') center/cover no-repeat;
}
.vd-solution-realestate .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/realestate-9x16-3.jpg') center/cover no-repeat;
}

/* Agências */
.vd-solution-agency .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('https://images.unsplash.com/photo-1758873269317-51888e824b28?w=640&h=380&auto=format&fit=crop&q=75') center/cover no-repeat;
}
.vd-solution-agency .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758873268998-2f77c2d38862?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-agency .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758873268745-dd2cf0d677b5?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-agency .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758691736490-03d39c292d7a?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}

/* Marketing */
.vd-solution-marketing .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('../img/niches/coach-16x9.jpg') center/cover no-repeat;
}
.vd-solution-marketing .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/coach-9x16-1.jpg') center/cover no-repeat;
}
.vd-solution-marketing .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/coach-9x16-2.jpg') center/cover no-repeat;
}
.vd-solution-marketing .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/coach-9x16-3.jpg') center/cover no-repeat;
}

/* Anunciantes */
.vd-solution-advertiser .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('https://images.unsplash.com/photo-1758691737182-d42aefd6dee8?w=640&h=380&auto=format&fit=crop&q=75') center/cover no-repeat;
}
.vd-solution-advertiser .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758691736490-03d39c292d7a?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-advertiser .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758873268998-2f77c2d38862?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-advertiser .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758873268745-dd2cf0d677b5?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}

/* E-commerce */
.vd-solution-ecommerce .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('../img/niches/ecommerce-16x9.jpg') center/cover no-repeat;
}
.vd-solution-ecommerce .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/ecommerce-9x16-1.jpg') center/cover no-repeat;
}
.vd-solution-ecommerce .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/ecommerce-9x16-2.jpg') center/cover no-repeat;
}
.vd-solution-ecommerce .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/ecommerce-9x16-3.jpg') center/cover no-repeat;
}

/* Startups */
.vd-solution-startup .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('https://images.unsplash.com/photo-1559523182-a284c3fb7cff?w=640&h=380&auto=format&fit=crop&q=75') center/cover no-repeat;
}
.vd-solution-startup .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1577962917302-cd874c4e31d2?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-startup .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758691737060-3814f16d5aba?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-startup .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1559523182-a284c3fb7cff?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}

/* Mídia */
.vd-solution-media .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('../img/niches/coach-16x9.jpg') center/cover no-repeat;
}
.vd-solution-media .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/coach-9x16-1.jpg') center/cover no-repeat;
}
.vd-solution-media .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/coach-9x16-2.jpg') center/cover no-repeat;
}
.vd-solution-media .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/coach-9x16-3.jpg') center/cover no-repeat;
}

/* Podcast */
.vd-solution-podcast .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('../img/niches/podcast-16x9.jpg') center/cover no-repeat;
}
.vd-solution-podcast .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/podcast-9x16-1.jpg') center/cover no-repeat;
}
.vd-solution-podcast .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/podcast-9x16-2.jpg') center/cover no-repeat;
}
.vd-solution-podcast .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/podcast-9x16-3.jpg') center/cover no-repeat;
}

/* Streamer */
.vd-solution-streamer .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('../img/niches/streamer-16x9.jpg') center/cover no-repeat;
}
.vd-solution-streamer .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/streamer-9x16-1.jpg') center/cover no-repeat;
}
.vd-solution-streamer .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/streamer-9x16-2.jpg') center/cover no-repeat;
}
.vd-solution-streamer .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/streamer-9x16-3.jpg') center/cover no-repeat;
}

/* Coach */
.vd-solution-coach .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('../img/niches/coach-16x9.jpg') center/cover no-repeat;
}
.vd-solution-coach .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/coach-9x16-1.jpg') center/cover no-repeat;
}
.vd-solution-coach .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/coach-9x16-2.jpg') center/cover no-repeat;
}
.vd-solution-coach .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/coach-9x16-3.jpg') center/cover no-repeat;
}

/* Educador */
.vd-solution-educator .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('https://images.unsplash.com/photo-1758270705799-12efda48d4f4?w=640&h=380&auto=format&fit=crop&q=75') center/cover no-repeat;
}
.vd-solution-educator .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758270704021-361c165d68fd?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-educator .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758270705031-ebd46917a454?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-educator .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('https://images.unsplash.com/photo-1758270705799-12efda48d4f4?w=260&h=460&auto=format&fit=crop&q=60') center/cover no-repeat;
}

/* Religioso */
.vd-solution-religious .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('../img/niches/religious-16x9.jpg') center/cover no-repeat;
}
.vd-solution-religious .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/religious-9x16-1.jpg') center/cover no-repeat;
}
.vd-solution-religious .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/religious-9x16-2.jpg') center/cover no-repeat;
}
.vd-solution-religious .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(255,255,255,.03) 0%,rgba(0,0,0,.48) 100%),
    url('../img/niches/religious-9x16-3.jpg') center/cover no-repeat;
}

/* Político */
.vd-solution-politician .vd-tmock-src-video-bg {
  background: linear-gradient(135deg,rgba(5,5,15,.55) 0%,rgba(15,8,22,.32) 100%),
    url('../img/niches/politician-16x9.jpg') center/cover no-repeat;
}
.vd-solution-politician .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.25) 0%,rgba(0,0,0,.4) 100%),
    url('../img/niches/politician-9x16-1.jpg') center/cover no-repeat;
}
.vd-solution-politician .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.25) 0%,rgba(0,0,0,.4) 100%),
    url('../img/niches/politician-9x16-2.jpg') center/cover no-repeat;
}
.vd-solution-politician .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.25) 0%,rgba(0,0,0,.4) 100%),
    url('../img/niches/politician-9x16-3.jpg') center/cover no-repeat;
}

/* ─── Politician Page — Visual Blocks ─── */

/* Block 1: Waveform */
.vd-pol-clip-mock { padding: 18px 20px; display: flex; flex-direction: column; gap: 0; }
.vd-pol-clip-hdr { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 14px; }
.vd-pol-wave-wrap { position: relative; background: rgba(255,255,255,0.018); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 20px 10px 6px; margin-bottom: 12px; }
.vd-pol-wave-lbls { display: flex; position: absolute; top: 5px; left: 10px; right: 10px; pointer-events: none; }
.vd-pol-wave-lbls span { position: absolute; font-size: 7px; font-weight: 800; color: var(--sol-accent); letter-spacing: .3px; transform: translateX(-50%); white-space: nowrap; }
.vd-pol-wave-bars { display: flex; align-items: flex-end; gap: 1.5px; height: 66px; }
.vd-pol-wave-bars span { flex: 1; border-radius: 2px 2px 0 0; animation: vd-pol-bar 2s ease-in-out infinite alternate; }
@keyframes vd-pol-bar { 0% { opacity: .65; transform: scaleY(1); } 100% { opacity: 1; transform: scaleY(1.07); } }
.vd-pol-wave-axis { display: flex; justify-content: space-between; padding-top: 5px; }
.vd-pol-wave-axis span { font-size: 8px; color: rgba(255,255,255,0.22); }
.vd-pol-wave-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.vd-pol-wave-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.055); border-top-width: 2px; border-radius: 6px; padding: 7px 8px; }

/* Block 2: Face Motion */
.vd-pol-face-mock { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.vd-pol-face-hdr { padding: 11px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.vd-pol-face-hdr > span:first-child { font-size: 11px; font-weight: 600; color: var(--vd-text); }
.vd-pol-face-badge { font-size: 9px; background: var(--sol-bg); color: var(--sol-accent); padding: 2px 7px; border-radius: 4px; font-weight: 700; border: 1px solid var(--sol-stroke); }
.vd-pol-face-compare { display: flex; flex: 1; min-height: 200px; }
.vd-pol-face-orig { flex: 1; position: relative; overflow: hidden; }
.vd-pol-face-orig-bg { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(2,8,20,.45),rgba(5,15,35,.2)), url('../img/niches/politician-16x9.jpg') center/cover no-repeat; }
.vd-pol-face-orig-box { position: absolute; top: 7%; left: 28%; width: 44%; height: 50%; border: 1.5px dashed rgba(255,100,100,0.65); border-radius: 4px; }
.vd-pol-face-orig-box span { position: absolute; top: -13px; left: 0; font-size: 7px; color: rgba(255,110,110,0.8); font-weight: 600; white-space: nowrap; }
.vd-pol-face-orig-bad { position: absolute; top: 8px; right: 8px; background: rgba(255,50,50,0.13); border: 1px solid rgba(255,80,80,0.28); border-radius: 4px; padding: 2px 6px; font-size: 7px; font-weight: 600; color: rgba(255,130,130,0.85); }
.vd-pol-face-orig-footer { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 10px; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); }
.vd-pol-face-orig::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 36px; background: linear-gradient(to right, transparent, rgba(0,0,0,0.55)); pointer-events: none; z-index: 1; }
.vd-pol-face-ai { width: 46px; background: linear-gradient(90deg, var(--sol-bg), color-mix(in srgb, var(--sol-accent) 12%, transparent), var(--sol-bg)); border-left: 1px solid var(--sol-stroke); border-right: 1px solid var(--sol-stroke); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; flex-shrink: 0; position: relative; z-index: 2; }
.vd-pol-face-ai-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--sol-bg); border: 1px solid var(--sol-stroke); display: flex; align-items: center; justify-content: center; }
.vd-pol-face-ai > span { font-size: 7px; color: var(--sol-accent); font-weight: 800; letter-spacing: .3px; }
.vd-pol-face-result { width: 110px; position: relative; overflow: hidden; flex-shrink: 0; border-left: 2px solid var(--sol-accent); box-shadow: -4px 0 18px var(--sol-glow); }
.vd-pol-face-result-bg { position: absolute; inset: 0; background: linear-gradient(175deg,rgba(2,8,20,.3),rgba(5,15,35,.08)), url('../img/niches/politician-9x16-1.jpg') center top/cover no-repeat; }

/* Face Motion mockup — fotos por niche (override) */
.vd-solution-coach .vd-pol-face-orig-bg {
  background: linear-gradient(135deg,rgba(2,8,20,.45),rgba(5,15,35,.2)),
    url('../img/niches/coach-16x9.jpg') center/cover no-repeat;
}
.vd-solution-coach .vd-pol-face-result-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.3),rgba(5,15,35,.08)),
    url('../img/niches/coach-9x16-1.jpg') center top/cover no-repeat;
}
.vd-solution-podcast .vd-pol-face-orig-bg {
  background: linear-gradient(135deg,rgba(2,8,20,.45),rgba(5,15,35,.2)),
    url('../img/niches/podcast-16x9.jpg') center/cover no-repeat;
}
.vd-solution-podcast .vd-pol-face-result-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.3),rgba(5,15,35,.08)),
    url('../img/niches/podcast-9x16-1.jpg') center top/cover no-repeat;
}
.vd-solution-religious .vd-pol-face-orig-bg {
  background: linear-gradient(135deg,rgba(2,8,20,.45),rgba(5,15,35,.2)),
    url('../img/niches/religious-16x9.jpg') center/cover no-repeat;
}
.vd-solution-religious .vd-pol-face-result-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.3),rgba(5,15,35,.08)),
    url('../img/niches/religious-9x16-1.jpg') center top/cover no-repeat;
}
.vd-solution-educator .vd-pol-face-orig-bg {
  background: linear-gradient(135deg,rgba(2,8,20,.45),rgba(5,15,35,.2)),
    url('https://images.unsplash.com/photo-1758270705799-12efda48d4f4?w=520&h=300&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-educator .vd-pol-face-result-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.3),rgba(5,15,35,.08)),
    url('https://images.unsplash.com/photo-1758270705799-12efda48d4f4?w=320&h=560&auto=format&fit=crop&crop=faces,top&q=60') center top/cover no-repeat;
}
.vd-solution-realestate .vd-pol-face-orig-bg {
  background: linear-gradient(135deg,rgba(2,8,20,.45),rgba(5,15,35,.2)),
    url('../img/niches/realestate-16x9.jpg') center/cover no-repeat;
}
.vd-solution-realestate .vd-pol-face-result-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.3),rgba(5,15,35,.08)),
    url('../img/niches/realestate-9x16-1.jpg') center top/cover no-repeat;
}
.vd-solution-media .vd-pol-face-orig-bg {
  background: linear-gradient(135deg,rgba(2,8,20,.45),rgba(5,15,35,.2)),
    url('../img/niches/coach-16x9.jpg') center/cover no-repeat;
}
.vd-solution-media .vd-pol-face-result-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.3),rgba(5,15,35,.08)),
    url('../img/niches/coach-9x16-1.jpg') center top/cover no-repeat;
}
.vd-solution-startup .vd-pol-face-orig-bg {
  background: linear-gradient(135deg,rgba(2,8,20,.45),rgba(5,15,35,.2)),
    url('https://images.unsplash.com/photo-1559523182-a284c3fb7cff?w=520&h=300&auto=format&fit=crop&q=60') center/cover no-repeat;
}
.vd-solution-startup .vd-pol-face-result-bg {
  background: linear-gradient(175deg,rgba(2,8,20,.3),rgba(5,15,35,.08)),
    url('https://images.unsplash.com/photo-1559523182-a284c3fb7cff?w=320&h=560&auto=format&fit=crop&crop=faces,top&q=60') center top/cover no-repeat;
}
.vd-pol-face-conf { position: absolute; top: 7px; right: 7px; background: rgba(0,0,0,0.65); border-radius: 5px; padding: 3px 7px; text-align: center; }
.vd-pol-face-result-footer { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px; text-align: center; }
.vd-pol-face-scan-v { position: absolute; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--sol-accent),transparent); animation: vd-face-scan 2.6s ease-in-out infinite; }
@keyframes vd-face-scan { 0% { top: 8%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { top: 82%; opacity: 0; } }
.vd-pol-scan-lines { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 3px); pointer-events: none; }
.vd-pol-face-stats { display: flex; border-top: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.vd-pol-face-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px; border-right: 1px solid rgba(255,255,255,0.05); }
.vd-pol-face-stat:last-child { border-right: none; }

/* React Mode mockup — usado em streamer/educator/ecommerce */
.vd-pol-react-mock { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.vd-pol-react-hdr { padding: 11px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.vd-pol-react-hdr > span:first-child { font-size: 11px; font-weight: 600; color: var(--vd-text); }
.vd-pol-react-badge { font-size: 9px; background: var(--sol-bg); color: var(--sol-accent); padding: 2px 7px; border-radius: 4px; font-weight: 700; border: 1px solid var(--sol-stroke); }
.vd-pol-react-compare { display: flex; flex: 1; min-height: 200px; }
.vd-pol-react-orig { flex: 1; position: relative; overflow: hidden; }
.vd-pol-react-orig-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.vd-pol-react-orig-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2,8,20,.25), rgba(5,15,35,.15)); }
.vd-pol-react-orig::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 36px; background: linear-gradient(to right, transparent, rgba(0,0,0,0.55)); pointer-events: none; z-index: 1; }
.vd-pol-react-orig-footer { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px 10px; background: linear-gradient(to top, rgba(0,0,0,0.78), transparent); z-index: 2; }
.vd-pol-react-lbl-up { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: .4px; }
.vd-pol-react-lbl-dn { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.75); }
.vd-pol-react-ai { width: 46px; background: linear-gradient(90deg, var(--sol-bg), color-mix(in srgb, var(--sol-accent) 12%, transparent), var(--sol-bg)); border-left: 1px solid var(--sol-stroke); border-right: 1px solid var(--sol-stroke); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; flex-shrink: 0; position: relative; z-index: 2; }
.vd-pol-react-ai-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--sol-bg); border: 1px solid var(--sol-stroke); display: flex; align-items: center; justify-content: center; }
.vd-pol-react-ai > span { font-size: 7px; color: var(--sol-accent); font-weight: 800; letter-spacing: .3px; }
.vd-pol-react-result { width: 110px; position: relative; overflow: hidden; flex-shrink: 0; border-left: 2px solid var(--sol-accent); box-shadow: -4px 0 18px var(--sol-glow); }
.vd-pol-react-result-bg { position: absolute; inset: 0; background-size: cover; background-position: center top; background-repeat: no-repeat; }
.vd-pol-react-result-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 42%); }
.vd-pol-react-result-footer { position: absolute; bottom: 0; left: 0; right: 0; padding: 8px; text-align: center; z-index: 2; }
.vd-pol-react-lbl-tag { font-size: 7px; font-weight: 800; letter-spacing: .8px; color: var(--sol-accent); margin-bottom: 2px; }
.vd-pol-react-lbl-fmt { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.7); }
.vd-pol-react-stats { display: flex; border-top: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.vd-pol-react-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px; border-right: 1px solid rgba(255,255,255,0.05); }
.vd-pol-react-stat:last-child { border-right: none; }

/* Block 3: Calendar */
.vd-pol-cal-mock { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.vd-pol-cal-hdr { display: flex; align-items: center; justify-content: space-between; }
.vd-pol-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.vd-pol-cal-dh { text-align: center; font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.32); padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.vd-pol-cal-cell { background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.04); border-radius: 6px; padding: 6px 4px; min-height: 62px; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.vd-pol-cal-cell--on { background: var(--sol-bg); border-color: var(--sol-stroke); }
.vd-pol-cal-post { width: 24px; height: 24px; border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vd-pol-cal-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); }
.vd-pol-cal-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; box-shadow: 0 0 6px rgba(34,197,94,.55); animation: vd-cal-dot 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes vd-cal-dot { 0%,100% { box-shadow: 0 0 6px rgba(34,197,94,.55); } 50% { box-shadow: 0 0 12px rgba(34,197,94,.9); } }

/* Performance: skip rendering and pause animations of off-screen blocks */
[class*="vd-solution-"] .vd-feat-block,
[class*="vd-solution-"] .vd-feat-benefits,
[class*="vd-solution-"] .vd-feat-faq,
[class*="vd-solution-"] .vd-feat-final-cta { content-visibility: auto; contain-intrinsic-size: 0 600px; }

/* Clip Ken Burns drift — todas as páginas de solução */
[class*="vd-solution-"] .vd-tmock-clip { overflow: hidden; }
[class*="vd-solution-"] .vd-tmock-clip-bg { animation: vd-sol-clip-drift 10s ease-in-out infinite; }
[class*="vd-solution-"] .vd-tmock-clip:nth-child(1) .vd-tmock-clip-bg { animation-delay: 0s; }
[class*="vd-solution-"] .vd-tmock-clip:nth-child(2) .vd-tmock-clip-bg { animation-delay: -3.3s; }
[class*="vd-solution-"] .vd-tmock-clip:nth-child(3) .vd-tmock-clip-bg { animation-delay: -6.6s; }
@keyframes vd-sol-clip-drift {
  0%   { transform: scale(1.06) translate(2%,  1%); }
  33%  { transform: scale(1.09) translate(-2%, -1%); }
  66%  { transform: scale(1.07) translate(1%,  2%); }
  100% { transform: scale(1.06) translate(2%,  1%); }
}
