/* ================================================================
   VitalityDesk site.css v2
   ================================================================ */

/* ── Scroll reveal — content visible by default, animates as enhancement ── */
.reveal {
  transition: opacity var(--d-slow) var(--ease-out),
              transform var(--d-slow) var(--ease-out);
}
body.js-anim .reveal:not(.revealed) {
  opacity: 0;
  transform: translateY(20px);
}
body.js-anim .reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ── Shared layout ──────────────────────────────────────────── */
.vd-section {
  width: 100%;
  padding: var(--section-y) clamp(20px, 5vw, 80px);
}
.vd-container {
  max-width: 1280px;
  margin: 0 auto;
}
.vd-container--wide { max-width: 1400px; }
.vd-container--narrow { max-width: 860px; }

.vd-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s-5);
}
.vd-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--amber);
}

.vd-section-title {
  font-size: var(--t-5xl);
  margin-bottom: var(--s-5);
}
.vd-section-sub {
  font-size: var(--t-lg);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.65;
}

/* ── Buttons ────────────────────────────────────────────────── */
.vd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-base);
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--d-med) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.vd-btn--primary {
  background: var(--primary);
  color: #fff;
}
.vd-btn--primary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(163,41,66,0.35);
}
.vd-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.vd-btn--ghost:hover {
  border-color: var(--muted);
  background: rgba(23,24,23,0.06);
}
.vd-btn--lg { padding: 18px 36px; font-size: var(--t-lg); }
.vd-btn--sm { padding: 10px 20px; font-size: var(--t-sm); }

/* ── Navigation ─────────────────────────────────────────────── */
.vd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 68px;
  background: transparent;
  transition: background var(--d-med) var(--ease-out),
              border-color var(--d-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.vd-nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.vd-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.vd-nav__brand img {
  height: 28px;
  width: auto;
}
.vd-nav__brand-dot { color: var(--primary); }

.vd-nav__center {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vd-nav__item {
  position: relative;
}
.vd-nav__item-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--r-md);
  transition: color var(--d-fast), background var(--d-fast);
  white-space: nowrap;
}
.vd-nav__item-btn:hover,
.vd-nav__item:hover .vd-nav__item-btn {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.vd-nav__chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--d-fast) var(--ease-out);
  opacity: 0.6;
}
.vd-nav__item:hover .vd-nav__chevron { transform: rotate(180deg); }

.vd-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--d-med) var(--ease-out);
  box-shadow: 0 16px 48px rgba(58,40,30,0.13);
}
.vd-nav__item:hover .vd-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.vd-nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--r-md);
  transition: all var(--d-fast);
}
.vd-nav__dropdown a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.vd-nav__dropdown-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(163,41,66,0.12);
  border-radius: var(--r-sm);
  font-size: 13px;
  flex-shrink: 0;
}
.vd-nav__dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

.vd-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vd-nav__demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--d-med) var(--ease-out);
}
.vd-nav__demo-btn:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 24px rgba(163,41,66,0.4);
  transform: translateY(-1px);
}

/* Mobile menu */
.vd-nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.vd-nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--d-med);
}

.vd-nav__mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(251,248,241,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 8px clamp(16px, 4vw, 32px) calc(28px + env(safe-area-inset-bottom));
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.vd-nav__mobile-menu.open { display: block; }

/* Top-level link (Product) */
.vd-nav__m-link {
  display: block;
  padding: 15px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border-light);
}

