/* ============================================================
   VIADOR PARTNERS — Design System
   Sophisticated light · Sharp · Approachable · Distinctive
   Fonts: Inter (all weights — display, body, labels)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Palette — boosted contrast throughout */
  --cream:      #FFFFFF;        /* pure white base — maximum contrast */
  --cream-dark: #F2EDE6;        /* section alternates */
  --ink:        #141210;        /* near-black — stronger than before */
  --ink-mid:    #2E2B27;        /* was too light — now clearly legible */
  --ink-soft:   #52504C;        /* body text secondary — was #6B6560, now darker */
  --gold:       #6B745E;        /* slightly deeper gold — more contrast on white */
  --gold-light: #D9A84A;
  --gold-faint: rgba(191, 144, 32,0.08);
  --gold-faint2:rgba(191, 144, 32,0.14);
  --charcoal:   #1A1C24;
  --charcoal2:  #22252F;
  --white:      #FFFFFF;
  --line:       rgba(20,18,16,0.14);  /* darker dividers — more visible */
  --line-soft:  rgba(20,18,16,0.08);

  /* Type */
  --font-display: 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Inter', monospace;

  /* Spacing */
  --max:   1160px;
  --gap:   clamp(16px, 3vw, 32px);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28,26,23,.06), 0 4px 12px rgba(28,26,23,.04);
  --shadow-md: 0 4px 16px rgba(28,26,23,.08), 0 12px 32px rgba(28,26,23,.06);
  --shadow-lg: 0 8px 32px rgba(28,26,23,.10), 0 24px 64px rgba(28,26,23,.08);

  /* Easing */
  --ease: cubic-bezier(.22,.68,0,1.2);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Grain texture ──────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
  animation: grain 8s steps(1) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(3%, 1%); }
  30% { transform: translate(-1%, 4%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-3%, 3%); }
  60% { transform: translate(1%, -1%); }
  70% { transform: translate(-2%, 2%); }
  80% { transform: translate(3%, -3%); }
  90% { transform: translate(-1%, 1%); }
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: clamp(80px, 10vw, 140px) 0; }
#paths { padding-top: 40px; }

/* ── Labels / Eyebrows ──────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-label.light { color: rgba(255,255,255,0.5); }
.section-label.light::before { background: rgba(255,255,255,0.3); }

/* ── Section headers ────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ── Global Nav (dark charcoal bar — sitewide canonical) ── */
.nav-wrap {
  background: #1F2326;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nav-wrap .nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-sizing: border-box;
}
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-brand-mark {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; letter-spacing: 1px;
  color: #fff; background: transparent; flex-shrink: 0;
}
.nav-brand-text { color: #fff; font-weight: 700; font-size: 15px; letter-spacing: 1.4px; line-height: 1.1; }
.nav-brand-text span { display: block; font-weight: 500; font-size: 11px; letter-spacing: 1.8px; opacity: 0.7; margin-top: 2px; }
.nav-wrap .nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; flex: 1; justify-content: center;
  padding: 0; margin: 0;
}
.nav-wrap .nav-link {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.2px;
  transition: color 0.15s ease; display: flex; align-items: center; gap: 4px;
}
.nav-wrap .nav-link:hover { color: #fff; }
.nav-wrap .nav-link.has-caret::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; margin-left: 4px; opacity: 0.7;
}
.nav-ctas { display: flex; align-items: center; gap: 12px; }
.nav-wrap .btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 0.2px;
  text-decoration: none; border-radius: 4px; border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.18s ease; white-space: nowrap; box-sizing: border-box;
}
.nav-wrap .btn-primary { background: #6B745E; color: #fff; border-color: #6B745E; }
.nav-wrap .btn-primary:hover { background: #8B9474; border-color: #8B9474; }
.nav-wrap .btn-secondary-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.nav-wrap .btn-secondary-dark:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
/* ── Nav-wrap dropdown overrides (dark theme) ── */
.nav-wrap .nav-dropdown { position: relative; }
.nav-wrap .nav-dropdown-trigger { cursor: pointer; user-select: none; }
.nav-wrap .nav-dropdown-trigger::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid currentColor; margin-left: 5px; opacity: 0.7; vertical-align: middle; }
.nav-wrap .nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 210px; background: #1F2326; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.35); padding: 12px 6px 6px; z-index: 200; }
.nav-wrap .nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-wrap .nav-dropdown-menu a { display: block; color: rgba(247,245,239,0.82); font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 400; padding: 9px 14px; border-radius: 4px; text-decoration: none; white-space: nowrap; transition: background 0.15s, color 0.15s; }
.nav-wrap .nav-dropdown-menu a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.nav-wrap .nav-links a { color: rgba(255,255,255,0.85); }
@media (max-width: 720px) {
  .nav-wrap .nav { flex-wrap: wrap; gap: 16px; padding: 14px 20px; }
  .nav-wrap .nav-links { display: none; }
  .nav-ctas { width: 100%; justify-content: flex-end; }
  .nav-brand-text { font-size: 13px; }
  .nav-brand-text span { font-size: 10px; }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1A1C24;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border: 1.5px solid #1A1C24;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(26,28,36,0.3);
}

.btn-primary:hover {
  background: #6B745E;
  border-color: #6B745E;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(191, 144, 32,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--ink-mid);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
}

.btn-primary-dark:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 13px 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  text-decoration: none;
}

.btn-ghost-dark:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-full { width: 100%; justify-content: center; }

.btn-back {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 15px;
  cursor: pointer;
  padding: 12px 0 0;
  display: block;
  transition: color .2s;
}

.btn-back:hover { color: var(--ink); }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247,243,238,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 0;
}
.logo-img {
  display: block;
  height: 40px;
  width: auto;
  vertical-align: middle;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover { color: var(--ink); }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: pointer; }
.nav-dropdown-trigger::after { content: ' \25BE'; font-size: 10px; opacity: 0.5; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 0;
  padding-top: 16px;
  min-width: 220px;
  box-shadow: 0 4px 16px rgba(28,26,23,.08), 0 12px 32px rgba(28,26,23,.06);
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: var(--gold-faint); color: var(--ink); }

.nav-gold {
  color: var(--gold) !important;
  font-weight: 500 !important;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 9px 20px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  border: 1.5px solid var(--ink);
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

.burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line);
  gap: 4px;
}

.mobile-drawer a {
  font-size: 18px;
  color: var(--ink-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  text-decoration: none;
}

.mobile-drawer a:last-child { border-bottom: none; }

.drawer-cta {
  color: var(--gold) !important;
  font-weight: 500 !important;
}

.drawer-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 12px 0 4px;
  padding: 0;
  border-bottom: none !important;
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF STRIP
═══════════════════════════════════════════ */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 32px;
  background: #1A1C24;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.proof-item {
  text-align: center;
  padding: 0 48px;
  flex: 1;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #6B745E;
  line-height: 1;
  margin-bottom: 8px;
}
.proof-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .proof-strip {
    flex-wrap: wrap;
    gap: 32px;
  }
  .proof-divider { display: none; }
  .proof-item { flex: calc(50% - 16px); }
}

/* ═══════════════════════════════════════════
   CTA TRUST LINE
═══════════════════════════════════════════ */
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: #888;
}
.cta-trust span { white-space: nowrap; }

/* ═══════════════════════════════════════════
   AUDIENCE ROUTER
═══════════════════════════════════════════ */
.audience-router {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
}
.router-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}
.router-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.router-card {
  border: 1px solid #e8e4de;
  border-radius: 10px;
  padding: 28px 20px;
  text-decoration: none;
  transition: all 0.2s;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.router-card:hover {
  border-color: #6B745E;
  box-shadow: 0 4px 16px rgba(191, 144, 32,0.15);
  transform: translateY(-2px);
}
.router-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.router-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
}
.router-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: #888;
}
@media (max-width: 600px) {
  .router-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: clamp(8px, 1.5vw, 20px) 0 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201,146,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  padding-bottom: clamp(64px, 8vw, 100px);
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 36px;
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero proof card (replaces stat stack) */
.hero-proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
  overflow: hidden;
}

.hero-proof-header {
  background: var(--ink);
  padding: 12px 24px;
}

.hero-proof-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-proof-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}

.hero-proof-item-last {
  border-bottom: none;
}

.hero-proof-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-faint2);
  border: 1px solid var(--gold-faint2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--gold);
  font-style: normal;
}

.hero-proof-headline {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
  line-height: 1.2;
}

