
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --vd-deep: #0a1424;
  --vd-ink: #101725;
  --vd-deeper: #060d18;
  --vd-warm: #f5f0e4;
  --vd-paper: #fbf7ee;
  --vd-paper-2: #ede5d6;
  --vd-muted: #8a8170;
  --vd-amber: #e5a04f;
  --vd-amber-2: #bd7434;
  --vd-teal: #3a9999;
  --vd-line: rgba(10, 20, 36, 0.14);
  --vd-line-light: rgba(245, 240, 228, 0.14);
  --vd-shadow: 0 24px 70px rgba(6, 13, 24, 0.18);
  --vd-display: 'Fraunces', Georgia, serif;
  --vd-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --vd-wrap: min(1180px, calc(100vw - 40px));
  --color-amber: var(--vd-amber);
  --color-amber-hover: var(--vd-amber-2);
  --color-sand: var(--vd-paper-2);
  --color-charcoal: var(--vd-ink);
  --color-slate: var(--vd-muted);
  --color-success: var(--vd-teal);
  --radius-full: 999px;
  --text-xl: 1.25rem;
  --text-2xl: 1.65rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-6: 1.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--vd-paper);
  color: var(--vd-ink);
  font-family: var(--vd-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.vd-dark-page { background: var(--vd-deep); color: var(--vd-warm); }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.vd-display, h1, h2, h3 { font-family: var(--vd-display); font-weight: 400; letter-spacing: 0; line-height: 1.02; }
.vd-container { width: var(--vd-wrap); margin: 0 auto; }
.container { width: var(--vd-wrap); margin: 0 auto; }
.vd-section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }
.section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }
.vd-section--tight { padding: clamp(52px, 6vw, 88px) 0; }
.vd-section--dark { background: var(--vd-deep); color: var(--vd-warm); }
.section--navy { background: var(--vd-deep); color: var(--vd-warm); }
.vd-section--ink { background: var(--vd-deeper); color: var(--vd-warm); }
.vd-section--paper { background: var(--vd-paper); color: var(--vd-ink); }
.section--warm-white { background: var(--vd-paper); color: var(--vd-ink); }
.vd-section--warm { background: var(--vd-warm); color: var(--vd-ink); }
.vd-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--vd-amber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.overline {
  display: block;
  margin-bottom: 18px;
  color: var(--vd-amber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.vd-section-heading {
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  max-width: 980px;
  margin: 0;
}
.section-title {
  font-family: var(--vd-display);
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  max-width: 980px;
  margin: 0;
  line-height: 1.02;
}
.section-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(10, 20, 36, 0.7);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}
.vd-section-lede {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(10, 20, 36, 0.7);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}
.vd-section--dark .vd-section-lede, .vd-section--ink .vd-section-lede { color: rgba(245, 240, 228, 0.72); }
.vd-em { color: var(--vd-amber); font-style: italic; font-weight: 300; }

@keyframes vd-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vd-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,160,79,0.36); }
  50% { box-shadow: 0 0 0 10px rgba(229,160,79,0); }
}
.vd-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.vd-reveal.is-visible { opacity: 1; transform: translateY(0); }
.vd-hero .vd-kicker, .vd-hero h1, .vd-hero p, .vd-hero__actions { animation: vd-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) both; }
.vd-hero h1 { animation-delay: 0.08s; }
.vd-hero p { animation-delay: 0.16s; }
.vd-hero__actions { animation-delay: 0.24s; }

.vd-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 20, 36, 0.9);
  color: var(--vd-warm);
  border-bottom: 1px solid var(--vd-line-light);
  backdrop-filter: blur(18px);
}
.vd-nav__inner { width: var(--vd-wrap); height: 72px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.vd-logo { font-family: var(--vd-display); font-size: 1.45rem; font-weight: 500; }
.vd-logo span { color: var(--vd-amber); }
.vd-nav__links { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); font-size: 0.9rem; color: rgba(245, 240, 228, 0.76); }
.vd-nav__links a:hover { color: var(--vd-warm); }
.vd-nav__cta { color: var(--vd-deep) !important; background: var(--vd-amber); padding: 0.78rem 1rem; font-weight: 700; }
.vd-menu-btn { display: none; width: 42px; height: 42px; border: 1px solid var(--vd-line-light); background: transparent; color: var(--vd-warm); align-items: center; justify-content: center; }
.vd-mobile-menu { display: none; border-top: 1px solid var(--vd-line-light); padding: 14px 20px 22px; background: var(--vd-deep); }
.vd-mobile-menu a { display: block; padding: 12px 0; color: rgba(245, 240, 228, 0.82); }