/* Collapsible folder */
.vd-nav__m-acc { border-bottom: 1px solid var(--border-light); }
.vd-nav__m-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.vd-nav__m-acc summary::-webkit-details-marker { display: none; }
.vd-nav__m-acc summary .vd-nav__chevron {
  width: 14px; height: 14px;
  color: var(--muted);
  transition: transform 0.22s ease;
}
.vd-nav__m-acc[open] summary { color: var(--primary); }
.vd-nav__m-acc[open] summary .vd-nav__chevron { transform: rotate(180deg); color: var(--primary); }
.vd-nav__m-acc-body { padding: 2px 0 12px; }
.vd-nav__m-acc-body a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  font-size: 1rem;
  color: var(--muted);
  border-radius: 10px;
}
.vd-nav__m-acc-body a:active { background: var(--card-hover); color: var(--ink); }
.vd-nav__m-acc-ico { width: 22px; text-align: center; flex: 0 0 auto; }

.vd-nav__mobile-cta {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 960px) {
  .vd-nav__center { display: none; }
  .vd-nav__right .vd-nav__demo-btn { display: none; }
  .vd-nav__mobile-toggle { display: flex; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.vd-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(20px, 5vw, 80px) 80px;
  overflow: hidden;
}
.vd-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 65% 35%, rgba(163,41,66,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.vd-hero__grid-bg { display: none; }

.vd-hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.vd-hero__copy {}
.vd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--s-6);
}
.vd-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.vd-hero__pulse {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.vd-hero__h {
  font-size: clamp(40px, 4.7vw, 66px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: var(--s-5);
}
.vd-hero__h em {
  font-style: normal;
  color: var(--primary);
}

.vd-hero__sub {
  font-size: var(--t-lg);
  color: var(--muted);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: var(--s-7);
}

.vd-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: var(--s-8);
}

.vd-hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.vd-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-sm);
  color: var(--muted);
}
.vd-hero__trust-dot {
  width: 5px;
  height: 5px;
  background: var(--success);
  border-radius: 50%;
}

/* Hero dashboard */
.vd-hero__dashboard {
  position: relative;
}

/* ============================================================
   Premium hero phone — one static, high-fidelity call moment
   ============================================================ */
.vd-phone {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
}
.vd-phone__glow {
  position: absolute;
  inset: -14% -10% -8% -10%;
  background:
    radial-gradient(60% 50% at 50% 32%, rgba(163,41,66,0.24), transparent 70%),
    radial-gradient(50% 40% at 70% 80%, rgba(23,107,82,0.14), transparent 72%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}
.vd-phone__frame {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #232421 0%, #141513 100%);
  border-radius: 46px;
  padding: 11px;
  box-shadow:
    0 40px 90px -28px rgba(40,20,26,0.55),
    0 8px 24px -12px rgba(23,24,23,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.vd-phone__notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 26px;
  background: #0c0d0b;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.vd-phone__screen {
  position: relative;
  background: #FCFAF5;
  border-radius: 36px;
  padding: 40px 18px 18px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vd-phone__statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  padding: 0 6px 2px;
}
.vd-phone__sysicons { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; }
.vd-phone__bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 10px; }
.vd-phone__bars i { width: 3px; background: var(--ink); border-radius: 1px; }
.vd-phone__bars i:nth-child(1){ height: 4px; }
.vd-phone__bars i:nth-child(2){ height: 6px; }
.vd-phone__bars i:nth-child(3){ height: 8px; }
.vd-phone__bars i:nth-child(4){ height: 10px; }
.vd-phone__batt {
  width: 20px; height: 10px; border: 1.5px solid var(--ink); border-radius: 3px;
  position: relative; display: inline-block;
  background: linear-gradient(to right, var(--ink) 72%, transparent 72%);
  background-clip: content-box; padding: 1px;
}
.vd-phone__callhead {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 4px 12px;
  border-bottom: 1px solid var(--border-light);
}
.vd-phone__avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-size: 20px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--primary-light), var(--primary-dark));
  box-shadow: 0 6px 16px -6px rgba(163,41,66,0.6);
}
.vd-phone__callmeta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vd-phone__biz { font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.vd-phone__substatus {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted); font-family: var(--font-mono);
}
.vd-phone__livedot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(23,107,82,0.5);
  animation: vdPhonePulse 2.4s ease-out infinite;
}
.vd-phone__inbound {
  margin-left: auto;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(163,41,66,0.08);
  border: 1px solid var(--border-accent);
  padding: 3px 8px; border-radius: 999px;
}
.vd-phone__agent {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  margin-top: 2px;
}
.vd-phone__agent-name {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--primary);
}
.vd-phone__agent-state { font-size: 13px; color: var(--subtle); }
.vd-phone__orb {
  position: relative;
  width: 128px; height: 128px;
  margin: 6px auto 2px;
  display: grid; place-items: center;
}
.vd-phone__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(163,41,66,0.30);
  animation: vdPhoneRing 3s ease-out infinite;
}
.vd-phone__ring--2 { animation-delay: 1.5s; }
.vd-phone__orb-core {
  width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-items: center; font-size: 30px;
  background: radial-gradient(120% 120% at 30% 25%, var(--primary-light), var(--primary-dark));
  box-shadow: 0 12px 30px -8px rgba(163,41,66,0.65), inset 0 1px 0 rgba(255,255,255,0.25);
}
.vd-phone__wave {
  display: flex; align-items: center; justify-content: center; gap: 3px;
  height: 30px; margin: 2px 0 4px;
}
.vd-phone__wave span {
  width: 3px; border-radius: 2px; background: var(--primary);
  height: 30%; opacity: 0.85;
  animation: vdPhoneWave 1.1s ease-in-out infinite;
}
.vd-phone__bubble {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 14px;
  font-size: 13.5px; line-height: 1.5; color: var(--ink);
  box-shadow: 0 4px 14px -10px rgba(23,24,23,0.4);
}
.vd-phone__booked {
  display: flex; align-items: center; gap: 9px;
  margin-top: auto;
  background: var(--amber-sub);
  border: 1px solid rgba(23,107,82,0.25);
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 13px; font-weight: 600; color: var(--success);
}
.vd-phone__check {
  flex: 0 0 auto;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--success); color: #fff;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
