/* Fresnaye Ledger marketing site — editorial finance magazine aesthetic.
   Cream + navy + gold. Inter + Fraunces. Subtle motion. */

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

:root {
  --bg: #f6f3ec;
  --bg-2: #efeadd;
  --bg-3: #e8e1d0;
  --card: #ffffff;
  --hairline: #d8d2c2;
  --hairline-soft: #e5dfd0;
  --text: #1c2620;
  --text-2: #3a3d39;
  --muted: #8a8580;
  --navy: #0d1b2a;
  --navy-2: #14283d;
  --gold: #b38c4d;
  --gold-soft: #d4b889;
  --green: #4a7a55;
  --red: #a94a4a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }

/* ---------------- Nav ---------------- */
nav.topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 243, 236, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-soft);
  padding: 18px 0;
}
nav.topnav .row { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand .logo {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.5px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 6px 18px -8px rgba(13, 27, 42, 0.5);
}
.brand .name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 21px; font-weight: 500; letter-spacing: -0.3px; }
.brand .name span { color: var(--muted); font-weight: 400; }
nav.topnav .links { display: flex; gap: 26px; align-items: center; }
nav.topnav .links a { color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500; }
nav.topnav .links a:hover { color: var(--navy); }
nav.topnav .links a.btn { color: var(--bg); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.15s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 24px -12px rgba(13, 27, 42, 0.6);
}
.btn-primary:hover { background: var(--navy-2); box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 14px 32px -10px rgba(13, 27, 42, 0.55); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: rgba(13, 27, 42, 0.05); }
.btn-large { padding: 15px 30px; font-size: 15.5px; }
.btn-ghost { background: transparent; color: var(--text-2); padding: 8px 14px; }
.btn-ghost:hover { color: var(--navy); background: rgba(13, 27, 42, 0.04); }
.btn .arrow { transition: transform 0.2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -200px -100px 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(179, 140, 77, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 35% at 80% 60%, rgba(13, 27, 42, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero .copy { max-width: 580px; }
.kicker {
  font-size: 12px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 0 28px;
  color: var(--text);
}
.hero h1 em {
  font-style: italic;
  color: var(--navy);
  font-weight: 500;
}
.hero .sub {
  font-size: 19.5px;
  color: var(--text-2);
  margin: 0 0 40px;
  line-height: 1.55;
  max-width: 520px;
}
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero .reassure {
  font-size: 13px;
  color: var(--muted);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero .reassure .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(74, 122, 85, 0.18);
}

/* Hero product mockup — a styled paycheck card */
.mockup {
  position: relative;
  perspective: 1200px;
}
.mockup .card-stack {
  position: relative;
  transform: rotate(-2deg);
}
.mockup .pcheck {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 50px -28px rgba(13, 27, 42, 0.4), 0 6px 20px -12px rgba(13, 27, 42, 0.2);
  position: relative;
}
.mockup .pcheck + .pcheck { margin-top: 18px; transform: rotate(1.5deg); }
.mockup .pcheck + .pcheck + .pcheck { transform: rotate(-0.8deg); }
.pc-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.pc-label { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; font-weight: 600; }
.pc-date { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; color: var(--text); margin-top: 4px; }
.pc-delete { font-size: 11px; color: var(--muted); }
.pc-income {
  display: flex; justify-content: space-between; align-items: baseline;
  background: var(--bg-2); padding: 12px 14px; border-radius: 8px; margin-bottom: 12px;
}
.pc-income-label { font-size: 10px; letter-spacing: 1.5px; color: var(--text); font-weight: 600; }
.pc-income-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; color: var(--navy); font-variant-numeric: tabular-nums; }
.pc-row { display: flex; justify-content: space-between; padding: 7px 6px; border-top: 1px solid var(--hairline-soft); font-size: 13px; }
.pc-row:first-of-type { border-top: none; padding-top: 10px; }
.pc-row .cat { color: var(--text); }
.pc-row .amt { color: var(--text); font-variant-numeric: tabular-nums; }
.pc-footer {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--hairline); margin-top: 10px; padding-top: 12px;
}
.pc-left-label { font-weight: 500; color: var(--text); font-size: 13px; }
.pc-left-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 19px; color: var(--green); font-variant-numeric: tabular-nums; }
.mockup .floating-badge {
  position: absolute;
  top: -16px; right: -20px;
  background: var(--gold);
  color: #fff;
  padding: 8px 14px;
  border-radius: 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(179, 140, 77, 0.6);
  z-index: 2;
  transform: rotate(8deg);
}