.hero-proof-detail {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-proof-footer {
  background: var(--cream-dark);
  padding: 10px 24px;
  border-top: 1px solid var(--line);
}

.hero-proof-free {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-stat-stack {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-stat {
  padding: 24px 28px;
}

.hero-stat-divider {
  height: 1px;
  background: var(--line);
  margin: 0 28px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.hero-stat-num span {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-soft);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-loan-types {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-loan-types span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--cream-dark);
  color: var(--ink-mid);
  border: 1px solid var(--line);
}

.pill-gold {
  background: var(--gold-faint2) !important;
  border-color: var(--gold-light) !important;
  color: var(--gold) !important;
}

.hero-rule {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-bottom: 0;
}

.hero-rule-line { flex: 1; height: 1px; background: var(--line); }

.hero-rule-text {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   THREE PATHS
═══════════════════════════════════════════ */
.paths-section { background: var(--cream); padding-top: 40px; }

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.path-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  transition: background .25s;
  cursor: default;
}

.path-card:hover { background: #FDFAF7; }

.path-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}

.path-card:hover::after { transform: scaleX(1); }

.path-card-mid {
  position: relative;
}

.path-featured-label {
  position: absolute;
  top: -1px; left: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 4px 10px;
}

.path-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: rgba(28,26,23,0.18);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
  user-select: none;
}

.path-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.path-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.path-card p {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.path-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-arrow {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s, gap .2s;
}

.link-arrow:hover { color: var(--gold); gap: 8px; }

.link-plain {
  font-size: 20px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

.link-plain:hover { color: var(--ink); }

/* ═══════════════════════════════════════════
   BPL MOMENT
═══════════════════════════════════════════ */
.bpl-moment {
  background: var(--charcoal);
  overflow: hidden;
  position: relative;
}

.bpl-moment::before {
  content: 'BPL';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.bpl-moment-inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  padding: clamp(72px, 10vw, 120px) 0;
}

.bpl-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.bpl-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 14px;
}

.bpl-sub strong { color: var(--gold-light); font-weight: 500; }

.bpl-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* BPL Comparison table */
.bpl-compare {
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.bpl-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.bpl-compare-row:last-child { border-bottom: none; }

.bpl-compare-row span {
  padding: 16px 20px;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.bpl-compare-row span:first-child {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  border-right: 1px solid rgba(255,255,255,0.10);
}

.bpl-compare-header span {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.45) !important;
  padding: 12px 20px !important;
}

.bpl-compare-header { background: rgba(255,255,255,0.05); }

.bpl-col-highlight {
  background: rgba(201,146,58,0.18) !important;
  color: var(--gold-light) !important;
  font-weight: 600;
}

.bpl-compare-row span:nth-child(2) {
  border-right: 1px solid rgba(255,255,255,0.10);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section { background: var(--cream-dark); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  margin-top: 40px;
}

.testimonial {
  background: var(--white);
  padding: 32px 28px;
}

.testimonial-featured {
  background: var(--gold-faint);
  border-top: 2px solid var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 24px;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial footer strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.testimonial footer span {
  font-size: 12px;
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════
   PROGRAMS
═══════════════════════════════════════════ */
.programs-section { background: var(--cream); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
}

.program {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  transition: background .2s;
}

.program:hover { background: #FDFAF7; }

.program-featured {
  background: var(--charcoal) !important;
}

.program-featured:hover { background: var(--charcoal2) !important; }

.program-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 3px 10px;
}

.program-type {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.program-featured .program-type { color: var(--gold-light); }

.program h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.program-featured h3 { color: var(--white); }

.program p {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-featured p { color: rgba(255,255,255,0.72); }

.program ul {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.program li {
  font-size: 17px;
  color: var(--ink-mid);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.program li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.program-featured li { color: rgba(255,255,255,0.78); }
.program-featured li::before { color: var(--gold-light); }

.program-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}

.program-featured .program-link {
  color: var(--gold-light);
  border-color: rgba(201,146,58,0.3);
}

.program-link:hover { color: var(--gold); border-color: var(--gold); }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-section {
  background: var(--cream-dark);
  padding: clamp(64px, 8vw, 100px) 0;
}

.how-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 40px;
}

.how-step {
  flex: 1;
  padding: 0 32px;
}

.how-step:first-child { padding-left: 0; }
.how-step:last-child  { padding-right: 0; }

.how-connector {
  width: 1px;
  height: 120px;
  background: var(--line);
  align-self: flex-start;
  margin-top: 28px;
}

.how-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.75;
}

.how-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.how-body p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   DEAL FORM
═══════════════════════════════════════════ */
.form-section {
  background: var(--cream);
  padding: clamp(72px, 9vw, 120px) 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.form-copy { padding-top: 8px; }

.form-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.form-copy > p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.65;
}

.form-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  color: var(--ink-mid);
  font-weight: 400;
}

.trust-item span {
  color: var(--gold);
  font-weight: 700;
}

.form-notes { display: flex; flex-direction: column; gap: 14px; }

.form-notes p {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.form-notes strong {
  font-weight: 500;
  color: var(--ink-mid);
}

.form-notes a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 44px;
}

.steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.step-pip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.step-pip span {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s, color .3s;
}

.step-pip.active span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
}

.step-pip-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.step-track {
  flex: 1;
  height: 1.5px;
  background: var(--line);
  margin: 0 12px;
  margin-bottom: 20px;
}

/* Fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field label em {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  font-style: normal;
  color: var(--ink-soft);
  opacity: 0.6;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.6;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  outline: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0 16px;
}

.req { color: var(--gold); font-family: var(--font-body); }

.form-step-title { display: none; }

.form-fine {
  text-align: center;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-check {
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: var(--gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   PARTNER BAND
═══════════════════════════════════════════ */
.partner-band {
  background: var(--cream-dark);
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 80px);
  align-items: center;
}

.partner-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.partner-copy p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.partner-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.partner-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .2s;
}

.partner-feat:hover { border-color: var(--gold-light); }

.partner-feat-icon {
  width: 36px;
  height: 36px;
  background: var(--ink);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.partner-feat strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
}

.partner-feat p {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════
   TOOLS
═══════════════════════════════════════════ */
.tools-section { background: var(--white); }

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  margin-top: 48px;
}

.tool-card {
  background: var(--cream);
  padding: 32px;
}

.tool-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.tool-card p {
  font-size: 20px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.6;
}

.tool-result {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 20px;
  color: var(--ink-mid);
  line-height: 1.6;
  min-height: 52px;
}

.tool-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 1px;
  transition: border-color .2s;
}

.tool-link:hover { border-color: var(--gold); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section { background: var(--cream); }

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left { position: sticky; top: 100px; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
  transition: color .2s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s var(--ease-out);
}

.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--gold); }

.faq-item p {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.8;
  padding: 0 0 24px;
}

.faq-item a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta {
  background: var(--charcoal);
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,146,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 20px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 36px;
}

.final-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.final-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.final-trust .dot { opacity: 0.3; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  background: var(--gold);
  color: var(--ink);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-brand span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.footer-nav-group h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
}

.footer-nav-group a {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 5px 0;
  transition: color .2s;
}

.footer-nav-group a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag    { animation: fadeUp .5s ease both; animation-delay: .05s; opacity: 0; }
.hero-title  { animation: fadeUp .6s ease both; animation-delay: .15s; opacity: 0; }
.hero-sub    { animation: fadeUp .6s ease both; animation-delay: .28s; opacity: 0; }
.hero-actions{ animation: fadeUp .6s ease both; animation-delay: .38s; opacity: 0; }
.hero-right  { animation: fadeUp .7s ease both; animation-delay: .25s; opacity: 0; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: 1; }
  .hero-stat-stack { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-stat-divider { display: none; }

  .bpl-moment-inner,
  .form-layout,
  .partner-inner { grid-template-columns: 1fr; gap: 48px; }

  .paths-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }

  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }

  .how-grid { flex-direction: column; gap: 32px; }
  .how-connector { display: none; }
  .how-step { padding: 0; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  .nav-inner { width: calc(100% - 32px); }
  .hero-inner { width: calc(100% - 32px); }

  .hero-stat-stack { grid-template-columns: 1fr; }

  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }

  .bpl-moment-inner { width: calc(100% - 32px); }
  .final-cta-actions { flex-direction: column; align-items: center; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .hero-rule { width: calc(100% - 32px); }
}

/* ═══════════════════════════════════════════
   NAV PHONE NUMBER
═══════════════════════════════════════════ */
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.nav-phone:hover { color: var(--gold); }

@media (max-width: 960px) {
  .nav-phone { display: none; }
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-inner {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trust-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 12px;
}

.trust-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .trust-bar-divider { display: none; }
  .trust-bar-inner { gap: 10px; justify-content: flex-start; }
  .trust-bar-item:nth-child(3) { display: none; }
}

/* ═══════════════════════════════════════════
   HERO SEO SUBTITLE + URGENCY
═══════════════════════════════════════════ */
.hero-seo-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 10px;
}

.hero-seo-sub strong {
  color: var(--ink-mid);
  font-weight: 500;
}

.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 7px 14px;
  background: var(--gold-faint2);
  border: 1px solid rgba(201,146,58,0.2);
}

.urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 1.5s ease infinite;
}

/* ═══════════════════════════════════════════
   STICKY MOBILE CTA
═══════════════════════════════════════════ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--ink);
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  gap: 10px;
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 20px;
  text-decoration: none;
  text-align: center;
}

.mobile-sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  padding: 13px 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .mobile-sticky-cta {
    display: flex;
  }

  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body {
    padding-bottom: 72px;
  }
}

/* ── VIADOR BRAND REFINEMENTS ── */
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-left: 3px;
}
.logo-text { display: flex; align-items: baseline; gap: 0; }

/* ── Author byline ─────────────────────────────────────────────── */
.author-byline{display:flex;align-items:center;gap:12px;padding:16px 0;margin-bottom:24px;border-bottom:1px solid var(--line-soft);font-size:13px;color:var(--ink-soft)}
.author-byline img{width:36px;height:36px;border-radius:50%;object-fit:cover;flex-shrink:0}
.author-byline strong{color:var(--ink)}

