/* =========================================
   1% BNB — Direct VSL v2 (refined)
   Mobile-first. Tokens up top.
   ========================================= */

:root {
  /* Palette */
  --bg:            #FAF7F0;
  --bg-soft:       #F2ECDE;
  --bg-card:       #FFFFFF;
  --bg-dark:       #12161D;
  --bg-deep:       #0B0E14;
  --bg-darker:     #07090D;

  --ink:           #14181F;
  --ink-2:         #3D4350;
  --ink-mute:      #6B7280;

  --line:          #E8E0CC;
  --line-strong:   #D9CFB5;
  --line-dark:     rgba(255,255,255,.08);

  /* Brand gold */
  --gold:          #C9A26B;
  --gold-bright:   #D8B074;
  --gold-deep:     #A88347;
  --gold-soft:     #EFDFB9;
  --gold-wash:     #FBF4E3;
  --gold-glow:     rgba(201, 162, 107, .35);

  /* Type */
  --serif:         "Fraunces", "DM Serif Display", Georgia, serif;
  --sans:          "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container:        1180px;
  --container-wide:   1280px;
  --container-tight:  920px;

  /* Radius / shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-soft:   0 2px 8px rgba(20,24,31,.04);
  --shadow-card:   0 16px 40px -22px rgba(20, 24, 31, .25), 0 2px 6px rgba(20,24,31,.05);
  --shadow-lift:   0 36px 80px -28px rgba(20, 24, 31, .35), 0 4px 12px rgba(20,24,31,.08);
  --shadow-stats:  0 42px 80px -28px rgba(11, 14, 20, .55), 0 8px 24px rgba(11,14,20,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* =========================================
   Shared section primitives
   ========================================= */
.section__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  background: var(--gold-wash);
  border-radius: 999px;
}
.section__eyebrow--light {
  color: var(--gold);
  background: rgba(201, 162, 107, .08);
  border-color: rgba(201, 162, 107, .25);
}