.vd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.vd-btn:hover { transform: translateY(-2px); }
.vd-btn--amber { background: var(--vd-amber); color: var(--vd-deep); }
.vd-btn--dark { background: var(--vd-deep); color: var(--vd-warm); }
.vd-btn--ghost { color: inherit; border-color: currentColor; background: transparent; }
.vd-btn--full { width: 100%; }

.vd-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 45%, rgba(229,160,79,0.18), transparent 30%),
    linear-gradient(180deg, var(--vd-deep), #071120 84%);
  color: var(--vd-warm);
}
.vd-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: clamp(40px, 7vw, 96px); align-items: center; padding: 72px 0; }
.vd-hero h1 { margin: 0; font-size: clamp(2.8rem, 7vw, 6.5rem); letter-spacing: -0.02em; line-height: 0.95; }
.vd-hero p { max-width: 650px; margin: 30px 0 0; color: rgba(245, 240, 228, 0.76); font-size: clamp(1.08rem, 1.7vw, 1.32rem); }
.vd-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.vd-signal-panel {
  border: 1px solid var(--vd-line-light);
  background: rgba(245, 240, 228, 0.045);
  box-shadow: var(--vd-shadow);
  padding: clamp(24px, 3.5vw, 42px);
  min-height: 560px;
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}
.vd-signal-panel::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(229,160,79,0.16);
  pointer-events: none;
}
.vd-signal-panel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(229,160,79,0.55), transparent);
}
.vd-signal-row { position: relative; display: grid; grid-template-columns: 74px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--vd-line-light); transition: transform 0.25s ease, border-color 0.25s ease; }
.vd-signal-row:hover { transform: translateX(6px); border-color: rgba(229,160,79,0.42); }
.vd-signal-row:last-child { border-bottom: 0; }
.vd-signal-stat { font-family: var(--vd-display); color: var(--vd-amber); font-size: 2rem; line-height: 1; }
.vd-signal-copy p { margin: 0; font-size: 0.94rem; color: rgba(245, 240, 228, 0.72); }
.vd-signal-label { display: block; margin-bottom: 4px; color: rgba(245,240,228,0.48); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

.vd-marquee { overflow: hidden; border-block: 1px solid var(--vd-line-light); background: var(--vd-deep); color: var(--vd-warm); }
.vd-marquee__track { display: flex; width: max-content; gap: 42px; padding: 18px 0; animation: vd-marquee 42s linear infinite; }
.vd-marquee span { font-family: var(--vd-display); font-size: 1.4rem; font-style: italic; color: rgba(245, 240, 228, 0.62); }
.vd-marquee b { color: var(--vd-amber); font-weight: 400; }
@keyframes vd-marquee { to { transform: translateX(-50%); } }

.vd-data-list { margin-top: clamp(48px, 6vw, 76px); display: grid; gap: 16px; }
.vd-data-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.54fr) minmax(0, 1fr) minmax(240px, 0.62fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--vd-line);
  background: rgba(255,255,255,0.32);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.vd-data-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(229,160,79,0.18), rgba(58,153,153,0.12));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}