/* ── Brand concept — dor underline ─────────────────────────────── */
.dor {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* ============================================================
   v5.4 HOMEPAGE REBUILD — typography + spacing system
   ============================================================ */
:root {
  --vp-gold: #6B745E;
  --vp-charcoal: #1C1C1C;
  --vp-bg: #F4F5F3;
  --vp-body-col: #1F2326;
  --vp-muted: #666666;
}
.vp-eyebrow { font-family:'DM Mono',monospace; font-size:13px; font-weight:500; letter-spacing:0.08em; text-transform:uppercase; color:var(--vp-gold); margin:0 0 16px; }
.vp-h1 { font-family:'Fraunces',Georgia,serif; font-size:38px; font-weight:800; line-height:1.08; letter-spacing:-0.015em; color:var(--vp-charcoal); margin:0; }
@media (min-width:768px) { .vp-h1 { font-size:56px; } }
.vp-h1 em { font-style:italic; color:var(--vp-gold); }
.vp-h2 { font-family:'Fraunces',Georgia,serif; font-size:26px; font-weight:700; line-height:1.2; color:var(--vp-charcoal); margin:0 0 16px; }
@media (min-width:768px) { .vp-h2 { font-size:34px; } }
.vp-h3 { font-family:'Fraunces',Georgia,serif; font-size:19px; font-weight:600; line-height:1.3; color:var(--vp-charcoal); margin:0 0 12px; }
@media (min-width:768px) { .vp-h3 { font-size:22px; } }
.vp-body { font-family:'DM Sans',sans-serif; font-size:17px; font-weight:400; line-height:1.7; color:var(--vp-body-col); margin:0 0 16px; }
.vp-muted-txt { color:var(--vp-muted); }
.vp-section { padding:56px 0; background:var(--vp-bg); }
@media (min-width:768px) { .vp-section { padding:96px 0; } }
.vp-section--white { background:#FFFFFF; }
.vp-section--dark { background:var(--vp-charcoal); color:#E8E4DF; }
.vp-section--dark .vp-h2, .vp-section--dark .vp-h1 { color:#FFFFFF; }
.vp-section--dark .vp-body { color:rgba(255,255,255,0.72); }
.vp-section--dark .vp-eyebrow { color:var(--vp-gold); }
.vp-container { max-width:1120px; margin:0 auto; padding:0 24px; }
.vp-narrow { max-width:760px; margin:0 auto; padding:0 24px; }
.vp-card { background:#FFFFFF; border:1px solid rgba(0,0,0,0.08); border-radius:12px; padding:32px; transition:box-shadow .2s, transform .2s; }
.vp-card:hover { box-shadow:0 8px 24px rgba(0,0,0,0.06); }
.vp-card--dark { background:#26272D; border-color:rgba(255,255,255,0.08); }
.vp-card--dark .vp-h3 { color:#FFFFFF; }
.vp-card--dark .vp-body { color:rgba(255,255,255,0.7); }
.vp-grid { display:grid; grid-template-columns:1fr; gap:24px; }
@media (min-width:768px) { .vp-grid-3 { grid-template-columns:repeat(3,1fr); } .vp-grid-2 { grid-template-columns:repeat(2,1fr); } .vp-grid-4 { grid-template-columns:repeat(2,1fr); } }
@media (min-width:1024px) { .vp-grid-4 { grid-template-columns:repeat(4,1fr); } }
.vp-cta-isolate { margin:48px 0; }
.vp-btn { display:inline-flex; align-items:center; justify-content:center; font-family:'DM Sans',sans-serif; font-weight:600; font-size:16px; padding:16px 32px; border-radius:8px; text-decoration:none; transition:background .15s, transform .15s, border-color .15s; border:2px solid transparent; line-height:1; cursor:pointer; }
.vp-btn--gold { background:var(--vp-gold); color:#FFFFFF; }
.vp-btn--gold:hover { background:#a57b18; }
.vp-btn--ghost { background:transparent; color:var(--vp-charcoal); border-color:rgba(28,28,28,0.2); }
.vp-btn--ghost:hover { border-color:var(--vp-charcoal); }
.vp-btn--ghost-dark { background:transparent; color:#FFFFFF; border-color:rgba(255,255,255,0.3); }
.vp-btn--ghost-dark:hover { border-color:#FFFFFF; }
.vp-btn--large { padding:18px 40px; font-size:17px; }
.vp-label-badge { display:inline-block; font-family:'DM Mono',monospace; font-size:11px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--vp-muted); background:rgba(191,144,32,0.08); border:1px solid rgba(191,144,32,0.2); padding:6px 12px; border-radius:999px; margin:0 0 16px; }
.vp-example-row { display:flex; justify-content:space-between; align-items:baseline; gap:16px; padding:12px 0; border-bottom:1px solid rgba(0,0,0,0.06); font-family:'DM Sans',sans-serif; font-size:15px; }
.vp-example-row:last-child { border-bottom:0; padding-bottom:0; }
.vp-example-row > span:first-child { color:var(--vp-muted); letter-spacing:0.02em; flex-shrink:0; }
.vp-example-row > span:last-child { color:var(--vp-charcoal); font-weight:500; text-align:right; }
.vp-trust-strip { display:flex; flex-wrap:wrap; justify-content:center; gap:24px; font-family:'DM Sans',sans-serif; font-size:14px; color:var(--vp-muted); }
.vp-trust-strip span::before { content:'\2713'; color:var(--vp-gold); margin-right:6px; font-weight:700; }
.vp-section--dark .vp-trust-strip { color:rgba(255,255,255,0.7); }
.vp-proof { display:grid; grid-template-columns:1fr; gap:32px; text-align:center; }
@media (min-width:640px) { .vp-proof { grid-template-columns:repeat(3,1fr); } }
.vp-proof-num { font-family:'Fraunces',Georgia,serif; font-size:36px; font-weight:800; color:var(--vp-gold); margin:0 0 8px; line-height:1; }
.vp-proof-label { font-family:'DM Sans',sans-serif; font-size:14px; color:rgba(255,255,255,0.7); letter-spacing:0.02em; }
.vp-step-num { display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; background:var(--vp-charcoal); color:var(--vp-gold); font-family:'DM Mono',monospace; font-size:13px; font-weight:500; letter-spacing:0.08em; border-radius:50%; margin:0 0 20px; }
.vp-faq details { border-top:1px solid rgba(0,0,0,0.1); padding:22px 0; }
.vp-faq details:last-child { border-bottom:1px solid rgba(0,0,0,0.1); }
.vp-faq summary { list-style:none; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:'Fraunces',Georgia,serif; font-size:19px; font-weight:600; color:var(--vp-charcoal); }
.vp-faq summary::-webkit-details-marker { display:none; }
.vp-faq summary::after { content:'+'; font-size:26px; color:var(--vp-gold); font-weight:300; line-height:1; flex-shrink:0; transition:transform .2s; }
.vp-faq details[open] summary::after { content:'\2013'; }
.vp-faq p { margin:14px 0 0; color:var(--vp-body-col); font-family:'DM Sans',sans-serif; font-size:16px; line-height:1.7; }
.vp-faq p a { color:var(--vp-gold); }
.vp-founder { display:flex; gap:32px; align-items:center; flex-wrap:wrap; max-width:860px; margin:0 auto; background:#FFFFFF; border:1px solid rgba(0,0,0,0.08); border-radius:12px; padding:32px; }
.vp-founder img { width:112px; height:112px; border-radius:50%; object-fit:cover; border:3px solid var(--vp-gold); flex-shrink:0; }
.vp-founder-body { flex:1; min-width:260px; }
.vp-founder-name { font-family:'Fraunces',Georgia,serif; font-size:20px; font-weight:700; color:var(--vp-charcoal); margin:0 0 4px; }
.vp-founder-creds { font-family:'DM Sans',sans-serif; font-size:14px; color:var(--vp-muted); margin:0 0 14px; line-height:1.6; }
.vp-founder-quote { font-family:'Fraunces',Georgia,serif; font-size:18px; font-style:italic; color:var(--vp-charcoal); line-height:1.5; margin:0; }
.vp-realtor { background:#FFFFFF; border:1px solid rgba(0,0,0,0.08); border-radius:12px; padding:32px; max-width:900px; margin:0 auto; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:24px; }
.vp-realtor-body { flex:1; min-width:260px; }
.vp-program-bullets { list-style:none; padding:0; margin:0 0 20px; }
.vp-program-bullets li { font-family:'DM Sans',sans-serif; font-size:15px; color:var(--vp-body-col); padding:6px 0 6px 22px; position:relative; line-height:1.55; }
.vp-program-bullets li::before { content:'\2713'; position:absolute; left:0; top:6px; color:var(--vp-gold); font-weight:700; }
.vp-program-link { font-family:'DM Sans',sans-serif; font-size:14px; font-weight:600; color:var(--vp-gold); text-decoration:none; letter-spacing:0.02em; }
.vp-program-link:hover { text-decoration:underline; }
.vp-hero-v54 { padding:24px 0 0; background:var(--vp-bg); }
@media (min-width:768px) { .vp-hero-v54 { padding:48px 0 16px; } }
.vp-hero-v54-inner { display:grid; grid-template-columns:1fr; gap:48px; align-items:center; max-width:1120px; margin:0 auto; padding:0 24px; }
@media (min-width:980px) { .vp-hero-v54-inner { grid-template-columns:1.1fr 1fr; gap:72px; } }
.vp-hero-v54-sub { font-family:'DM Sans',sans-serif; font-size:18px; line-height:1.6; color:var(--vp-muted); margin:20px 0 0; max-width:540px; }
.vp-hero-v54-cta { display:flex; flex-wrap:wrap; gap:16px; margin:32px 0 0; }
.vp-hero-v54-trust { display:flex; flex-wrap:wrap; gap:20px; margin:24px 0 0; font-family:'DM Sans',sans-serif; font-size:14px; color:var(--vp-muted); }
.vp-hero-v54-trust span::before { content:'\2713'; color:var(--vp-gold); margin-right:6px; font-weight:700; }

/* ═══════════════════════════════════════════════════════════════
   VIADOR BRAND OVERRIDE — May 2026
   Olive palette · Inter font · Dark nav
   Appended to end of file — wins by cascade order + !important
   DO NOT EDIT original rules above this line
═══════════════════════════════════════════════════════════════ */

/* 1 ─ TOKEN OVERRIDE — cascade order wins, no !important needed on vars */
:root {
  --gold:         #6B745E;
  --gold-light:   #7A8468;
  --gold-faint:   rgba(107,116,94,0.08);
  --gold-faint2:  rgba(107,116,94,0.12);
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'Inter', system-ui, -apple-system, sans-serif;
  /* vp-prefixed tokens (v5.4 section) */
  --vp-gold:      #6B745E;
}

/* 2 ─ HARDCODED GOLD — explicit hex values that var() override won't reach */
.proof-num                { color: #6B745E !important; }
.router-card:hover        { border-color: #6B745E !important; box-shadow: 0 4px 16px rgba(107,116,94,0.18) !important; }
.bpl-col-highlight        { background: rgba(107,116,94,0.16) !important; color: #7A8468 !important; }
.bpl-sub strong           { color: #7A8468 !important; }
.mobile-sticky-cta        { border-top-color: #6B745E !important; }
.hero-urgency             { color: #6B745E !important; background: rgba(107,116,94,0.10) !important; border-color: rgba(107,116,94,0.22) !important; }
.urgency-dot              { background: #6B745E !important; }
.tag-dot                  { background: #6B745E !important; }
/* vp-prefixed hardcoded overrides */
.vp-btn--gold             { background: #6B745E !important; }
.vp-btn--gold:hover       { background: #7A8468 !important; }
.vp-label-badge           { background: rgba(107,116,94,0.08) !important; border-color: rgba(107,116,94,0.20) !important; }
.final-cta::before        { background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(107,116,94,0.06) 0%, transparent 70%) !important; }

/* 3 ─ NAV DARK */
.nav {
  background:    rgba(20,23,25,0.96) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(244,245,243,0.06) !important;
}
.nav-inner { height: 72px !important; }
.logo-mark {
  background: #6B745E !important;
  color: #F4F5F3 !important;
}
.logo-sub  { color: rgba(244,245,243,0.55) !important; }
/* Top-level nav links only — exclude dropdown menu items */
.nav-links > a,
.nav-links > .nav-dropdown > .nav-dropdown-trigger,
.nav-phone        { color: rgba(244,245,243,0.70) !important; }
.nav-links > a:hover,
.nav-links > .nav-dropdown > .nav-dropdown-trigger:hover,
.nav-phone:hover  { color: #F4F5F3 !important; }
.nav-cta          { background: #6B745E !important; color: #F4F5F3 !important; border-color: #6B745E !important; }
.nav-cta:hover    { background: #7A8468 !important; }
.burger span      { background: rgba(244,245,243,0.85) !important; }
/* Dropdown panel — dark to match nav */
.nav-dropdown-menu {
  background: #1F2326 !important;
  border: 1px solid rgba(244,245,243,0.10) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45) !important;
}
.nav-dropdown-menu a {
  color: rgba(244,245,243,0.72) !important;
}
.nav-dropdown-menu a:hover {
  background: rgba(107,116,94,0.18) !important;
  color: #F4F5F3 !important;
}

/* 4 ─ LOGO FILTER — matches homepage olive treatment */
.logo-img,
.viador-logo {
  filter:         hue-rotate(35deg) saturate(0.78) brightness(1.08) contrast(1.05) !important;
  -webkit-filter: hue-rotate(35deg) saturate(0.78) brightness(1.08) contrast(1.05) !important;
  mix-blend-mode: screen !important;   /* dark bg in PNG disappears on dark nav */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* 5 ─ FONT SMOOTHING — ensure Inter renders crisp at all weights */
body {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* 6 ─ HEADING WEIGHT — Inter 900 is too heavy; 700 reads institutional */
/* Covers all display heading classes that had font-weight:900 in original */
.hero-title,
.form-title,
.final-cta-title,
.bpl-title,
.logo-mark,
.path-card h3,
.program h3,
.partner-copy h2,
.tool-card h3,
.hero-proof-headline,
.section-title,
.vp-h1, .vp-h2, .vp-h3,
.vp-proof-num,
.hero-stat-num { font-weight: 700 !important; }

/* italic sublines — keep italic but moderate weight */
.hero-title em,
.vp-h1 em { font-weight: 400 !important; font-style: italic !important; }


/* ══════════════════════════════════════════════════════════════════════════
   VP DARK SYSTEM — Viador Partners dark-dominant rebrand 2026-05-11
   These classes are NEW (vp-*) and do not conflict with existing NDV styles.
   ══════════════════════════════════════════════════════════════════════════ */

/* ── TOKEN LAYER ── */
:root {
  --vp-charcoal:      #1F2326;
  --vp-deep:          #141719;
  --vp-off-white:     #F4F5F3;
  --vp-cream-soft:    #EEF0EC;
  --vp-olive:         #6B745E;
  --vp-olive-hover:   #7A8468;
  --vp-muted-on-dark: #C7CCC5;
  --vp-muted-on-light:rgba(31,35,38,.62);
  --vp-border-dark:   rgba(244,245,243,.10);
  --vp-border-light:  rgba(31,35,38,.10);
  --vp-success:       #2A9D5C;
  --vp-danger:        #B83232;
}

/* ── NAV ── */
.vp-nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  background: var(--vp-deep);
  border-bottom: 1px solid var(--vp-border-dark);
  height: 64px;
  display: flex;
  align-items: center;
}
.vp-nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.vp-nav-logo { flex-shrink: 0; text-decoration: none; display: flex; align-items: center; }
.vp-lockup-img { height: 32px; width: auto; display: block; }
.vp-lockup-fallback { display: flex; align-items: center; gap: 10px; }
.vp-lockup-text { display: flex; flex-direction: column; line-height: 1; }
.vp-lockup-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .12em;
  color: var(--vp-off-white);
}
.vp-lockup-sub {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: .20em;
  color: var(--vp-muted-on-dark);
  text-transform: uppercase;
}
.vp-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.vp-nav-links a {
  color: var(--vp-muted-on-dark);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .18s, background .18s;
  white-space: nowrap;
}
.vp-nav-links a:hover { color: var(--vp-off-white); background: rgba(255,255,255,.06); }
.vp-nav-cta-wrap { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.vp-nav-cta {
  background: var(--vp-olive);
  color: var(--vp-off-white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .18s;
  white-space: nowrap;
}
.vp-nav-cta:hover { background: var(--vp-olive-hover); }

/* ── DROPDOWN ── */
.vp-dropdown { position: relative; }
.vp-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--vp-muted-on-dark);
  font-size: 14px;
  font-family: inherit;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .18s, background .18s;
}
.vp-dropdown-trigger::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .6;
}
.vp-dropdown-trigger:hover,
.vp-dropdown:hover .vp-dropdown-trigger {
  color: var(--vp-off-white);
  background: rgba(255,255,255,.06);
}
.vp-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #1c2024;
  border: 1px solid var(--vp-border-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  z-index: 1000;
  flex-direction: column;
}
.vp-dropdown:hover .vp-dropdown-menu { display: flex; }
.vp-dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: var(--vp-muted-on-dark) !important;
  font-size: 14px;
  text-decoration: none;
  background: none;
  border-radius: 0;
  transition: background .15s, color .15s;
}
.vp-dropdown-menu a:hover { background: rgba(255,255,255,.06); color: var(--vp-off-white) !important; }

/* Mobile hamburger */
.vp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.vp-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vp-off-white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.vp-mobile-drawer {
  display: none;
  position: fixed;
  inset: 64px 0 0;
  background: var(--vp-deep);
  z-index: 899;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.vp-mobile-drawer.open { display: flex; }
.vp-mobile-drawer a {
  color: var(--vp-muted-on-dark);
  text-decoration: none;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--vp-border-dark);
}
.vp-mobile-drawer a:hover { color: var(--vp-off-white); }
.vp-mobile-cta {
  background: var(--vp-olive);
  color: var(--vp-off-white) !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px 0;
  text-align: center;
  margin-top: 12px;
  border-bottom: none !important;
  text-decoration: none;
}

/* ── HERO CINEMATIC ── */
.vp-hero-cinematic {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--vp-deep);
  overflow: hidden;
  padding-top: 64px; /* nav height */
}
/* Full-bleed photo with soft fade edges */
.vp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/brand/viador-hero-wide.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: .82;
  mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
}
/* Dark gradient overlay — top/bottom fade so text is always legible */
.vp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,23,25,.60) 0%, transparent 25%, transparent 75%, rgba(20,23,25,.80) 100%),
    linear-gradient(to right, rgba(20,23,25,.88) 0%, rgba(20,23,25,.40) 40%, transparent 65%);
}
.vp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
.vp-hero-left { max-width: 560px; }
.vp-hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--vp-olive);
  margin-bottom: 20px;
}
.vp-hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--vp-off-white);
  margin-bottom: 24px;
}
.vp-hero-h1 em { font-style: italic; font-weight: 400; }
.vp-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--vp-muted-on-dark);
  margin-bottom: 36px;
  max-width: 480px;
}
.vp-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.vp-btn-primary {
  background: var(--vp-olive);
  color: var(--vp-off-white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
  display: inline-block;
}
.vp-btn-primary:hover { background: var(--vp-olive-hover); }
.vp-btn-ghost {
  background: transparent;
  color: var(--vp-off-white);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--vp-border-dark);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.vp-btn-ghost:hover { border-color: var(--vp-muted-on-dark); background: rgba(255,255,255,.04); }

/* Hero floating panel */
.vp-hero-panel {
  background: rgba(31,35,38,.82);
  border: 1px solid var(--vp-border-dark);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vp-panel-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vp-olive);
  margin-bottom: 6px;
}
.vp-panel-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--vp-off-white);
}
.vp-panel-meta {
  font-size: 13px;
  color: var(--vp-muted-on-dark);
  margin-top: 2px;
}
.vp-panel-divider { border: none; border-top: 1px solid var(--vp-border-dark); margin: 4px 0; }
.vp-panel-cta {
  background: var(--vp-olive);
  color: var(--vp-off-white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 0;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background .2s;
  display: block;
}
.vp-panel-cta:hover { background: var(--vp-olive-hover); }
.vp-panel-note {
  font-size: 11px;
  color: var(--vp-muted-on-dark);
  text-align: center;
  line-height: 1.5;
}

/* ── STATS BAR ── */
.vp-stats-bar {
  background: var(--vp-charcoal);
  border-top: 1px solid var(--vp-border-dark);
  border-bottom: 1px solid var(--vp-border-dark);
  padding: 32px 24px;
}
.vp-stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.vp-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--vp-off-white);
  line-height: 1;
  margin-bottom: 6px;
}
.vp-stat-label {
  font-size: 13px;
  color: var(--vp-muted-on-dark);
  letter-spacing: .04em;
}

/* ── SECTION UTILITIES ── */
.vp-section-light {
  background: var(--vp-off-white);
  padding: 96px 24px;
}
.vp-section-dark {
  background: var(--vp-charcoal);
  padding: 96px 24px;
}
.vp-section-deep {
  background: var(--vp-deep);
  padding: 96px 24px;
}
.vp-section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.vp-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.vp-eyebrow-olive { color: var(--vp-olive); }
.vp-eyebrow-dark  { color: var(--vp-olive); } /* same olive works on both */
.vp-section-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
}
.vp-section-h2--light { color: var(--vp-charcoal); }
.vp-section-h2--dark  { color: var(--vp-off-white); }
.vp-section-lead {
  font-size: 17px;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 56px;
}
.vp-section-lead--light { color: var(--vp-muted-on-light); }
.vp-section-lead--dark  { color: var(--vp-muted-on-dark); }

/* ── HOW WE WORK STEPS ── */
.vp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.vp-step {
  position: relative;
  padding-top: 16px;
}
.vp-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--vp-olive);
  margin-bottom: 14px;
}
.vp-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--vp-charcoal);
  margin-bottom: 10px;
}
.vp-step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--vp-muted-on-light);
}
.vp-step-connector {
  position: absolute;
  top: 22px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: var(--vp-border-light);
}

