/* ============================================================
   VIADOR PARTNERS — Design System
   Sophisticated light · Sharp · Approachable · Distinctive
   Fonts: Fraunces (display) + DM Sans (body) + DM Mono (labels)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@300;400&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:       #B8811E;        /* slightly deeper gold — more contrast on white */
  --gold-light: #D9A84A;
  --gold-faint: rgba(184,129,30,0.08);
  --gold-faint2:rgba(184,129,30,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: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 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; }

/* ── 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);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background .2s var(--ease-out), color .2s var(--ease-out), transform .15s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  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;
}

.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-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;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: clamp(80px, 12vw, 140px) 0 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);
}


  display: flex;
  flex-direction: column;
  gap: 24px;
}

.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); }

.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; }

/* ── Brand concept — dor underline ─────────────────────────────── */
.dor {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