@keyframes vdPhonePulse {
  0% { box-shadow: 0 0 0 0 rgba(23,107,82,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(23,107,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(23,107,82,0); }
}
@keyframes vdPhoneRing {
  0% { transform: scale(0.62); opacity: 0.9; }
  100% { transform: scale(1); opacity: 0; }
}
@keyframes vdPhoneWave {
  0%, 100% { height: 20%; }
  50% { height: 90%; }
}
@media (prefers-reduced-motion: reduce) {
  .vd-phone__ring, .vd-phone__wave span, .vd-phone__livedot { animation: none; }
  .vd-phone__ring { opacity: 0.4; transform: scale(0.85); }
}
.vd-dashboard {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(58,40,30,0.16), 0 0 0 1px rgba(23,24,23,0.06);
}
.vd-dashboard__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.vd-dashboard__header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vd-dashboard__dots {
  display: flex;
  gap: 6px;
}
.vd-dashboard__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.vd-dashboard__dots span:nth-child(1) { background: #FF5F57; }
.vd-dashboard__dots span:nth-child(2) { background: #FEBC2E; }
.vd-dashboard__dots span:nth-child(3) { background: #28C840; }
.vd-dashboard__title {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--muted);
  letter-spacing: 0.1em;
}
.vd-dashboard__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--success);
  letter-spacing: 0.1em;
}
.vd-dashboard__live-dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.vd-dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.vd-dashboard__metric {
  background: var(--card);
  padding: 16px 18px;
}
.vd-dashboard__metric-val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.vd-dashboard__metric-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vd-dashboard__feed {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 220px;
}
.vd-dashboard__feed-title {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--subtle);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 6px;
  margin-bottom: 2px;
}

.vd-notif {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--d-med) var(--ease-out);
  animation: notifSlideIn var(--d-slow) var(--ease-out);
}
.vd-notif--new {
  background: rgba(163,41,66,0.08);
  border-color: rgba(163,41,66,0.25);
}
.vd-notif__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.vd-notif--call .vd-notif__icon    { background: rgba(34,197,94,0.15); }
.vd-notif--book .vd-notif__icon    { background: rgba(163,41,66,0.15); }
.vd-notif--lead .vd-notif__icon    { background: rgba(245,158,11,0.15); }
.vd-notif--follow .vd-notif__icon  { background: rgba(99,102,241,0.15); }
.vd-notif__body { flex: 1; min-width: 0; }
.vd-notif__biz {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vd-notif__action {
  font-size: 12px;
  color: var(--muted);
}
.vd-notif__time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--subtle);
  flex-shrink: 0;
}