/* ── EXAMPLE SCENARIOS ── */
.vp-scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vp-scenario-card {
  background: rgba(244,245,243,.05);
  border: 1px solid var(--vp-border-dark);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vp-scenario-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vp-olive);
}
.vp-scenario-h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--vp-off-white);
  line-height: 1.25;
}
.vp-scenario-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--vp-muted-on-dark);
}
.vp-scenario-metrics {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--vp-border-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vp-scenario-metric {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.vp-scenario-metric-label { color: var(--vp-muted-on-dark); }
.vp-scenario-metric-val { color: var(--vp-off-white); font-weight: 600; font-family: 'DM Mono', monospace; }
.vp-scenario-disclaimer {
  font-size: 11px;
  color: rgba(199,204,197,.5);
  line-height: 1.5;
}

/* ── PROGRAMS GRID ── */
.vp-programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vp-program-tile {
  border: 1px solid var(--vp-border-light);
  border-radius: 12px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
  text-decoration: none;
  background: var(--vp-off-white);
}
.vp-program-tile:hover {
  border-color: var(--vp-olive);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.vp-program-icon { font-size: 28px; line-height: 1; }
.vp-program-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--vp-charcoal);
}
.vp-program-desc { font-size: 14px; color: var(--vp-muted-on-light); line-height: 1.6; }
.vp-program-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--vp-olive);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── WHO THIS IS FOR ── */
.vp-who-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vp-who-col {
  background: rgba(244,245,243,.05);
  border: 1px solid var(--vp-border-dark);
  border-radius: 12px;
  padding: 28px;
}
.vp-who-col h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--vp-off-white);
  margin-bottom: 16px;
}
.vp-who-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vp-who-col ul li {
  font-size: 14px;
  color: var(--vp-muted-on-dark);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.vp-who-col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--vp-olive);
  font-size: 13px;
}