.section__h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 16px;
  color: var(--ink);
}
.section__h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.section__h2--light { color: #fff; }
.section__h2--light em { color: var(--gold); }

/* Single-line modifier — wraps freely on mobile, locks to one line on desktop */
@media (min-width: 1024px) {
  .section__h2--one-line {
    white-space: nowrap;
    font-size: clamp(28px, 3vw, 38px);
    width: max-content;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .section__sub--one-line {
    white-space: nowrap;
    font-size: 15px;
    width: max-content;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.section__sub {
  font-size: clamp(15.5px, 2vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 760px;
}
.section__head { max-width: 900px; margin: 0 auto 40px; }
.section__head--center { text-align: center; }
.section__head--center .section__sub { margin-left: auto; margin-right: auto; }
.section__head--center .section__eyebrow { margin-left: auto; margin-right: auto; }

/* =========================================
   1. Callout bar
   ========================================= */
.callout {
  background: var(--bg-dark);
  color: #fff;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(201,162,107,.18);
}
.callout__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.callout__text {
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
.callout__laurel { display: inline-flex; width: 26px; flex-shrink: 0; }
.callout__laurel img { width: 100%; height: auto; }
.callout__laurel--right img { transform: scaleX(-1); }
@media (min-width: 768px) {
  .callout { padding: 16px 24px; }
  .callout__text { font-size: 14.5px; }
  .callout__laurel { width: 32px; }
}

/* =========================================
   2. Hero
   ========================================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 70% at 50% 0%, #1B2230 0%, #14181F 45%, #0E1118 100%);
  color: #fff;
  overflow: hidden;
  padding: 56px 20px 96px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 45% at 88% 12%, rgba(201,162,107,.18) 0%, transparent 70%),
    radial-gradient(55% 45% at 12% 88%, rgba(201,162,107,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .25 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: .12;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero__eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }
.hero__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.8vw, 64px);
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 20px;
  color: #fff;
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #E5C589 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero__sub strong { color: #fff; font-weight: 600; }

/* VSL */
.vsl {
  margin: 0 auto 32px;
  width: 100%;
  max-width: 820px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
}
.vsl__bar {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #14181F;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 10px 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.vsl__bar--top    { border-radius: var(--r) var(--r) 0 0; }
.vsl__bar--bottom { border-radius: 0 0 var(--r) var(--r); }
.vsl__bar-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.vsl__bar--bottom .vsl__bar-icon { width: 15px; height: 15px; }
.vsl__frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #0A0C12;
  overflow: hidden;
  border-left: 1px solid rgba(201,162,107,.5);
  border-right: 1px solid rgba(201,162,107,.5);
}
.vsl__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 22px;
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(201,162,107,.22), transparent 70%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.012) 0 10px, transparent 10px 20px),
    #0A0C12;
}
.vsl__play { width: 78px; height: 78px; filter: drop-shadow(0 8px 20px rgba(201,162,107,.4)); }
.vsl__note { color: rgba(255,255,255,.55); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
@media (min-width: 768px) {
  .vsl__bar { font-size: 14px; padding: 11px 16px; }
}

/* CTA */
.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 32px;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #14181F;
  border-radius: var(--r);
  font-family: var(--sans);
  font-weight: 700;
  text-align: center;
  min-width: 280px;
  box-shadow:
    0 18px 36px -16px var(--gold-glow),
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .6s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 50px -18px var(--gold-glow),
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(0,0,0,.06);
}
.cta:hover::before { left: 100%; }
.cta__primary {
  font-size: 17px;
  letter-spacing: .005em;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
  z-index: 1;
}
.cta__arrow { display: inline-block; transition: transform .18s ease; }
.cta:hover .cta__arrow { transform: translateX(4px); }
.cta__sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
  position: relative;
  z-index: 1;
}
.cta--inverse {
  background: linear-gradient(180deg, #1E232C 0%, #14181F 100%);
  color: #fff;
  box-shadow: 0 18px 36px -16px rgba(20,24,31,.5), inset 0 1px 0 rgba(255,255,255,.08);
}
.cta--inverse .cta__primary { color: #fff; }
.cta--xl { min-width: 320px; padding: 20px 38px; }
.cta--xl .cta__primary { font-size: 19px; }
@media (min-width: 768px) {
  .cta { padding: 18px 36px; }
  .cta__primary { font-size: 18px; }
}

/* Trustpilot strip — CSS-built so text color is controllable */
.tpilot {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  margin: 32px auto 0;
  color: #fff;
  white-space: nowrap;
}
.tpilot--lg { margin: 0 auto 40px; padding: 12px 22px 12px 14px; gap: 16px; }
.tpilot__avatars { display: inline-flex; flex-shrink: 0; }
.tpilot__av {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  overflow: hidden;
  display: inline-block;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  background: var(--bg-dark);
  position: relative;
}
.tpilot__av img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tpilot__av:first-child { margin-left: 0; }
.tpilot--lg .tpilot__av { width: 38px; height: 38px; }

.tpilot__stars {
  display: inline-flex; gap: 2px;
  flex-shrink: 0;
}
.tpilot__stars span {
  width: 20px; height: 20px;
  background: #00B67A;
  border-radius: 2px;
  position: relative;
}
.tpilot__stars span::before {
  content: "★";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; line-height: 1;
}
.tpilot--lg .tpilot__stars span { width: 24px; height: 24px; }
.tpilot--lg .tpilot__stars span::before { font-size: 15px; }

.tpilot__text {
  display: flex; flex-direction: column;
  line-height: 1.18;
}
.tpilot__text strong {
  color: inherit;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .005em;
}
.tpilot__text span {
  font-size: 11.5px;
  opacity: .78;
}
.tpilot__text em {
  font-style: normal;
  font-weight: 600;
  opacity: 1;
}
.tpilot--lg .tpilot__text strong { font-size: 15px; }
.tpilot--lg .tpilot__text span { font-size: 12px; }

/* Dark variant — used on dark sections, keeps text white */
.tpilot--dark { color: #fff; }
.tpilot--dark .tpilot__text span { color: rgba(255,255,255,.78); }
.tpilot--dark .tpilot__av { border-color: #14181F; }

@media (max-width: 480px) {
  .tpilot { gap: 10px; padding: 8px 14px 8px 10px; }
  .tpilot__av { width: 28px; height: 28px; font-size: 10px; }
  .tpilot__stars span { width: 18px; height: 18px; }
  .tpilot__stars span::before { font-size: 12px; }
  .tpilot__text strong { font-size: 13px; }
  .tpilot__text span { font-size: 11px; }
}

/* =========================================
   Seam — gradient transition zone hero → apply
   Stats card sits centered on this seam
   ========================================= */
.seam {
  position: relative;
  background:
    linear-gradient(180deg, #0E1118 0%, #1A1F2A 35%, #4A4231 65%, var(--bg) 100%);
  padding: 60px 20px;
  margin: 0;
}
.seam::before {
  /* Subtle gold haze along the transition */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, rgba(201,162,107,.08), transparent 70%);
  pointer-events: none;
}

.stats {
  position: relative;
  z-index: 5;
  max-width: 1080px;
  margin: 0 auto;
}
.stats__inner {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF7EC 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-stats);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.stats__inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold-bright) 50%, var(--gold-deep) 100%);
}
.stats__item {
  text-align: center;
  padding: 4px 8px;
}
.stats__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 6vw, 50px);
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, #B68A4D 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stats__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: .02em;
  line-height: 1.4;
}
.stats__divider {
  display: none;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-strong), transparent);
}
@media (min-width: 760px) {
  .seam { padding: 80px 20px; }
  .stats__inner {
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    padding: 36px 32px;
    gap: 0;
  }
  .stats__divider { display: block; }
  .stats__label { font-size: 13.5px; }
}