@keyframes notifSlideIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: none; }
}

.vd-dashboard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.vd-dashboard__footer-stat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--subtle);
}
.vd-dashboard__footer-stat span {
  color: var(--success);
  margin-right: 4px;
}

@media (max-width: 900px) {
  .vd-hero { min-height: auto; justify-content: flex-start; padding-top: 116px; padding-bottom: 56px; }
  .vd-hero__inner { grid-template-columns: 1fr; }
  .vd-hero__dashboard { display: none; }
  .vd-hero__h { font-size: clamp(40px, 9vw, 60px); }
}

/* ── Social Proof ───────────────────────────────────────────── */
.vd-social-proof {
  padding: 56px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vd-social-proof__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.vd-social-proof__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vd-social-proof__num {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.vd-social-proof__num em {
  font-style: normal;
  color: var(--primary);
}
.vd-social-proof__label {
  font-size: var(--t-sm);
  color: var(--muted);
}
.vd-social-proof__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── Problem ────────────────────────────────────────────────── */
.vd-problem {}
.vd-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: var(--s-8) 0;
}
.vd-problem__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 28px 24px;
  transition: all var(--d-med) var(--ease-out);
}
.vd-problem__card:hover {
  border-color: var(--border-accent);
  background: var(--card-hover);
}
.vd-problem__emoji {
  font-size: 28px;
  margin-bottom: var(--s-4);
  display: block;
}
.vd-problem__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  margin-bottom: 8px;
}
.vd-problem__desc {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.6;
}

.vd-problem__resolution {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(163,41,66,0.12), rgba(163,41,66,0.05));
  border: 1px solid var(--border-accent);
  border-radius: var(--r-xl);
}
.vd-problem__resolution-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.vd-problem__resolution-text {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 600;
}
.vd-problem__resolution-text span { color: var(--accent); }

@media (max-width: 860px) {
  .vd-problem__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .vd-problem__grid { grid-template-columns: 1fr; }
}

/* ── How It Works ───────────────────────────────────────────── */
.vd-hiw {}
.vd-hiw__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: var(--s-8);
  background: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.vd-hiw__step {
  background: var(--card);
  padding: 36px 28px;
  position: relative;
  transition: background var(--d-med);
}
.vd-hiw__step:hover { background: var(--card-hover); }
.vd-hiw__step-num {
  font-family: var(--font-mono);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  color: rgba(163,41,66,0.2);
  line-height: 1;
  margin-bottom: var(--s-5);
  letter-spacing: -0.04em;
}
.vd-hiw__step-icon {
  font-size: 28px;
  margin-bottom: var(--s-4);
}
.vd-hiw__step-title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  margin-bottom: 10px;
}
.vd-hiw__step-desc {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.6;
}
.vd-hiw__connector {
  position: absolute;
  top: 48px; right: -1px;
  font-size: 20px;
  color: var(--border-accent);
  z-index: 1;
}

@media (max-width: 860px) {
  .vd-hiw__steps { grid-template-columns: repeat(2, 1fr); }
  .vd-hiw__connector { display: none; }
}
@media (max-width: 480px) {
  .vd-hiw__steps { grid-template-columns: 1fr; }
}