/* ── FOUNDER SECTION ── */
.vp-founder-section {
  background: var(--vp-deep);
  border-top: 1px solid var(--vp-border-dark);
  padding: 96px 24px;
}
.vp-founder-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}
.vp-founder-photo-wrap { text-align: center; }
.vp-founder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--vp-border-dark);
  background: var(--vp-charcoal);
  display: block;
  margin: 0 auto 14px;
}
.vp-founder-photo-fallback {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--vp-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 36px;
  color: var(--vp-muted-on-dark);
  margin: 0 auto 14px;
  border: 2px solid var(--vp-border-dark);
}
.vp-founder-name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--vp-off-white);
}
.vp-founder-title {
  font-size: 12px;
  color: var(--vp-muted-on-dark);
  margin-top: 4px;
}
.vp-founder-copy {}
.vp-founder-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--vp-off-white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.vp-founder-h2 em { font-style: italic; font-weight: 400; }
.vp-founder-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--vp-muted-on-dark);
  margin-bottom: 16px;
}
.vp-founder-creds {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.vp-cred-badge {
  background: rgba(244,245,243,.07);
  border: 1px solid var(--vp-border-dark);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  color: var(--vp-muted-on-dark);
  letter-spacing: .04em;
}

/* ── FINAL CTA ── */
.vp-cta-final {
  background: var(--vp-olive);
  padding: 80px 24px;
  text-align: center;
}
.vp-cta-final h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--vp-off-white);
  margin-bottom: 16px;
}
.vp-cta-final p {
  font-size: 17px;
  color: rgba(244,245,243,.82);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.vp-btn-cta-white {
  background: var(--vp-off-white);
  color: var(--vp-charcoal);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: opacity .2s;
}
.vp-btn-cta-white:hover { opacity: .9; }

/* ── FOOTER ── */
.vp-footer {
  background: var(--vp-deep);
  border-top: 1px solid var(--vp-border-dark);
  padding: 60px 24px 32px;
}
.vp-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.vp-footer-top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--vp-border-dark);
}
.vp-footer-brand {}
.vp-footer-logo { height: 28px; width: auto; margin-bottom: 14px; }
.vp-footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--vp-muted-on-dark);
  margin-bottom: 16px;
}
.vp-footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--vp-olive);
  margin-bottom: 14px;
}
.vp-footer-col a {
  display: block;
  font-size: 14px;
  color: var(--vp-muted-on-dark);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color .15s;
}
.vp-footer-col a:hover { color: var(--vp-off-white); }
.vp-footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vp-footer-compliance {
  font-size: 12px;
  color: rgba(199,204,197,.55);
  line-height: 1.6;
}
.vp-footer-compliance a {
  color: rgba(199,204,197,.55);
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .vp-hero-content { grid-template-columns: 1fr; }
  .vp-hero-panel { display: none; }
  .vp-steps { grid-template-columns: repeat(2, 1fr); }
  .vp-programs-grid { grid-template-columns: repeat(2, 1fr); }
  .vp-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .vp-nav-links, .vp-nav-cta-wrap { display: none; }
  .vp-burger { display: flex; }
  .vp-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .vp-scenarios-grid { grid-template-columns: 1fr; }
  .vp-who-for-grid { grid-template-columns: 1fr; }
  .vp-founder-inner { grid-template-columns: 1fr; }
  .vp-founder-photo-wrap { display: flex; align-items: center; gap: 20px; justify-content: flex-start; }
  .vp-founder-photo, .vp-founder-photo-fallback { width: 100px; height: 100px; font-size: 22px; margin-bottom: 0; }
}
@media (max-width: 680px) {
  .vp-steps { grid-template-columns: 1fr; }
  .vp-step-connector { display: none; }
  .vp-programs-grid { grid-template-columns: 1fr; }
  .vp-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .vp-hero-h1 { font-size: clamp(30px, 8vw, 42px); }
  .vp-footer-top { grid-template-columns: 1fr; }
  .vp-footer-brand { order: -1; }
}

/* ══════════════════════════════════════════════════════════════════════════
   PHASE 7 — Inner page nav dark override 2026-05-11
   Makes .nav (inner pages) match vp-nav dark aesthetic without touching HTML
   ══════════════════════════════════════════════════════════════════════════ */