.vd-data-row:hover, .vd-data-row:focus-within {
  transform: translateY(-4px);
  border-color: rgba(10,20,36,0.3);
  background: rgba(255,255,255,0.7);
  box-shadow: 0 22px 60px rgba(10,20,36,0.12);
}
.vd-data-row:hover::before, .vd-data-row:focus-within::before { opacity: 1; }
.vd-data-stat-wrap { align-self: start; }
.vd-data-stat { font-family: var(--vd-display); font-size: clamp(3.2rem, 8vw, 7rem); line-height: 0.88; color: var(--vd-deep); }
.vd-data-label { display: block; margin-top: 10px; color: var(--vd-amber-2); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.vd-data-row h3 { margin: 0 0 14px; font-size: clamp(1.45rem, 3vw, 2.35rem); max-width: 780px; }
.vd-data-row p { margin: 0; color: rgba(10, 20, 36, 0.68); max-width: 720px; font-size: 1.05rem; }
.vd-stat-solve {
  align-self: stretch;
  border-left: 1px solid var(--vd-line);
  padding-left: clamp(18px, 3vw, 30px);
  display: grid;
  align-content: center;
  transform: translateX(10px);
  opacity: 0.76;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.vd-data-row:hover .vd-stat-solve, .vd-data-row:focus-within .vd-stat-solve { opacity: 1; transform: translateX(0); }
.vd-stat-solve strong { color: var(--vd-teal); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; }
.vd-stat-solve p { margin-top: 10px; font-size: 0.96rem; color: rgba(10,20,36,0.78); }
.vd-stat-cue { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--vd-muted); font-size: 0.78rem; font-weight: 700; }
.vd-stat-cue::before { content: ''; width: 7px; height: 7px; border-radius: 99px; background: var(--vd-amber); animation: vd-pulse-dot 2.2s ease-in-out infinite; }

.vd-archetype-hero { background: var(--vd-paper); padding: clamp(64px, 8vw, 104px) 0 28px; }
.vd-archetype-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr); gap: clamp(28px, 5vw, 70px); align-items: end; }
.vd-archetype-intro h1 { margin: 0; font-size: clamp(3rem, 8vw, 7rem); }
.vd-archetype-intro p { margin: 0; color: rgba(10,20,36,0.68); font-size: 1.08rem; }
.vd-archetype-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 34px; }
.vd-archetype-card {
  grid-column: span 6;
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(190px, 0.58fr);
  gap: 22px;
  border: 1px solid var(--vd-line);
  background: rgba(255,255,255,0.52);
  padding: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
.vd-archetype-card:nth-child(5) { grid-column: 3 / span 8; }
.vd-archetype-card:hover { transform: translateY(-6px); border-color: rgba(229,160,79,0.46); box-shadow: 0 24px 70px rgba(10,20,36,0.12); }
.vd-archetype-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(229,160,79,0.14), rgba(58,153,153,0.12));
  opacity: 0;
  transition: opacity 0.32s ease;
  z-index: -1;
}
.vd-archetype-card:hover::before { opacity: 1; }
.vd-archetype-copy { display: flex; flex-direction: column; min-width: 0; }
.vd-archetype-index { color: var(--vd-amber-2); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.vd-archetype-card h2 { margin: 12px 0 12px; font-size: clamp(1.8rem, 3vw, 3rem); }
.vd-archetype-signal { margin: 0 0 18px; color: var(--vd-teal); font-weight: 800; }
.vd-archetype-facts { display: grid; gap: 12px; margin-top: 4px; }
.vd-archetype-fact { border-top: 1px solid var(--vd-line); padding-top: 12px; }
.vd-archetype-fact strong { display: block; margin-bottom: 4px; color: var(--vd-ink); font-size: 0.78rem; letter-spacing: 0.11em; text-transform: uppercase; }
.vd-archetype-fact p { margin: 0; color: rgba(10,20,36,0.68); font-size: 0.96rem; line-height: 1.5; }
.vd-archetype-systems { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 20px; }
.vd-archetype-systems span { border: 1px solid rgba(10,20,36,0.16); background: rgba(255,255,255,0.58); padding: 6px 9px; color: rgba(10,20,36,0.68); font-size: 0.76rem; font-weight: 700; }
.vd-archetype-visual {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(10,20,36,0.12);
  background: #0A1424;
  overflow: hidden;
  align-self: stretch;
}
.vd-archetype-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
/* Per-archetype focal point alignment */
.vd-arch-hidden-gem img    { object-position: 32% 72%; }
.vd-arch-leaky-bucket img  { object-position: center 30%; }
.vd-arch-founders-trap img { object-position: center 50%; }
.vd-arch-busy-but-broke img{ object-position: center 47%; }
.vd-arch-flying-blind img  { object-position: center 65%; }
/* Thumbnail in quiz gallery cards */
.archetype-card__thumb {
  display: block;
  width: calc(100% + 32px);
  height: 72px;
  object-fit: cover;
  margin: -16px -16px 14px;
}
.vd-arch-thumb-hidden-gem   { object-position: 32% 72%; }
.vd-arch-thumb-leaky-bucket { object-position: center 30%; }
.vd-arch-thumb-founders-trap{ object-position: center 50%; }
.vd-arch-thumb-busy-broke   { object-position: center 47%; }
.vd-arch-thumb-flying-blind { object-position: center 65%; }

.vd-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.vd-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.vd-card {
  border: 1px solid var(--vd-line);
  background: rgba(255, 255, 255, 0.42);
  padding: clamp(22px, 3vw, 34px);
  min-height: 240px;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), border-color 0.32s, background 0.32s, box-shadow 0.32s;
}
.vd-card:hover { transform: translateY(-6px); border-color: rgba(229,160,79,0.48); background: rgba(255,255,255,0.72); box-shadow: 0 22px 60px rgba(10,20,36,0.1); }
.vd-card--dark { border-color: var(--vd-line-light); background: rgba(245, 240, 228, 0.045); }
.vd-card--dark:hover { background: rgba(245,240,228,0.08); box-shadow: none; }
.vd-card h3 { margin: 0 0 14px; font-size: clamp(1.45rem, 2.5vw, 2.15rem); }
.vd-card p { margin: 0; color: rgba(10, 20, 36, 0.68); }
.vd-card--dark p { color: rgba(245, 240, 228, 0.68); }
.vd-card__meta { color: var(--vd-amber); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 26px; }