/* ── Demo ───────────────────────────────────────────────────── */
.vd-demo {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vd-demo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.vd-demo__copy {}
.vd-demo__phone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(163,41,66,0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-lg);
  margin-bottom: var(--s-6);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--d-med) var(--ease-out);
}
.vd-demo__phone:hover {
  background: rgba(163,41,66,0.14);
  transform: translateY(-2px);
}
.vd-demo__phone-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  animation: pulse-ring 2.5s ease-in-out infinite;
}
.vd-demo__phone-text {}
.vd-demo__phone-label {
  font-size: var(--t-sm);
  color: var(--muted);
  margin-bottom: 2px;
}
.vd-demo__phone-num {
  font-family: var(--font-mono);
  font-size: var(--t-xl);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
}

.vd-demo__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}
.vd-demo__tab {
  padding: 7px 16px;
  font-size: var(--t-sm);
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--d-fast);
}
.vd-demo__tab:hover { border-color: var(--border-accent); color: var(--text); }
.vd-demo__tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.vd-demo__player {
  background: var(--elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.vd-demo__player-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vd-demo__player-industry {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vd-demo__player-duration {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--subtle);
}
.vd-demo__transcript {
  padding: 16px 18px;
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vd-demo__transcript::-webkit-scrollbar { width: 4px; }
.vd-demo__transcript::-webkit-scrollbar-track { background: transparent; }
.vd-demo__transcript::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.vd-demo__line {
  display: flex;
  gap: 10px;
}
.vd-demo__line-speaker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding-top: 2px;
  flex-shrink: 0;
  width: 40px;
}
.vd-demo__line--ai .vd-demo__line-speaker { color: var(--accent); }
.vd-demo__line--caller .vd-demo__line-speaker { color: var(--muted); }
.vd-demo__line-text {
  font-size: var(--t-sm);
  color: var(--text);
  line-height: 1.55;
}
.vd-demo__player-bar {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.vd-demo__play-btn {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  transition: all var(--d-fast);
}
.vd-demo__play-btn:hover { background: var(--primary-light); transform: scale(1.05); }
.vd-demo__waveform {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.vd-demo__waveform span {
  display: block;
  width: 3px;
  background: var(--border-accent);
  border-radius: 2px;
  animation: waveform 1.2s ease-in-out infinite;
}
.vd-demo__waveform span:nth-child(odd)  { animation-delay: 0s; }
.vd-demo__waveform span:nth-child(even) { animation-delay: 0.3s; }

@keyframes waveform {
  0%, 100% { height: 4px; }
  50%       { height: 20px; }
}

@media (max-width: 860px) {
  .vd-demo__inner { grid-template-columns: 1fr; }
}

/* ── Features ───────────────────────────────────────────────── */
.vd-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: var(--s-8);
}
.vd-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: all var(--d-med) var(--ease-out);
}
.vd-feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(58,40,30,0.09);
}
.vd-feature-card__icon {
  font-size: 28px;
  margin-bottom: var(--s-4);
}
.vd-feature-card__title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  margin-bottom: 8px;
}
.vd-feature-card__desc {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) { .vd-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vd-features__grid { grid-template-columns: 1fr; } }