.nav {
  background: var(--vp-deep, #141719) !important;
  border-bottom-color: rgba(244,245,243,.09) !important;
}
/* Link colors on dark nav */
.nav-links a,
.nav-links .nav-dropdown-trigger {
  color: var(--vp-muted-on-dark, #C7CCC5) !important;
}
.nav-links a:hover,
.nav-links .nav-dropdown-trigger:hover {
  color: var(--vp-off-white, #F4F5F3) !important;
  background: rgba(255,255,255,.06) !important;
}
/* CTA button — olive on dark */
.nav-cta {
  background: var(--vp-olive, #6B745E) !important;
  color: var(--vp-off-white, #F4F5F3) !important;
  border-color: transparent !important;
}
.nav-cta:hover {
  background: var(--vp-olive-hover, #7A8468) !important;
}
/* Dropdown panel on dark nav */
.nav-dropdown-menu {
  background: #1c2024 !important;
  border-color: rgba(244,245,243,.09) !important;
}
.nav-dropdown-menu a {
  color: var(--vp-muted-on-dark, #C7CCC5) !important;
}
.nav-dropdown-menu a:hover {
  color: var(--vp-off-white, #F4F5F3) !important;
  background: rgba(255,255,255,.06) !important;
}
/* Hamburger bars on dark */
.burger span {
  background: var(--vp-off-white, #F4F5F3) !important;
}
/* Mobile drawer on dark */
.mobile-drawer {
  background: var(--vp-deep, #141719) !important;
}
.mobile-drawer a {
  color: var(--vp-muted-on-dark, #C7CCC5) !important;
  border-bottom-color: rgba(244,245,243,.08) !important;
}
.mobile-drawer a:hover { color: var(--vp-off-white, #F4F5F3) !important; }

/* ══════════════════════════════════════════════════════════════════════════
   CLASS-NAME FIX LAYER — targets actual HTML from build_homepage.py
   Previous CSS used wrong class names; this layer corrects all sections.
   2026-05-11
   ══════════════════════════════════════════════════════════════════════════ */

/* ── CONTAINERS ── */
.vp-container { max-width:1160px; margin:0 auto; padding:0 24px; }
.vp-narrow { max-width:720px; }

/* ── SECTION STRUCTURE ── */
.vp-section { padding:96px 0; }
.vp-section--white { background:var(--vp-off-white); }
.vp-section-dark { background:var(--vp-charcoal); padding:96px 0; }
.vp-section-head { margin-bottom:56px; }
.vp-h2 {
  font-family:'Fraunces',serif;
  font-size:clamp(28px,3.5vw,42px);
  font-weight:700;
  line-height:1.18;
  margin-bottom:14px;
}
.vp-h2-light { color:var(--vp-charcoal); }
.vp-h2-dark  { color:var(--vp-off-white); }
.vp-sub-light { font-size:17px; color:var(--vp-muted-on-light); line-height:1.65; max-width:600px; }
.vp-sub-dark  { font-size:17px; color:var(--vp-muted-on-dark);  line-height:1.65; max-width:600px; }

/* ── NAV BUTTONS ── */
.vp-nav-ctas { display:flex; align-items:center; gap:8px; margin-left:auto; }
.vp-nav-link {
  font-size:14px;
  color:var(--vp-muted-on-dark);
  text-decoration:none;
  padding:6px 12px;
  border-radius:6px;
  transition:color .18s, background .18s;
}
.vp-nav-link:hover { color:var(--vp-off-white); background:rgba(255,255,255,.06); }
.vp-btn-nav-primary {
  background:var(--vp-olive);
  color:var(--vp-off-white) !important;
  font-weight:600;
  font-size:14px;
  padding:9px 20px;
  border-radius:6px;
  text-decoration:none;
  white-space:nowrap;
  transition:background .2s;
  display:inline-block;
}
.vp-btn-nav-primary:hover { background:var(--vp-olive-hover); }
.vp-btn-nav-ghost {
  color:var(--vp-muted-on-dark) !important;
  font-size:14px;
  text-decoration:none;
  padding:9px 14px;
  white-space:nowrap;
  transition:color .18s;
}
.vp-btn-nav-ghost:hover { color:var(--vp-off-white) !important; }

/* ── HERO SUB-ELEMENTS ── */
.vp-hero-tags {
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:28px;
}
.vp-hero-tags span {
  font-family:'DM Mono',monospace;
  font-size:11px;
  letter-spacing:.12em;
  color:var(--vp-muted-on-dark);
  text-transform:uppercase;
}
.vp-hero-ctas { display:flex; gap:14px; flex-wrap:wrap; align-items:center; margin-bottom:24px; }
.vp-hero-trust { display:flex; gap:20px; flex-wrap:wrap; }
.vp-hero-trust span {
  font-size:13px;
  color:var(--vp-muted-on-dark);
  display:flex;
  align-items:center;
  gap:5px;
}

/* ── BUTTONS ── */
.vp-btn {
  font-size:15px;
  font-weight:600;
  padding:13px 28px;
  border-radius:8px;
  text-decoration:none;
  display:inline-block;
  cursor:pointer;
  border:none;
  transition:background .2s, opacity .2s;
  line-height:1;
}
.vp-btn--gold { background:var(--vp-olive); color:var(--vp-off-white) !important; }
.vp-btn--gold:hover { background:var(--vp-olive-hover); }
.vp-btn--ghost {
  background:transparent;
  color:var(--vp-off-white) !important;
  border:1px solid rgba(244,245,243,.35);
}
.vp-btn--ghost:hover { border-color:rgba(244,245,243,.7); background:rgba(255,255,255,.05); }

/* ── HERO PANEL ── */
.vp-panel-headline {
  font-family:'DM Mono',monospace;
  font-size:10px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:var(--vp-olive);
  margin-bottom:20px;
  display:block;
}
.vp-panel-list { display:flex; flex-direction:column; gap:16px; margin-bottom:20px; }
.vp-panel-item { display:flex; align-items:flex-start; gap:12px; }
.vp-panel-icon { flex-shrink:0; margin-top:2px; color:var(--vp-olive); }
.vp-panel-body {}
.vp-panel-title { font-size:14px; font-weight:600; color:var(--vp-off-white); margin-bottom:3px; }
.vp-panel-detail { font-size:13px; color:var(--vp-muted-on-dark); line-height:1.5; }
.vp-panel-footer {
  border-top:1px solid var(--vp-border-dark);
  padding-top:14px;
  font-family:'DM Mono',monospace;
  font-size:10px;
  letter-spacing:.16em;
  color:var(--vp-olive);
  text-transform:uppercase;
  text-align:center;
}

/* ── STATS BAR ── */
.vp-stats-bar { background:var(--vp-charcoal); border-top:1px solid var(--vp-border-dark); border-bottom:1px solid var(--vp-border-dark); padding:0; }
.vp-stats-grid {
  max-width:1160px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.vp-stat {
  display:flex;
  align-items:center;
  gap:16px;
  padding:32px 40px;
  border-right:1px solid var(--vp-border-dark);
  justify-content:flex-start;
}
.vp-stat:last-child { border-right:none; }
.vp-stat-icon { flex-shrink:0; }
.vp-stat-num {
  font-family:'Fraunces',serif;
  font-size:30px;
  font-weight:700;
  color:var(--vp-off-white);
  line-height:1;
  margin-bottom:4px;
}
.vp-stat-label { font-size:13px; color:var(--vp-muted-on-dark); }

/* ── HOW WE WORK STEPS ── */
.vp-steps {
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  gap:0;
  align-items:flex-start;
}
.vp-step { padding:8px 16px 8px 0; }
.vp-step-num-circle {
  width:44px;
  height:44px;
  border-radius:50%;
  border:1.5px solid rgba(31,35,38,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'DM Mono',monospace;
  font-size:12px;
  font-weight:600;
  color:var(--vp-olive);
  margin-bottom:18px;
}
.vp-step-icon { margin-bottom:14px; }
.vp-step-title {
  font-family:'Fraunces',serif;
  font-size:20px;
  font-weight:700;
  color:var(--vp-charcoal);
  margin-bottom:10px;
}
.vp-step-body { font-size:15px; line-height:1.65; color:var(--vp-muted-on-light); }
.vp-step-arrow {
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:54px;
  color:rgba(31,35,38,.25);
  width:32px;
}

/* ── SCENARIO CARDS ── */
.vp-scenarios-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.vp-scenario-card {
  background:rgba(244,245,243,.05);
  border:1px solid var(--vp-border-dark);
  border-radius:12px;
  padding:28px;
  display:flex;
  flex-direction:column;
}
.vp-scenario-badge {
  font-family:'DM Mono',monospace;
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--vp-olive);
  margin-bottom:10px;
  display:block;
}
.vp-scenario-title {
  font-family:'Fraunces',serif;
  font-size:22px;
  font-weight:700;
  color:var(--vp-off-white);
  margin-bottom:20px;
  line-height:1.2;
}
.vp-scenario-rows {
  display:flex;
  flex-direction:column;
  border-top:1px solid var(--vp-border-dark);
  flex:1;
}
.vp-scenario-row {
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:9px 0;
  border-bottom:1px solid var(--vp-border-dark);
  gap:12px;
}
.vp-scenario-key { font-size:13px; color:var(--vp-muted-on-dark); flex-shrink:0; }
.vp-scenario-val {
  font-size:13px;
  font-weight:600;
  color:var(--vp-off-white);
  font-family:'DM Mono',monospace;
  text-align:right;
}
.vp-scenario-link {
  display:inline-block;
  margin-top:18px;
  font-size:13px;
  font-weight:600;
  color:var(--vp-olive);
  text-decoration:none;
}
.vp-scenario-link:hover { color:var(--vp-olive-hover); }

/* ── PROGRAMS GRID ── */
.vp-programs-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.vp-program-tile {
  border:1px solid var(--vp-border-light);
  border-radius:12px;
  padding:28px 22px;
  display:flex;
  flex-direction:column;
  gap:10px;
  text-decoration:none;
  background:var(--vp-off-white);
  transition:border-color .2s, box-shadow .2s;
}
.vp-program-tile:hover { border-color:var(--vp-olive); box-shadow:0 4px 20px rgba(0,0,0,.08); }
.vp-program-icon-wrap { font-size:26px; line-height:1; }
.vp-program-name {
  font-family:'Fraunces',serif;
  font-size:17px;
  font-weight:700;
  color:var(--vp-charcoal);
}
.vp-program-desc { font-size:14px; color:var(--vp-muted-on-light); line-height:1.6; flex:1; }
.vp-program-link-dark {
  font-size:13px;
  font-weight:600;
  color:var(--vp-olive);
  margin-top:auto;
  text-decoration:none;
  display:inline-block;
}

/* ── WHO THIS IS FOR ── */
.vp-who-for-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.vp-who-col {
  background:rgba(244,245,243,.05);
  border:1px solid var(--vp-border-dark);
  border-radius:12px;
  padding:28px;
}
.vp-who-icon { font-size:28px; margin-bottom:14px; display:block; }
.vp-who-title {
  font-family:'Fraunces',serif;
  font-size:19px;
  font-weight:700;
  color:var(--vp-off-white);
  margin-bottom:10px;
}
.vp-who-body { font-size:14px; color:var(--vp-muted-on-dark); line-height:1.65; }

/* ── FOUNDER SECTION ── */
.vp-founder-section { background:var(--vp-deep); border-top:1px solid var(--vp-border-dark); padding:96px 0; }
.vp-founder-inner {
  max-width:1160px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:200px 1fr;
  gap:56px;
  align-items:start;
}
.vp-founder-left { display:flex; flex-direction:column; align-items:center; text-align:center; }
.vp-founder-photo {
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  margin-bottom:14px;
  border:2px solid var(--vp-border-dark);
}
.vp-founder-photo-placeholder {
  width:160px;
  height:160px;
  border-radius:50%;
  background:var(--vp-charcoal);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'DM Mono',monospace;
  font-size:30px;
  color:var(--vp-muted-on-dark);
  margin-bottom:14px;
  border:2px solid var(--vp-border-dark);
}
.vp-founder-name {
  font-family:'Fraunces',serif;
  font-size:16px;
  font-weight:700;
  color:var(--vp-off-white);
}
.vp-founder-right {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}
.vp-founder-tagline {
  font-family:'Fraunces',serif;
  font-size:clamp(20px,2.5vw,28px);
  font-weight:700;
  color:var(--vp-off-white);
  line-height:1.25;
  margin-bottom:16px;
}
.vp-founder-creds {
  font-size:13px;
  color:var(--vp-muted-on-dark);
  line-height:1.9;
  margin-bottom:16px;
}
.vp-founder-linkedin {
  font-size:14px;
  font-weight:600;
  color:var(--vp-olive);
  text-decoration:none;
}
.vp-founder-linkedin:hover { color:var(--vp-olive-hover); }
.vp-founder-divider { display:none; }
.vp-founder-quote {
  border-left:3px solid var(--vp-olive);
  padding-left:24px;
  align-self:center;
}
.vp-founder-quote blockquote {
  font-family:'Fraunces',serif;
  font-size:clamp(17px,1.8vw,22px);
  font-style:italic;
  font-weight:400;
  color:var(--vp-off-white);
  line-height:1.55;
  margin:0;
}

/* ── CTA FINAL ── */
.vp-cta-final { background:var(--vp-olive); padding:80px 24px; }
.vp-cta-final-inner {
  max-width:1160px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
.vp-cta-final-icon { font-size:32px; margin-bottom:10px; }
.vp-cta-final-hed {
  font-family:'Fraunces',serif;
  font-size:clamp(24px,3vw,38px);
  font-weight:700;
  color:var(--vp-off-white);
  margin-bottom:8px;
}
.vp-cta-final-sub { font-size:16px; color:rgba(244,245,243,.82); }
.vp-cta-final-buttons { display:flex; gap:14px; align-items:center; flex-shrink:0; flex-wrap:wrap; }

/* ── FOOTER ── */
.vp-footer { background:var(--vp-deep); border-top:1px solid var(--vp-border-dark); padding:60px 24px 32px; }
.vp-footer-inner { max-width:1160px; margin:0 auto; }
.vp-footer-top {
  display:grid;
  grid-template-columns:260px 1fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid var(--vp-border-dark);
}
.vp-footer-logo { height:28px; width:auto; margin-bottom:14px; display:block; }
.vp-footer-tagline { font-size:13px; line-height:1.6; color:var(--vp-muted-on-dark); }
.vp-footer-col-head {
  font-family:'DM Mono',monospace;
  font-size:10px;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:var(--vp-olive);
  margin-bottom:14px;
  display:block;
}
.vp-footer-col a {
  display:block;
  font-size:14px;
  color:var(--vp-muted-on-dark);
  text-decoration:none;
  margin-bottom:9px;
  transition:color .15s;
}
.vp-footer-col a:hover { color:var(--vp-off-white); }
.vp-footer-bottom { padding-top:24px; }
.vp-footer-compliance { font-size:12px; color:rgba(199,204,197,.55); line-height:1.7; }
.vp-footer-compliance a { color:rgba(199,204,197,.55); text-decoration:underline; }

/* ── MOBILE DRAWER ── */
.vp-drawer-group { margin-bottom:20px; }
.vp-drawer-label {
  font-family:'DM Mono',monospace;
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--vp-olive);
  margin-bottom:8px;
  display:block;
}
.vp-drawer-cta {
  background:var(--vp-olive);
  color:var(--vp-off-white) !important;
  text-align:center;
  padding:14px;
  border-radius:6px;
  font-weight:600;
  display:block;
  margin-top:12px;
  text-decoration:none;
}

/* ── RESPONSIVE FIXES ── */
@media (max-width:1024px) {
  .vp-founder-right { grid-template-columns:1fr; gap:28px; }
  .vp-programs-grid { grid-template-columns:repeat(2,1fr); }
  .vp-footer-top { grid-template-columns:1fr 1fr; gap:32px; }
  .vp-cta-final-inner { flex-direction:column; text-align:center; }
  .vp-cta-final-buttons { justify-content:center; }
}
@media (max-width:900px) {
  .vp-stats-grid { grid-template-columns:repeat(3,1fr); }
  .vp-steps { grid-template-columns:1fr; }
  .vp-step-arrow { display:none; }
  .vp-scenarios-grid { grid-template-columns:1fr; }
  .vp-who-for-grid { grid-template-columns:1fr; }
  .vp-founder-inner { grid-template-columns:1fr; }
  .vp-founder-left { flex-direction:row; text-align:left; gap:20px; }
  .vp-founder-photo,.vp-founder-photo-placeholder { width:90px; height:90px; margin:0; font-size:22px; }
}
@media (max-width:680px) {
  .vp-programs-grid { grid-template-columns:1fr; }
  .vp-stats-grid { grid-template-columns:repeat(2,1fr); }
  .vp-footer-top { grid-template-columns:1fr; }
}

/* ============================================================
   LIGHT-SECTION COLOR OVERRIDE
   body sets color:--vp-off-white for dark-dominant baseline;
   light sections must override back to dark text explicitly
   ============================================================ */
.vp-section-light,
.vp-section-light * {
  color: var(--vp-charcoal);
}
/* re-allow explicit overrides inside light sections */
.vp-section-light .vp-program-desc,
.vp-section-light .vp-step-body,
.vp-section-light .vp-sub-light {
  color: var(--vp-muted-on-light);
}
.vp-section-light .vp-program-link-dark,
.vp-section-light .vp-step-link {
  color: var(--vp-olive);
}
.vp-section-light .vp-program-link-dark:hover {
  color: var(--vp-olive-hover);
}
/* program tiles: white bg so they pop off off-white section */
.vp-program-tile {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(31,35,38,.06);
}
.vp-program-icon-wrap svg {
  stroke: var(--vp-olive);
}
/* eyebrow on light sections */
.vp-section-light .vp-eyebrow-dark {
  color: var(--vp-olive);
}

/* ================================================================
   INSTITUTIONAL REFINEMENT PASS — viadorpartners.com 2026-05-11
   Target: Ramp / Carta / Bloomberg terminal / Anduril aesthetic
   CSS-only. No structural changes.
   ================================================================ */

/* ── §1+2: HERO — cinematic image + gradient ── */
.vp-hero-cinematic {
  min-height: 800px;
  background:
    linear-gradient(
      to right,
      rgba(8,11,16,.96) 0%,
      rgba(8,11,16,.78) 28%,
      rgba(8,11,16,.18) 52%,
      rgba(8,11,16,.35) 78%,
      rgba(8,11,16,.92) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(8,11,16,.18) 0%,
      rgba(8,11,16,.05) 40%,
      rgba(8,11,16,.82) 100%
    ),
    url('/assets/brand/viador-hero-wide.png') center 40% / cover no-repeat;
}
/* hide the old separate bg + overlay divs */
.vp-hero-bg,
.vp-hero-overlay { display: none !important; }

/* ── Hero layout: narrow panel, more breathing room ── */
.vp-hero-content {
  grid-template-columns: 1fr 350px;
  gap: 64px;
  padding: 100px 24px;
}

/* ── §3: HEADLINE — editorial, not aggressive ── */
.vp-hero-h1 {
  font-size: clamp(64px, 5vw, 84px);
  font-weight: 600;
  line-height: .96;
  letter-spacing: -0.04em;
  max-width: 720px;
  margin-bottom: 28px;
}
.vp-hero-h1 em {
  font-style: italic;
  font-weight: 400;
  opacity: .9;
}

/* ── §4: BODY COPY ── */
.vp-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}

/* ── §5: CTA BUTTONS ── */
.vp-btn-primary {
  background: #8B9474;
  color: #0B0F14 !important;
  padding: 15px 32px;
  font-size: 15px;
  letter-spacing: .01em;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 10px 30px rgba(139,148,116,.18);
}
.vp-btn-primary:hover { background: #97a07e; box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 14px 36px rgba(139,148,116,.24); }

.vp-btn-secondary {
  background: transparent;
  color: var(--vp-off-white);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  padding: 15px 20px;
  opacity: .78;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
}
.vp-btn-secondary:hover { opacity: 1; }

/* ── §6: METRIC BAR — Bloomberg density ── */
.vp-stats-bar { padding: 0; }
.vp-stat { padding: 22px 36px; gap: 12px; }
.vp-stat-icon svg { width: 18px !important; height: 18px !important; }
.vp-stat-num { font-size: 26px; line-height: 1.05; }
.vp-stat-label { font-size: 11px; margin-top: 1px; letter-spacing: .04em; text-transform: uppercase; }

/* ── §7: THREE STEPS — linear, structured ── */
.vp-section-light {
  background: #F4F2EC;
  padding: 76px 24px;
  color: var(--vp-charcoal);
}
.vp-step-num-circle {
  background: var(--vp-olive);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 11px;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.vp-step-arrow {
  color: var(--vp-olive);
  opacity: 1;
  padding-top: 42px;
}
.vp-step-arrow svg { stroke-width: 2; width: 22px !important; height: 22px !important; }
.vp-step-body { max-width: 230px; font-size: 14px; line-height: 1.6; }
.vp-step-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }

/* ── §8: SCENARIO CARDS — deal-desk aesthetic ── */
.vp-scenario-card {
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 100%);
  border-radius: 22px;
  padding: 34px;
}
.vp-scenario-badge {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: 16px;
}
.vp-scenario-title { font-size: 20px; font-weight: 600; margin-bottom: 22px; }
.vp-scenario-key { font-size: 12px; letter-spacing: .04em; }
.vp-scenario-val { font-size: 13px; font-weight: 600; }
.vp-scenario-row { padding: 10px 0; }

/* ── §9: LIGHT SECTIONS — warm ivory (already set on .vp-section-light above) ── */
/* program tiles stay white so they pop against ivory section */
.vp-program-tile { background: #ffffff; }

/* ── §10: WHO THIS IS FOR — tighter, higher contrast ── */
.vp-who-col { padding: 24px 22px; }
.vp-who-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.vp-who-body { font-size: 14px; line-height: 1.65; color: rgba(196,201,194,.82); }

/* ── §11: FOUNDER — large editorial quote ── */
.vp-founder-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.08;
  font-style: italic;
  color: var(--vp-off-white);
  border-left: 3px solid var(--vp-olive);
  padding-left: 28px;
  margin: 0;
  font-weight: 400;
}

/* ── §12: FINAL CTA — "send the deal" energy ── */
.vp-cta-final { padding: 120px 24px; }
.vp-cta-final-hed {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--vp-off-white);
}
.vp-cta-final-sub {
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 480px;
  color: var(--vp-muted-on-dark);
}
.vp-cta-final-buttons { gap: 16px; }

/* ── §13: FOOTER — tighter, slightly recessed ── */
.vp-footer { padding-top: 52px; padding-bottom: 28px; background: var(--vp-deep); }
.vp-footer-top { padding-bottom: 36px; margin-bottom: 36px; }
.vp-footer-compliance { font-size: 11px; opacity: .55; }

/* ── §15: MOBILE — typography-first ── */
@media (max-width: 900px) {
  .vp-hero-cinematic {
    min-height: 580px;
    background:
      linear-gradient(
        to bottom,
        rgba(8,11,16,.72) 0%,
        rgba(8,11,16,.22) 50%,
        rgba(8,11,16,.90) 100%
      ),
      url('/assets/brand/viador-hero-wide.png') 70% 40% / cover no-repeat;
  }
  .vp-hero-content {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }
  .vp-hero-h1 { font-size: clamp(40px, 10vw, 58px); }
  .vp-hero-panel { display: none; }
  .vp-cta-final { padding: 80px 20px; }
  .vp-section-light { padding: 60px 20px; }
  .vp-stat { padding: 18px 20px; }
}


/* ====================================================================
   Section 16 - Surgical Polish Pass (2026-05-12)
   Edits 2,3,6,7,8,9. No structural changes. ASCII only in comments.
   ==================================================================== */

/* --- Edit 2: Headline size reduction --- */
.vp-hero-h1 {
  font-size: clamp(58px, 4.6vw, 76px) !important;
}

/* --- Edit 3: CTA consistency - both nav and hero use olive-bright + off-white text --- */
.vp-btn-primary {
  color: var(--vp-off-white) !important;
}
.vp-nav-cta {
  background: #8B9474 !important;
  border-color: #8B9474 !important;
}
.vp-btn-nav-primary {
  background: #8B9474 !important;
}
.vp-btn-nav-primary:hover {
  background: #97a07e !important;
}
.vp-nav-cta:hover {
  background: #97a07e !important;
}

/* --- Edit 6: Hero layout - wider breathing room, narrower panel --- */
.vp-hero-content {
  grid-template-columns: 1fr 340px !important;
  gap: 80px !important;
}

/* --- Edit 7: Info card - lighter bg, softer border --- */
.vp-hero-panel {
  background: rgba(20, 23, 25, 0.62) !important;
  border: 1px solid rgba(244, 245, 243, 0.06) !important;
}

/* --- Edit 8: Hero image - right dark zone starts at 78% (was 85%) --- */
.vp-hero-cinematic {
  background:
    linear-gradient(
      to right,
      rgba(8,11,16,.96) 0%,
      rgba(8,11,16,.78) 28%,
      rgba(8,11,16,.18) 52%,
      rgba(8,11,16,.18) 65%,
      rgba(8,11,16,.92) 78%,
      rgba(8,11,16,.96) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(8,11,16,.18) 0%,
      rgba(8,11,16,.05) 40%,
      rgba(8,11,16,.82) 100%
    ),
    url('/assets/brand/viador-hero-wide.png') center 40% / cover no-repeat !important;
}

/* --- Edit 9: Nav - tighter inner gap, softer link transitions --- */
.vp-nav-inner {
  gap: 32px !important;
}
.vp-nav-links a,
.vp-dropdown-trigger,
.vp-nav-link {
  transition: color .22s ease-out, background .22s ease-out !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.vp-dropdown-menu {
  transition: opacity .18s ease-out !important;
}

/* --- Logo size + CTA section height (2026-05-12 quick fix) --- */
.vp-lockup-img { height: 48px !important; }
.vp-lockup-fallback img { height: 48px !important; }
.vp-cta-final { padding: 64px 24px !important; }

/* --- Founder section layout fix (2026-05-12) --- */
/* Left column wider for bio, right internal grid collapses so quote spans full width */
.vp-founder-inner {
  grid-template-columns: 300px 1fr !important;
  gap: 72px !important;
  align-items: center !important;
}
.vp-founder-right {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}
.vp-founder-quote {
  font-size: clamp(30px, 3.2vw, 50px) !important;
  line-height: 1.12 !important;
  margin-bottom: 28px !important;
}
.vp-founder-cite {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0;
}
.vp-founder-cite::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--vp-olive);
  flex-shrink: 0;
}
.vp-founder-cite-text {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vp-muted-on-dark);
}

/* --- Global logo size (all pages) --- */
.logo-img { height: 76px !important; width: auto !important; }
.vp-lockup-img { height: 76px !important; width: auto !important; }
.vp-lockup-fallback img { height: 76px !important; }


/* ================================================================
   Section 17 - Optimal viewing pass (2026-05-12)
   H1 scale, true 100vh hero, tighter content padding, proportion
   ================================================================ */

/* H1: editorial scale -- wraps to 3 clean lines at 1440px */
.vp-hero-h1 {
  font-size: clamp(40px, 3.5vw, 54px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.04em !important;
  max-width: 640px !important;
}

/* Hero: full-viewport so the flex centering actually lands mid-screen */
.vp-hero-cinematic {
  min-height: 100vh !important;
}

/* Strip content internal padding -- let flex centering on the section do the work */
.vp-hero-content {
  padding: 0 24px !important;
}

/* Sub copy: slightly larger, more breathing */
.vp-hero-sub {
  font-size: 19px !important;
  line-height: 1.72 !important;
  max-width: 520px !important;
}

/* Tags: more visible */
.vp-hero-tags {
  font-size: 14px !important;
  letter-spacing: 0.10em !important;
  opacity: 1 !important;
  margin-bottom: 32px !important;
}

/* Eyebrow: slightly larger tracking */
.vp-hero-eyebrow {
  font-size: 12px !important;
  letter-spacing: 0.24em !important;
  margin-bottom: 22px !important;
}


/* ================================================================
   Section 18 - Precision Alignment Pass (2026-05-12)
   Palantir x Carta x capital markets aesthetic.
   Header, hero grid, card, typography rhythm. No redesign.
   ASCII comments only.
   ================================================================ */

/* ── HEADER: logo scale down ~25% ── */
.vp-lockup-img  { height: 40px !important; width: auto !important; }
.logo-img       { height: 40px !important; width: auto !important; }
.vp-lockup-fallback img { height: 40px !important; }

/* ── HEADER: tighter nav height, unified max-width ── */
.vp-nav {
  height: 56px !important;
}
.vp-nav-inner {
  max-width: 1160px !important;
  padding: 0 24px !important;
  gap: 28px !important;
  height: 56px !important;
  align-items: center !important;
}
/* Inner pages: same discipline */
.nav-inner {
  height: 56px !important;
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  align-items: center !important;
}

/* ── HEADER: CTA button — elegant, not heavy ── */
.vp-nav-cta {
  padding: 7px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 5px !important;
  letter-spacing: 0.01em !important;
}
/* Inner pages nav CTA */
.nav-cta {
  padding: 7px 18px !important;
  font-size: 13px !important;
  border-radius: 5px !important;
}

/* ── HERO GRID: tighter gap, pull card inward ── */
.vp-hero-content {
  grid-template-columns: 1fr 300px !important;
  gap: 56px !important;
  align-items: center !important;
  max-width: 1160px !important;
  margin: 0 auto !important;
}

/* ── HERO: max-width on headline for elegant line break ── */
.vp-hero-left  { max-width: 520px !important; }
.vp-hero-h1    { max-width: 500px !important; }

/* ── HERO TYPOGRAPHY: mathematically intentional rhythm ── */
.vp-hero-eyebrow {
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
  margin-bottom: 14px !important;
}
.vp-hero-h1 {
  font-size: clamp(38px, 3.2vw, 50px) !important;
  line-height: 1.0 !important;
  letter-spacing: -0.04em !important;
  margin-bottom: 20px !important;
}
.vp-hero-sub {
  font-size: 17px !important;
  line-height: 1.68 !important;
  max-width: 460px !important;
  margin-bottom: 28px !important;
}

/* ── HERO CTA ROW: baseline alignment ── */
.vp-hero-actions,
.vp-hero-ctas {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  margin-bottom: 20px !important;
}
.vp-btn-primary {
  padding: 11px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: 5px !important;
}
.vp-btn-ghost {
  font-size: 14px !important;
  padding: 11px 0 !important;
  border: none !important;
  background: transparent !important;
  color: var(--vp-muted-on-dark) !important;
}
.vp-btn-ghost:hover {
  color: var(--vp-off-white) !important;
  background: transparent !important;
}

/* ── TRUST ROW: align under CTA, consistent spacing ── */
.vp-hero-trust {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}
.vp-hero-trust span {
  font-size: 12px !important;
  color: rgba(244,245,243,0.48) !important;
  letter-spacing: 0.01em !important;
  gap: 5px !important;
}

/* ── FLOATING CARD: dark charcoal glass, warm undertone only ── */
.vp-hero-panel {
  background: rgba(12,15,18,0.88) !important;
  border: 1px solid rgba(244,245,243,0.07) !important;
  border-radius: 10px !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.52),
    0 0 0 1px rgba(139,148,116,0.06) inset !important;
  padding: 24px 22px !important;
  gap: 16px !important;
}

/* Card label: quieter olive ── */
.vp-panel-label {
  font-size: 9px !important;
  letter-spacing: 0.2em !important;
  color: rgba(139,148,116,0.65) !important;
}

/* Card heading ── */
.vp-panel-title,
h3.vp-panel-heading,
.vp-hero-panel > *:first-child {
  font-size: 13px !important;
}

/* Card body value text ── */
.vp-panel-value  { font-size: 18px !important; }
.vp-panel-meta   { font-size: 12px !important; }
.vp-panel-note   { font-size: 10px !important; }
.vp-panel-cta    { font-size: 13px !important; padding: 10px 0 !important; border-radius: 5px !important; }

/* ── Hero cinematic: compensate for shorter nav ── */
.vp-hero-cinematic {
  padding-top: 56px !important;
}