/* =========================================
   3. Application
   ========================================= */
.apply {
  position: relative;
  background: var(--bg);
  padding: 24px 18px 60px;
}
.apply__card {
  max-width: var(--container-tight);
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lift);
  padding: 40px 24px;
  text-align: center;
}
.apply .section__sub { margin: 0 auto 28px; }
.form-frame {
  background: var(--gold-wash);
  border: 1.5px dashed var(--gold);
  border-radius: var(--r);
  padding: 40px 24px;
  margin-top: 12px;
}
.form-frame__pill {
  display: inline-block;
  background: var(--gold);
  color: #14181F;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.form-frame__placeholder p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
@media (min-width: 768px) {
  .apply { padding: 32px 32px 80px; }
  .apply__card { padding: 56px 56px 64px; max-width: 1040px; }
}

/* =========================================
   4. Outcomes
   ========================================= */
.outcomes {
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 30%, var(--bg-soft) 100%);
  padding: 96px 18px 90px;
}
.outcomes__inner { max-width: var(--container); margin: 0 auto; }
.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.outcome-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.outcome-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.outcome-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.outcome-card:hover .outcome-card__media img { transform: scale(1.04); }
.outcome-card__chip {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(20,24,31,.85);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.outcome-card__h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.005em;
  margin: 24px 24px 12px;
  color: var(--ink);
}
.outcome-card__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 24px 28px;
}
@media (min-width: 880px) {
  .outcomes__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .outcome-card__h { font-size: 23px; margin: 28px 28px 12px; }
  .outcome-card__body { margin: 0 28px 32px; }
}

/* Mid-page CTA */
.midcta {
  margin: 64px auto 0;
  text-align: center;
  max-width: 760px;
  padding: 8px 0;
}
.midcta__h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.midcta__sub {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0 auto 28px;
  max-width: 580px;
}

/* Property slider */
.slider {
  margin-top: 96px;
  padding: 0 0 16px;
}
.slider__head {
  display: flex; align-items: end; justify-content: space-between;
  max-width: var(--container); margin: 0 auto 28px; padding: 0 20px;
  gap: 16px;
}
.slider__h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
}
.slider__hint {
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .12em;
  font-weight: 600;
  color: var(--ink-mute);
  white-space: nowrap;
}
.slider__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 20px 28px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.slider__track::-webkit-scrollbar { height: 6px; }
.slider__track::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
.prop {
  flex: 0 0 78%;
  max-width: 320px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.prop:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.prop__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.prop__img img { width: 100%; height: 100%; object-fit: cover; }
.prop__meta {
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.prop__loc { font-weight: 600; font-size: 14px; color: var(--ink); }
.prop__rev { color: var(--gold-deep); font-weight: 700; font-size: 14px; font-family: var(--serif); }
@media (min-width: 768px) {
  .prop { flex: 0 0 320px; }
}

/* =========================================
   5. Social Proof (dark)
   ========================================= */
.proof {
  background:
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
  color: #fff;
  padding: 96px 18px 90px;
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute;
  top: -10%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 60%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(201,162,107,.10), transparent 70%);
  pointer-events: none;
}
.proof__inner { max-width: var(--container); margin: 0 auto; position: relative; }
.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
.quote {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.quote::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.quote:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 107, .25);
}
.quote__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 6px rgba(201,162,107,.3));
}
.quote__take {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: -.005em;
  margin: 0 0 14px;
  color: #fff;
}
.quote__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.74);
  margin: 0 0 20px;
}
.quote__by {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 16px;
  margin: 0;
}
.quote__by strong { color: #fff; font-weight: 600; }
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #14181F;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,162,107,.35);
}
@media (min-width: 920px) {
  .proof__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .quote { padding: 32px 28px; }
}

.ftc {
  margin: 48px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.42);
}

/* =========================================
   6. Who this is for
   ========================================= */