/* ── Industries ─────────────────────────────────────────────── */
.vd-industries {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vd-industries__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-6);
  margin-bottom: var(--s-8);
  flex-wrap: wrap;
}
.vd-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vd-ind-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  text-decoration: none;
  transition: all var(--d-med) var(--ease-out);
  cursor: pointer;
}
.vd-ind-card:hover {
  border-color: var(--border-accent);
  background: rgba(163,41,66,0.04);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(58,40,30,0.10);
}
.vd-ind-card__icon {
  font-size: 32px;
}
.vd-ind-card__name {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--text);
}
.vd-ind-card__desc {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.vd-ind-card__link {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

@media (max-width: 860px) { .vd-industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vd-industries__grid { grid-template-columns: 1fr; } }

/* ── Comparison ─────────────────────────────────────────────── */
.vd-comparison__wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  margin-top: var(--s-8);
}
.vd-comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.vd-comparison__table th {
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--muted);
  background: var(--card);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.vd-comparison__table th.highlight {
  color: var(--text);
  background: rgba(163,41,66,0.08);
}
.vd-comparison__table td {
  padding: 16px 24px;
  font-size: var(--t-base);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.vd-comparison__table tr:last-child td { border-bottom: none; }
.vd-comparison__table tr:hover td { background: rgba(255,255,255,0.02); }
.vd-comparison__table td:first-child {
  font-weight: 500;
  color: var(--text);
}
.vd-comparison__table td:not(:first-child) {
  color: var(--muted);
  text-align: center;
}
.vd-comparison__table td.highlight {
  background: rgba(163,41,66,0.05);
  color: var(--text);
  font-weight: 500;
}
.vd-check { color: var(--success); font-size: 18px; }
.vd-cross { color: var(--subtle); font-size: 18px; }

/* ── Case Studies ───────────────────────────────────────────── */
.vd-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: var(--s-8);
}
.vd-case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--d-med) var(--ease-out);
}
.vd-case-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(58,40,30,0.11);
}
.vd-case-card__header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.vd-case-card__industry {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.vd-case-card__title {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 600;
  margin-bottom: 10px;
}
.vd-case-card__challenge {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.6;
}
.vd-case-card__body {
  padding: 24px 28px;
  flex: 1;
}
.vd-case-card__results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.vd-case-result {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vd-case-result__num {
  font-family: var(--font-mono);
  font-size: var(--t-2xl);
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  min-width: 72px;
}
.vd-case-result__label {
  font-size: var(--t-sm);
  color: var(--muted);
}
.vd-case-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--d-fast);
}
.vd-case-card:hover .vd-case-card__cta { gap: 10px; }

@media (max-width: 860px) { .vd-cases__grid { grid-template-columns: 1fr; } }

/* ── ROI Calculator ─────────────────────────────────────────── */
.vd-roi {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vd-roi__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.vd-roi__form-wrap {}
.vd-roi__field {
  margin-bottom: 20px;
}
.vd-roi__label {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.vd-roi__input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--t-base);
  transition: border-color var(--d-fast);
  appearance: none;
}
.vd-roi__input:focus {
  outline: none;
  border-color: var(--primary);
}
.vd-roi__input-hint {
  font-size: 11px;
  color: var(--subtle);
  margin-top: 4px;
}

.vd-roi__results {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
.vd-roi__results-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(163,41,66,0.06);
}
.vd-roi__results-title {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
}
.vd-roi__results-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vd-roi__result-item {}
.vd-roi__result-label {
  font-size: var(--t-sm);
  color: var(--muted);
  margin-bottom: 4px;
}
.vd-roi__result-val {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.vd-roi__result-val--loss { color: var(--error); }
.vd-roi__result-val--gain { color: var(--success); }
.vd-roi__divider { height: 1px; background: var(--border); }
.vd-roi__results-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.vd-roi__email-gate {
  text-align: center;
  padding: 32px 24px;
}
.vd-roi__email-gate p {
  font-size: var(--t-sm);
  color: var(--muted);
  margin-bottom: 16px;
}
.vd-roi__email-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--t-sm);
  margin-bottom: 10px;
  transition: border-color var(--d-fast);
}
.vd-roi__email-input:focus { outline: none; border-color: var(--primary); }