/* ---------------- Stat strip ---------------- */
.stat-strip {
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.5);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
}
.stat .label {
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}

/* ---------------- Sections ---------------- */
section { padding: 110px 0; position: relative; }
section.alt { background: var(--bg-2); }
section.dark { background: var(--navy); color: var(--bg); }
section.dark h2.section-title { color: var(--bg); }
section.dark .section-sub { color: rgba(246, 243, 236, 0.75); }

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
h2.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--text);
}
h2.section-title em { font-style: italic; color: var(--navy); }
.section-sub {
  color: var(--text-2);
  font-size: 18px;
  max-width: 600px;
  margin: 0 0 60px;
  line-height: 1.55;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-head .section-sub { margin: 0 auto; }

/* ---------------- Feature blocks (alternating split) ---------------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 60px 0;
}
.feature-block + .feature-block { border-top: 1px solid var(--hairline-soft); }
.feature-block.reverse .copy { order: 2; }
.feature-block.reverse .visual { order: 1; }
.feature-block h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--text);
}
.feature-block p {
  font-size: 17px;
  color: var(--text-2);
  margin: 0 0 24px;
  line-height: 1.6;
}
.feature-block ul {
  list-style: none; padding: 0; margin: 0;
}
.feature-block ul li {
  padding: 10px 0;
  padding-left: 26px;
  position: relative;
  font-size: 15px;
  color: var(--text-2);
  border-top: 1px solid var(--hairline-soft);
}
.feature-block ul li:first-child { border-top: none; }
.feature-block ul li::before {
  content: '';
  position: absolute; left: 0; top: 18px;
  width: 14px; height: 1px;
  background: var(--gold);
}

/* Visual mocks for each feature */
.visual-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 30px 60px -30px rgba(13, 27, 42, 0.3);
}
.visual-card .vc-head {
  font-size: 11px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; font-weight: 600;
  margin-bottom: 8px;
}
.visual-card .vc-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

/* Card payoff visualization */
.payoff-bars { display: flex; flex-direction: column; gap: 14px; }
.payoff-bar { display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; gap: 12px; }
.payoff-bar .name { font-size: 13px; color: var(--text); font-weight: 500; }
.payoff-bar .track { height: 8px; background: var(--bg-2); border-radius: 4px; overflow: hidden; }
.payoff-bar .fill { height: 100%; background: var(--navy); border-radius: 4px; }
.payoff-bar .fill.gold { background: var(--gold); }
.payoff-bar .fill.green { background: var(--green); }
.payoff-bar .amt { font-size: 12px; color: var(--text-2); text-align: right; font-variant-numeric: tabular-nums; }

/* Chapter 13 progress visualization */
.ch13-kpi { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.ch13-kpi .box { background: var(--bg-2); padding: 16px; border-radius: 10px; }
.ch13-kpi .box .lbl { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; font-weight: 600; }
.ch13-kpi .box .val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; color: var(--navy); margin-top: 6px; font-variant-numeric: tabular-nums; }
.ch13-kpi .box .delta { font-size: 11px; color: var(--green); margin-top: 4px; }
.progress-track { height: 10px; background: var(--bg-2); border-radius: 5px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--gold)); border-radius: 5px; }
.progress-meta { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: var(--text-2); }

/* AI categorization mock */
.ai-trans { display: flex; flex-direction: column; gap: 6px; }
.ai-trans .row {
  display: grid; grid-template-columns: 50px 1fr 88px 70px; gap: 10px;
  align-items: center; padding: 9px 10px; border-radius: 6px;
}
.ai-trans .row:nth-child(odd) { background: var(--bg-2); }
.ai-trans .row .date { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }
.ai-trans .row .merchant { font-size: 13px; color: var(--text); }
.ai-trans .row .cat { font-size: 11px; padding: 3px 8px; border-radius: 4px; text-align: center; font-weight: 500; }
.cat-groceries { background: rgba(74, 122, 85, 0.15); color: var(--green); }
.cat-dining { background: rgba(179, 140, 77, 0.2); color: var(--gold); }
.cat-transport { background: rgba(13, 27, 42, 0.1); color: var(--navy); }
.cat-utilities { background: rgba(169, 74, 74, 0.12); color: var(--red); }
.ai-trans .row .amt { font-size: 13px; color: var(--text); text-align: right; font-variant-numeric: tabular-nums; font-weight: 500; }
.ai-trans-foot {
  margin-top: 14px; padding: 12px 14px;
  background: var(--bg-2);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-2);
  display: flex; align-items: center; gap: 10px;
}
.ai-trans-foot::before { content: '✦'; color: var(--gold); font-size: 16px; }