/* ── Systems spec sheet ── */
.vd-systems { margin-top: clamp(40px, 5vw, 60px); border-top: 1px solid var(--vd-line-light); display: grid; grid-template-columns: 1fr 1fr; }
.vd-system-row { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 30px 44px 30px 0; border-bottom: 1px solid var(--vd-line-light); align-items: start; }
.vd-system-row:nth-child(odd) { border-right: 1px solid var(--vd-line-light); }
.vd-system-row:nth-child(even) { padding-left: 44px; padding-right: 0; }
.vd-system-row:nth-last-child(-n+2) { border-bottom: 0; }
.vd-system-num { font-family: var(--vd-display); font-size: 0.88rem; color: var(--vd-amber); line-height: 1; padding-top: 5px; font-style: italic; }
.vd-system-row h3 { margin: 0 0 8px; font-size: clamp(1.05rem, 1.7vw, 1.25rem); font-weight: 700; color: var(--vd-warm); }
.vd-system-row p { margin: 0; color: rgba(245, 240, 228, 0.72); font-size: 0.94rem; line-height: 1.62; }

.vd-loop { margin-top: 56px; border-top: 1px solid var(--vd-line-light); }
.vd-loop-step { display: grid; grid-template-columns: 110px minmax(0, 1fr) minmax(220px, 0.55fr); gap: 30px; padding: 34px 0; border-bottom: 1px solid var(--vd-line-light); align-items: start; }
.vd-loop-step { transition: transform 0.3s ease, border-color 0.3s ease; }
.vd-loop-step:hover { transform: translateX(8px); border-color: rgba(229,160,79,0.4); }
.vd-loop-num { font-family: var(--vd-display); font-size: 3.6rem; color: var(--vd-amber); line-height: 0.9; }
.vd-loop-step h3 { margin: 0 0 10px; font-size: clamp(1.55rem, 3vw, 2.45rem); }
.vd-loop-step p { margin: 0; color: rgba(245, 240, 228, 0.72); }
.vd-loop-output { color: rgba(245, 240, 228, 0.58); font-size: 0.92rem; }
.vd-loop-output strong { color: var(--vd-teal); display: block; margin-bottom: 6px; }