@media (max-width: 860px) {
  .vd-roi__inner { grid-template-columns: 1fr; }
  .vd-roi__results { position: static; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.vd-faq__list {
  margin-top: var(--s-8);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.vd-faq__item {
  border-bottom: 1px solid var(--border);
}
.vd-faq__item:last-child { border-bottom: none; }
.vd-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--d-fast);
}
.vd-faq__question:hover { background: rgba(255,255,255,0.02); }
.vd-faq__item.open .vd-faq__question { background: rgba(163,41,66,0.04); }
.vd-faq__q-text {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.vd-faq__icon {
  width: 28px;
  height: 28px;
  background: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--d-med) var(--ease-out);
}
.vd-faq__item.open .vd-faq__icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.vd-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--d-slow) var(--ease-out);
}
.vd-faq__item.open .vd-faq__answer { max-height: 400px; }
.vd-faq__answer-inner {
  padding: 0 28px 24px;
  font-size: var(--t-base);
  color: var(--muted);
  line-height: 1.7;
}

/* ── Final CTA ──────────────────────────────────────────────── */
.vd-final-cta {
  padding: var(--section-y) clamp(20px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vd-final-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(163,41,66,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.vd-final-cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.vd-final-cta__h {
  font-size: var(--t-5xl);
  margin-bottom: var(--s-5);
}
.vd-final-cta__sub {
  font-size: var(--t-lg);
  color: var(--muted);
  margin-bottom: var(--s-7);
  line-height: 1.65;
}
.vd-final-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}
.vd-final-cta__meta {
  font-size: var(--t-sm);
  color: var(--subtle);
}

/* ── Footer ─────────────────────────────────────────────────── */
.vd-footer {
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px) 40px;
}
.vd-footer__top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.vd-footer__brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.vd-footer__brand-dot { color: var(--primary); }
.vd-footer__tagline {
  font-size: var(--t-sm);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 260px;
}
.vd-footer__contact {
  font-size: var(--t-sm);
  color: var(--subtle);
}
.vd-footer__col h6 {
  font-family: var(--font-display);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.vd-footer__col a {
  display: block;
  font-size: var(--t-sm);
  color: var(--muted);
  margin-bottom: 10px;
  transition: color var(--d-fast);
}
.vd-footer__col a:hover { color: var(--text); }
.vd-footer__bar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-5);
  font-size: var(--t-sm);
  color: var(--subtle);
}
.vd-footer__bar a { color: var(--subtle); transition: color var(--d-fast); }
.vd-footer__bar a:hover { color: var(--muted); }
.vd-footer__legal { display: flex; gap: 20px; }

@media (max-width: 1100px) { .vd-footer__top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }
@media (max-width: 640px)  { .vd-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .vd-footer__bar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .vd-footer__legal { flex-wrap: wrap; gap: 12px; }
  .vd-footer__bar > span:last-child { display: none; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(163,41,66,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(163,41,66,0); }
  100% { box-shadow: 0 0 0 0 rgba(163,41,66,0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Ticker ─────────────────────────────────────────────────── */
.vd-ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
  padding: 12px 0;
}
.vd-ticker__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.vd-ticker__track span {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--subtle);
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.vd-ticker__track span.active { color: var(--accent); }

/* ── Live call ticker (below nav) ────────────────────────────── */
.vd-live-ticker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px clamp(20px, 4vw, 60px);
  background: rgba(163,41,66,0.05);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.vd-live-ticker__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
}
.vd-live-ticker__dot {
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.vd-live-ticker__scroll-wrap { overflow: hidden; flex: 1; }
.vd-live-ticker__track {
  display: flex;
  gap: 32px;
  align-items: center;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.vd-live-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}
.vd-live-ticker__agent { color: var(--text); font-weight: 500; }
.vd-live-ticker__arrow { color: var(--subtle); }
.vd-live-ticker__time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #22C55E;
  margin-left: 6px;
}
.vd-live-ticker__sep { color: var(--subtle); font-size: 12px; }
.vd-live-ticker__count {
  font-size: 10px;
  color: var(--subtle);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.08em;
}
@media (max-width: 600px) { .vd-live-ticker__count { display: none; } }

/* wordmark: two-color bold treatment */
.vd-brand__vitality {
  color: #f5f0eb;
  font-weight: 700;
}
.vd-brand__desk {
  color: var(--primary);
  font-weight: 700;
}

/* ── Hero live-line panel ───────────────────────────────────── */
.vd-liveline {
  --ll-accent: var(--primary);
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 22px 18px;
  box-shadow: 0 28px 64px -34px rgba(58,40,30,0.42), 0 0 0 1px rgba(23,24,23,0.03);
  font-family: var(--font-body);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
}
.vd-liveline::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--ll-accent); transition: background .45s var(--ease-out);
}
.vd-liveline--incoming  { --ll-accent: #C2701C; }
.vd-liveline--answered,
.vd-liveline--qualified { --ll-accent: var(--primary); }
.vd-liveline--booked    { --ll-accent: var(--success); }

.vd-liveline__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.vd-liveline__brand { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--subtle); }
.vd-liveline__live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--ll-accent); }
.vd-liveline__live-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: llpulse 1.7s ease-out infinite; }
@keyframes llpulse { 0% { box-shadow: 0 0 0 0 currentColor; } 70% { box-shadow: 0 0 0 7px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.vd-liveline__caller { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.vd-liveline__caller-main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.vd-liveline__label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.vd-liveline__num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); font-variant-numeric: tabular-nums; }
.vd-liveline__timer { font-family: var(--font-mono); font-size: 0.85rem; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }

.vd-liveline__chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 2px; }
.vd-liveline__chip { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.03em; padding: 4px 9px; border-radius: var(--r-sm); background: var(--stone); color: var(--muted); }
.vd-liveline__chip--intent { background: rgba(163,41,66,0.10); color: var(--primary); }