/* ---------------- Pull quote ---------------- */
.pull-quote {
  background: var(--bg);
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: 70px;
  left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 180px;
  color: var(--gold-soft);
  opacity: 0.4;
  line-height: 1;
  font-style: italic;
}
.pull-quote blockquote {
  position: relative;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin: 0 auto;
  max-width: 820px;
  padding: 0 32px;
}
.pull-quote .attribution {
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

/* ---------------- Privacy band ---------------- */
.privacy-band {
  background: var(--navy);
  color: var(--bg);
  padding: 90px 0;
}
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.privacy-band h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 0 0 22px;
  color: var(--bg);
}
.privacy-band h2 em { font-style: italic; color: var(--gold-soft); }
.privacy-band p { font-size: 17px; color: rgba(246, 243, 236, 0.78); line-height: 1.6; margin: 0 0 28px; }
.privacy-list { list-style: none; padding: 0; margin: 0; }
.privacy-list li {
  padding: 16px 0;
  border-top: 1px solid rgba(246, 243, 236, 0.15);
  display: grid; grid-template-columns: 28px 1fr;
  align-items: flex-start;
  gap: 14px;
}
.privacy-list li:first-child { border-top: none; }
.privacy-list .icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(179, 140, 77, 0.18);
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.privacy-list .body strong { display: block; font-size: 14px; color: var(--bg); margin-bottom: 3px; font-weight: 600; }
.privacy-list .body span { font-size: 13.5px; color: rgba(246, 243, 236, 0.7); line-height: 1.5; }
.privacy-band .btn-secondary { color: var(--bg); border-color: rgba(246, 243, 236, 0.3); }
.privacy-band .btn-secondary:hover { background: rgba(246, 243, 236, 0.08); border-color: var(--bg); }

/* ---------------- Final CTA ---------------- */
.cta-band {
  background: var(--bg-2);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(179, 140, 77, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 30% at 70% 70%, rgba(13, 27, 42, 0.06), transparent 60%);
  pointer-events: none;
}
.cta-band > .container-narrow { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--text);
}
.cta-band h2 em { font-style: italic; color: var(--navy); }
.cta-band p { font-size: 18px; color: var(--text-2); margin: 0 0 42px; }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- Footer ---------------- */
footer {
  border-top: 1px solid var(--hairline);
  padding: 70px 0 36px;
  background: var(--bg);
}
footer .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
footer .links a { color: var(--text-2); text-decoration: none; display: block; margin: 8px 0; font-size: 14px; }
footer .links a:hover { color: var(--navy); }
footer .links h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; font-weight: 600; }
footer .copy { margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--hairline); color: var(--muted); font-size: 13px; text-align: center; }

/* ---------------- Policy / legal pages ---------------- */
.doc-page { padding: 70px 0 110px; }
.doc-page h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(40px, 5vw, 56px); font-weight: 500; letter-spacing: -1.2px; margin: 0 0 12px; }
.doc-page .last-updated { color: var(--muted); font-size: 13px; margin-bottom: 48px; font-style: italic; }
.doc-page h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 28px; font-weight: 500; margin: 56px 0 16px; letter-spacing: -0.3px; }
.doc-page h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 600; margin: 30px 0 10px; color: var(--text); }
.doc-page p, .doc-page li { font-size: 16px; color: var(--text-2); line-height: 1.75; }
.doc-page ul, .doc-page ol { padding-left: 24px; }
.doc-page li { margin-bottom: 8px; }
.doc-page a { color: var(--navy); }
.doc-page strong { color: var(--text); }
.callout { background: var(--bg-2); border-left: 3px solid var(--gold); padding: 20px 24px; border-radius: 8px; margin: 32px 0; font-size: 15.5px; }

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .container, .container-narrow { padding: 0 24px; }
  .hero { padding: 60px 0 60px; }
  .hero .grid { grid-template-columns: 1fr; gap: 60px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  section { padding: 70px 0; }
  .feature-block { grid-template-columns: 1fr; gap: 36px; padding: 40px 0; }
  .feature-block.reverse .copy { order: 1; }
  .feature-block.reverse .visual { order: 2; }
  .feature-block h3 { font-size: 30px; }
  .privacy-grid { grid-template-columns: 1fr; gap: 40px; }
  .privacy-band h2 { font-size: 34px; }
  footer .row { grid-template-columns: 1fr 1fr; gap: 30px; }
  nav.topnav .links a:not(.btn) { display: none; }
  .pull-quote { padding: 80px 0; }
  .pull-quote::before { font-size: 120px; top: 50px; }
}