.vd-proof { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr); gap: 28px; align-items: stretch; }
.vd-proof__quote { font-family: var(--vd-display); font-size: clamp(2.1rem, 4.8vw, 4.6rem); line-height: 1; margin: 0; }
.vd-founder { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 32px; align-items: center; }
.vd-founder img { width: 220px; aspect-ratio: 1; object-fit: cover; filter: grayscale(0.15); }

.vd-cta {
  background: var(--vd-deep);
  color: var(--vd-warm);
  padding: clamp(58px, 8vw, 92px);
  text-align: center;
  border: 1px solid var(--vd-line-light);
}
.vd-cta h2 { margin: 0 auto 18px; font-size: clamp(2.6rem, 7vw, 6.6rem); max-width: 900px; }
.vd-cta p { max-width: 620px; margin: 0 auto 30px; color: rgba(245, 240, 228, 0.74); font-size: 1.12rem; }

.quiz-container {
  background: var(--vd-paper);
  color: var(--vd-ink);
  border: 1px solid rgba(245, 240, 228, 0.18);
  box-shadow: 0 32px 90px rgba(0,0,0,0.28);
}
.quiz-opt {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  border: 1px solid var(--vd-line);
  background: rgba(255,255,255,0.58);
  color: var(--vd-ink);
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.quiz-opt:hover, .quiz-opt.selected { border-color: var(--vd-amber); background: #fff8ec; transform: translateY(-1px); }
.result-header-lockup { display: flex; gap: 18px; align-items: center; }
.quiz-results-row { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
.archetype-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.archetype-card { border: 1px solid var(--vd-line); background: rgba(255,255,255,0.55); padding: 16px; }
.archetype-card--active { border-color: var(--vd-amber); background: #fff6e8; }
.archetype-card--secondary { border-color: var(--vd-teal); }
.archetype-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.archetype-card__emoji { font-size: 1.4rem; }
.archetype-card__badge { color: var(--vd-muted); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.archetype-card__name { margin: 0 0 8px; font-family: var(--vd-display); font-size: 1.1rem; }
.archetype-card__summary { margin: 0; color: rgba(10,20,36,0.66); font-size: 0.86rem; }
.hidden, .invisible { display: none !important; }
.vd-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.vd-field { width: 100%; border: 1px solid var(--vd-line); background: #fff; color: var(--vd-ink); padding: 0.9rem 1rem; }
.vd-field:focus { outline: 2px solid rgba(229,160,79,0.32); border-color: var(--vd-amber); }
.vd-field--full { grid-column: 1 / -1; }

.vd-blog-hero { padding: clamp(74px, 10vw, 126px) 0 52px; background: var(--vd-deep); color: var(--vd-warm); }
.vd-blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.vd-post-card { display: grid; min-height: 310px; border: 1px solid var(--vd-line); background: rgba(255,255,255,0.58); overflow: hidden; }
.vd-post-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.vd-post-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(10,20,36,0.1); }
.vd-post-card__image { aspect-ratio: 16/9; background: var(--vd-paper-2); object-fit: cover; width: 100%; height: 100%; }
.vd-post-card__body { padding: 22px; }
.vd-post-card h3 { margin: 10px 0 12px; font-size: 1.45rem; }
.vd-post-card p { color: rgba(10,20,36,0.66); margin: 0; }
.vd-post-meta { color: var(--vd-muted); font-size: 0.78rem; font-weight: 600; }
.insights-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.insight-card { display: grid; min-height: 310px; border: 1px solid var(--vd-line); background: rgba(255,255,255,0.58); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.insight-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(10,20,36,0.1); }
.insight-image-wrap { aspect-ratio: 16 / 9; background: var(--vd-paper-2); position: relative; overflow: hidden; }
.insight-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insight-card:hover .insight-image-wrap img { transform: scale(1.05); }
.insight-category-badge { position: absolute; left: 14px; bottom: 14px; background: var(--vd-amber); color: var(--vd-deep); padding: 5px 9px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.insight-body { padding: 22px; }
.insight-title { font-family: var(--vd-display); font-size: 1.45rem; line-height: 1.1; margin: 10px 0 12px; color: var(--vd-ink); }
.insight-excerpt { color: rgba(10,20,36,0.66); margin: 0 0 18px; }
.insight-meta { color: var(--vd-muted); font-size: 0.78rem; font-weight: 600; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.post-wrap { width: min(820px, calc(100vw - 40px)); margin: 0 auto; padding: clamp(72px, 10vw, 132px) 0; }
.post-cat { display: block; margin-bottom: 18px; color: var(--vd-amber); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.post-title { font-family: var(--vd-display); font-size: clamp(2.8rem, 7vw, 6.2rem); margin: 0 0 24px; color: var(--vd-ink); line-height: 1.02; }
.post-meta { color: var(--vd-muted); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
.post-meta img { width: 36px; height: 36px; border-radius: 999px; object-fit: cover; }
.post-hero-img { width: 100%; max-height: 440px; object-fit: cover; margin: 32px 0; }
.post-body h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); margin: 48px 0 16px; }
.post-body h3 { font-size: 1.35rem; margin: 30px 0 10px; }
.post-body p, .post-body li { color: rgba(10,20,36,0.72); font-size: 1.08rem; }
.post-body a { color: var(--vd-amber-2); text-decoration: underline; text-underline-offset: 3px; }
.post-body blockquote { margin: 40px 0; border-top: 2px solid var(--vd-amber); border-bottom: 1px solid rgba(10,20,36,0.12); padding: 18px 0; font-family: var(--vd-display); font-size: 1.55rem; color: var(--vd-ink); font-style: italic; }
.post-cta { background: var(--vd-deep); color: var(--vd-warm); padding: 28px; margin-top: 42px; border: 1px solid var(--vd-line-light); }
.post-cta p { color: rgba(245,240,228,0.72); }
.post-cta .btn { display: inline-flex; background: var(--vd-amber); color: var(--vd-deep); padding: 0.95rem 1.35rem; font-weight: 700; }
.vd-prose { width: min(820px, calc(100vw - 40px)); margin: 0 auto; }
.vd-prose h1 { font-size: clamp(2.8rem, 7vw, 6.2rem); margin: 0 0 24px; }
.vd-prose h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); margin: 48px 0 16px; }
.vd-prose h3 { font-size: 1.35rem; margin: 30px 0 10px; }
.vd-prose p, .vd-prose li { color: rgba(10,20,36,0.72); font-size: 1.08rem; }
.vd-prose a { color: var(--vd-amber-2); text-decoration: underline; text-underline-offset: 3px; }
.vd-prose blockquote { margin: 40px 0; border-top: 2px solid var(--vd-amber); border-bottom: 1px solid rgba(10,20,36,0.12); padding: 18px 0; font-family: var(--vd-display); font-size: 1.55rem; color: var(--vd-ink); font-style: italic; }
.vd-prose--dark p, .vd-prose--dark li { color: rgba(245,240,228,0.72); }

.vd-footer { background: var(--vd-deeper); color: rgba(245,240,228,0.68); padding: 54px 0 36px; }
.vd-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 34px; border-bottom: 1px solid var(--vd-line-light); }
.vd-footer h3 { font-family: var(--vd-body); margin: 0 0 14px; color: var(--vd-warm); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; }
.vd-footer a { display: block; color: rgba(245,240,228,0.62); margin: 7px 0; }
.vd-footer a:hover { color: var(--vd-amber); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
@media (max-width: 900px) {
  .vd-nav__links { display: none; }
  .vd-menu-btn { display: inline-flex; }
  .vd-mobile-menu.is-open { display: block; }
  .vd-hero__grid, .vd-proof, .vd-founder, .vd-grid-2, .vd-grid-3, .vd-blog-grid, .insights-grid, .vd-footer__grid { grid-template-columns: 1fr; }
  .vd-hero { min-height: auto; }
  .vd-hero h1 { font-size: clamp(3.3rem, 17vw, 5.5rem); }
  .vd-signal-panel { min-height: 0; }
  .vd-data-row { grid-template-columns: 1fr; gap: 14px; }
  .vd-stat-solve { border-left: 0; border-top: 1px solid var(--vd-line); padding-left: 0; padding-top: 18px; transform: none; opacity: 1; }
  .vd-archetype-intro { grid-template-columns: 1fr; align-items: start; }
  .vd-archetype-card, .vd-archetype-card:nth-child(5) { grid-column: 1 / -1; grid-template-columns: 1fr; min-height: 0; }
  .vd-archetype-visual { min-height: 180px; order: -1; }
  .vd-loop-step { grid-template-columns: 1fr; gap: 12px; }
  .vd-systems { grid-template-columns: 1fr; }
  .vd-system-row { padding: 24px 0; border-right: 0 !important; }
  .vd-system-row:nth-child(even) { padding-left: 0; }
  .vd-system-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--vd-line); }
  .vd-system-row:last-child { border-bottom: 0; }
  .quiz-results-row { grid-template-columns: 1fr; }
  .vd-form-grid { grid-template-columns: 1fr; }
}

/* ── Chat mockup ── */
.vd-chat-wrap { width: 100%; max-width: 900px; position: relative; height: 440px; z-index: 1; margin: 0 auto; }
.vd-chat-wrap__inner { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 85%; height: 100%; background: #fff; border-radius: 16px; box-shadow: 0 32px 90px rgba(0,0,0,0.28); border: 1px solid var(--vd-paper-2); overflow: hidden; display: flex; flex-direction: column; }
.vd-chat-titlebar { border-bottom: 1px solid var(--vd-paper-2); padding: 0.9rem 1.2rem; display: flex; justify-content: space-between; align-items: center; background: #fafafa; }
.vd-chat-titlebar__dots { display: flex; gap: 0.5rem; }
.vd-chat-titlebar__dots span { width: 12px; height: 12px; border-radius: 50%; }
.vd-chat-titlebar__label { font-size: 0.8rem; color: var(--vd-muted); font-weight: 600; }
.vd-chat-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; flex-grow: 1; overflow: hidden; }
.vd-chat-row { display: flex; gap: 0.6rem; align-items: flex-start; }
.vd-chat-row--bot { flex-direction: row-reverse; }
.vd-chat-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }
.vd-chat-avatar--user { background: var(--vd-paper-2); color: var(--vd-muted); }
.vd-chat-avatar--bot { background: var(--vd-amber); color: var(--vd-deep); font-size: 0.65rem; }
.vd-chat-bubble { padding: 0.7rem 1rem; max-width: 70%; font-size: 0.82rem; line-height: 1.45; }
.vd-chat-bubble--user { background: var(--vd-paper); border-radius: 0 12px 12px 12px; color: var(--vd-ink); }
.vd-chat-bubble--bot { background: var(--vd-deep); border-radius: 12px 0 12px 12px; color: var(--vd-warm); }
.vd-chat-time { font-size: 0.68rem; color: var(--vd-muted); margin-top: 4px; }
.vd-chat-bubble--bot .vd-chat-time { color: rgba(245,240,228,0.5); }

.vd-chat-float { position: absolute; background: #fff; padding: 1.2rem 1.5rem; border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 0.8rem; border: 1px solid var(--vd-paper-2); animation: vd-float 6s ease-in-out infinite; }
.vd-chat-float--left { bottom: 40px; left: 0; }
.vd-chat-float--right { top: 60px; right: 0; animation-duration: 8s; }
.vd-chat-float__icon { padding: 0.7rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.vd-chat-float__label { font-size: 0.75rem; color: var(--vd-muted); font-weight: 500; }
.vd-chat-float__value { font-family: var(--vd-display); font-size: 1.4rem; font-weight: 500; color: var(--vd-ink); }

@keyframes vd-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ── Pain point cards ── */
.vd-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vd-pain-card { background: rgba(255,255,255,0.42); padding: clamp(22px, 3vw, 34px); border: 1px solid var(--vd-line); transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s ease; }
.vd-pain-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(10,20,36,0.1); }
.vd-pain-card__icon { width: 56px; height: 56px; background: var(--vd-deep); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 2rem; }
.vd-pain-card__quote { font-size: 1.1rem; color: var(--vd-ink); margin: 0 0 2rem; line-height: 1.6; font-weight: 500; }
.vd-pain-card__fix { font-size: 0.95rem; color: rgba(10,20,36,0.68); border-top: 1px solid var(--vd-line); padding-top: 1.5rem; }
.vd-pain-card__outcome { color: var(--vd-amber); font-weight: 700; display: block; margin-top: 0.5rem; }

/* ── Pricing ── */
.vd-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vd-pricing-card { background: rgba(255,255,255,0.42); padding: clamp(28px, 4vw, 42px); border: 1px solid var(--vd-line); display: flex; flex-direction: column; transition: transform 0.32s cubic-bezier(0.22,1,0.36,1), box-shadow 0.32s ease; }
.vd-pricing-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(10,20,36,0.1); }
.vd-pricing-card--highlight { border-color: var(--vd-amber); position: relative; }
.vd-pricing-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--vd-amber); color: var(--vd-deep); padding: 6px 16px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.vd-pricing-card__tier { color: var(--vd-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; margin-bottom: 1rem; }
.vd-pricing-card__name { font-family: var(--vd-display); font-size: clamp(1.45rem, 2.5vw, 2rem); margin: 0 0 1.5rem; }
.vd-pricing-card__price { font-family: var(--vd-display); font-size: clamp(2.8rem, 5vw, 3.5rem); line-height: 1; margin-bottom: 0.5rem; }
.vd-pricing-card__suffix { font-size: 1rem; color: var(--vd-muted); margin-bottom: 2.5rem; }
.vd-pricing-card__details { color: rgba(10,20,36,0.68); line-height: 1.6; margin-bottom: 3rem; flex-grow: 1; font-size: 1.05rem; }

/* ── Mobile overrides for new components ── */
@media (max-width: 900px) {
  /* Hero */
  .vd-hero__grid { grid-template-columns: 1fr; text-align: center; padding: 48px 0; }
  .vd-hero h1 { font-size: clamp(2.6rem, 12vw, 4.5rem); }
  .vd-hero__actions { justify-content: center; }
  .vd-hero .vd-kicker { text-align: center; }

  /* Chat mockup */
  .vd-chat-wrap { position: relative; height: auto; margin-top: 40px; }
  .vd-chat-wrap__inner { position: relative; left: auto; top: auto; transform: none; width: 100%; height: auto; }
  .vd-chat-body { max-height: none; }
  .vd-chat-float { display: none; }

  /* Pain point cards */
  .vd-pain-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .vd-pricing-grid { grid-template-columns: 1fr; }
  .vd-pricing-card__badge { left: 50%; }

  /* Section headings */
  .vd-section-heading { font-size: clamp(1.8rem, 8vw, 3rem); }
}

/* ── Blog post code blocks ── */
.post-body code { background: #f0ece4; border: 1px solid #ddd8ce; border-radius: 3px; font-size: .875em; padding: .2em .4em; font-family: 'Fira Mono','Cascadia Code','Menlo',monospace; }
.post-body .code-block { background: #0f111a; border-radius: 10px; overflow: hidden; margin: 2rem 0; box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.post-body .code-block__bar { display: flex; align-items: center; justify-content: space-between; padding: .55rem 1.1rem; background: #1a1d2e; border-bottom: 1px solid rgba(255,255,255,.06); }
.post-body .code-block__lang { font-family: 'Fira Mono','Cascadia Code','Menlo',monospace; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.post-body .code-block__dots { display: flex; gap: .45rem; }
.post-body .code-block__dots span { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.post-body .code-block__dots span:nth-child(1) { background: #ff5f57; }
.post-body .code-block__dots span:nth-child(2) { background: #febc2e; }
.post-body .code-block__dots span:nth-child(3) { background: #28c840; }
.post-body .code-block pre { margin: 0; padding: 1.35rem 1.5rem; overflow-x: auto; background: transparent; }
.post-body .code-block pre code { background: none; border: none; padding: 0; font-family: 'Fira Mono','Cascadia Code','Menlo',monospace; font-size: .875rem; line-height: 1.75; color: #e2e8f0; }