.vd-liveline__wave { display: flex; align-items: center; gap: 3px; height: 34px; margin: 16px 0; }
.vd-liveline__bar { flex: 1; height: 14%; min-height: 3px; border-radius: 2px; background: var(--border); transition: background .3s; }
.vd-liveline__bar.is-active { background: var(--ll-accent); animation: llwave 0.9s ease-in-out infinite; }
@keyframes llwave { 0%, 100% { height: 14%; } 50% { height: 86%; } }

.vd-liveline__transcript { display: flex; flex-direction: column; gap: 10px; min-height: 118px; }
.vd-liveline__line { display: flex; gap: 10px; opacity: 0; transform: translateY(6px); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); }
.vd-liveline__line.is-shown { opacity: 1; transform: none; }
.vd-liveline__who { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 5px; flex: 0 0 40px; color: var(--subtle); }
.vd-liveline__line--aria .vd-liveline__who { color: var(--primary); }
.vd-liveline__line p { margin: 0; font-size: 0.92rem; line-height: 1.5; color: var(--ink); background: var(--stone); padding: 9px 12px; border-radius: 10px; }
.vd-liveline__line--aria p { background: rgba(163,41,66,0.07); }

.vd-liveline__outcome { display: flex; align-items: center; gap: 9px; margin-top: 14px; padding: 11px 14px; border-radius: 10px; background: rgba(23,107,82,0.10); color: var(--success); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; opacity: 0; transform: translateY(6px); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out); }
.vd-liveline__outcome.is-shown { opacity: 1; transform: none; }
.vd-liveline__check { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--success); color: #fff; font-size: 12px; flex: 0 0 20px; }

.vd-liveline__steps { display: flex; gap: 6px; margin-top: 18px; }
.vd-liveline__step { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--subtle); padding-top: 9px; border-top: 2px solid var(--border); transition: color .35s, border-color .35s; }
.vd-liveline__step.is-done { color: var(--muted); border-top-color: var(--ll-accent); }
.vd-liveline__step.is-current { color: var(--ll-accent); }

@media (max-width: 900px) {
  .vd-hero__dashboard:has(.vd-liveline) { display: block; margin-top: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .vd-liveline__bar.is-active { animation: none; height: 42%; }
  .vd-liveline__live-dot { animation: none; }
}