/* ============================================================
   v2 — LookinGlass / Fresnaye.com inspired editorial design
   ============================================================ */

.btn-pill { border-radius: 999px !important; padding: 14px 32px; }
.btn-pill.btn-large { padding: 17px 38px; font-size: 14.5px; letter-spacing: 0.5px; }
.btn-pill.btn-primary { box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset, 0 10px 26px -10px rgba(13, 27, 42, 0.55); }

/* ---------------- Hero v2 (LookinGlass) ---------------- */
.hero-v2 {
  position: relative;
  padding: 56px 0 64px;
  text-align: center;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(255, 255, 255, 0.95), transparent 65%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(179, 140, 77, 0.12), transparent 70%);
  overflow: hidden;
}
/* Subtle aurora flecks like Fresnaye.com's hero particles */
.hero-v2::before, .hero-v2::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-v2::before {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(179, 140, 77, 0.4), transparent 60%);
  top: -120px; right: -80px;
}
.hero-v2::after {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(110, 91, 165, 0.28), transparent 60%);
  bottom: -160px; left: -100px;
}
.hero-v2 > * { position: relative; z-index: 1; }
.hero-v2 .kicker-line {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-v2 .kicker-line .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(179, 140, 77, 0.18);
}
.hero-v2 h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -1.5px;
  margin: 0 0 28px;
  color: var(--navy);
}
.hero-v2 h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(110deg, #2a3a5a 0%, #5e5391 45%, #b38c4d 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -1px;
}
.hero-v2 .sub {
  font-size: 17.5px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-v2 .cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex; justify-content: center; gap: 96px;
}
.hero-stat .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}
.hero-stat .label {
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}

/* ---------------- Pillar rows (Fresnaye.com numbered list) ---------------- */
.pillars-section { padding: 140px 0 120px; }
.pillars-section .pillars-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.pillars-section .pillars-head .eyebrow {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.pillars-section .pillars-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.0;
  margin: 0;
  color: var(--text);
}
.pillars-section .pillars-head h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.pillars-section .pillars-head .lede {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
  padding-bottom: 10px;
}

.pillar-rows { border-top: 1px solid var(--hairline); }
.pillar-row {
  display: grid;
  grid-template-columns: 90px 1.5fr 1fr 40px;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
  position: relative;
}
.pillar-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  color: var(--hairline);
  line-height: 1;
  padding-top: 4px;
}
.pillar-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--text);
}
.pillar-body h3 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.pillar-tags {
  font-size: 10.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.pillar-tags .dot { color: var(--hairline); margin: 0 8px; }
.pillar-desc {
  font-size: 15.5px;
  color: var(--text-2);
  line-height: 1.6;
  padding-top: 10px;
}
.pillar-arrow {
  font-size: 22px;
  color: var(--muted);
  padding-top: 10px;
  text-align: right;
}

@media (max-width: 900px) {
  .hero-v2 { padding: 80px 0 50px; }
  .hero-v2 .kicker-line { margin-bottom: 36px; }
  .hero-v2 .cta-row { margin-bottom: 50px; }
  .hero-stats { gap: 36px; }
  .hero-stat .num { font-size: 30px; }
  .pillars-section { padding: 80px 0 60px; }
  .pillars-section .pillars-head { grid-template-columns: 1fr; gap: 20px; align-items: start; margin-bottom: 50px; }
  .pillars-section .pillars-head .lede { padding-bottom: 0; }
  .pillar-row {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 28px 0;
  }
  .pillar-num { font-size: 24px; padding-top: 4px; }
  .pillar-desc { grid-column: 2; padding-top: 0; padding-bottom: 4px; }
  .pillar-arrow { display: none; }
}