.who {
  background: var(--bg);
  padding: 96px 18px;
}
.who__inner { max-width: var(--container); margin: 0 auto; }
.who__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.who__col {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.who__col--for {
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF8EB 100%);
  border-color: var(--gold-soft);
}
.who__col--not {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4EFE3 100%);
  border-color: var(--line-strong);
}
.who__badge {
  display: inline-block;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #14181F;
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(201,162,107,.25);
}
.who__badge--not {
  background: linear-gradient(180deg, #2A303A, #14181F);
  color: #fff;
  box-shadow: 0 4px 12px rgba(20,24,31,.25);
}
.who__list {
  list-style: none;
  margin: 0; padding: 0;
}
.who__list li {
  position: relative;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid rgba(201,162,107,.15);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.who__list li:last-child { border-bottom: none; }
.who__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 11px;
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-deep);
  border-radius: 50%;
  font-size: 13px; font-weight: 700;
}
.who__list--not li { border-bottom-color: rgba(20,24,31,.08); }
.who__list--not li::before {
  content: "✕";
  background: rgba(20,24,31,.08);
  color: var(--ink);
}
.who__bridge {
  margin: 48px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 2.5vw, 23px);
  line-height: 1.4;
  letter-spacing: -.005em;
  color: var(--ink);
}
.who__bridge em { color: var(--gold-deep); font-style: italic; }
@media (min-width: 880px) {
  .who__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .who__col { padding: 40px 36px; }
}

/* =========================================
   7. Founder
   ========================================= */
.founder {
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
  color: #fff;
  padding: 96px 18px 110px;
  position: relative;
  overflow: hidden;
}
.founder__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 35% at 25% 30%, rgba(201,162,107,.12), transparent 70%),
    radial-gradient(40% 30% at 80% 75%, rgba(201,162,107,.08), transparent 70%);
  pointer-events: none;
}
.founder__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.founder__photo-wrap {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}
.founder__photo {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid rgba(201,162,107,.25);
  box-shadow:
    0 40px 80px -32px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.04);
}
.founder__badge {
  position: absolute;
  right: -8px; bottom: -22px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #14181F;
  padding: 16px 22px;
  border-radius: var(--r);
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 18px 36px -12px rgba(201,162,107,.5);
}
.founder__badge-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px; line-height: 1;
}
.founder__badge-lbl {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}
.founder__sig {
  position: absolute;
  top: -14px; left: -10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  background: var(--bg-deep);
  padding: 4px 14px;
  border-radius: var(--r);
  border: 1px solid rgba(201,162,107,.2);
}
.founder__body { padding-top: 8px; }
.founder__body .section__h2 { color: #fff; margin-bottom: 24px; }
.founder__body .section__h2 em { color: var(--gold); }
.founder__para {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin: 0 0 18px;
}
.founder__para strong { color: #fff; font-weight: 600; }
.founder__sign {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin: 24px 0 0;
  font-size: 19px;
}
@media (min-width: 920px) {
  .founder__inner {
    grid-template-columns: 5fr 7fr;
    gap: 72px;
    align-items: center;
  }
  .founder__photo-wrap { max-width: none; margin: 0; }
  .founder__body { padding-top: 0; }
}

/* =========================================
   8. Final CTA
   ========================================= */
.final {
  background:
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
  color: #fff;
  padding: 110px 18px 120px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 55% at 50% 0%, rgba(201,162,107,.22), transparent 65%),
    radial-gradient(40% 40% at 50% 100%, rgba(201,162,107,.10), transparent 70%);
  pointer-events: none;
}
.final__inner { position: relative; max-width: 900px; margin: 0 auto; }
.final__h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 5.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 22px;
}
.final__h em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, #E5C589 0%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final__sub {
  font-size: clamp(15.5px, 2.1vw, 18.5px);
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  margin: 0 auto 36px;
  max-width: 820px;
}

/* =========================================
   9. Footer
   ========================================= */
.foot {
  background: var(--bg-darker);
  color: rgba(255,255,255,.65);
  padding: 64px 18px 40px;
  border-top: 1px solid var(--line-dark);
}
.foot__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  text-align: center;
}
.foot__logo {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  display: block;
  letter-spacing: -.01em;
}
.foot__tag {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  display: block;
}
.foot__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
}
.foot__links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.foot__links a:hover { color: var(--gold); border-color: rgba(201,162,107,.4); }
.foot__compliance {
  max-width: 760px; margin: 0 auto;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,.42);
}
.foot__copy { font-size: 12px; color: rgba(255,255,255,.5); margin: 0; }

/* =========================================
   Focus styles (a11y)
   ========================================= */
a:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r);
}
