/* ========== RESET / BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #0a0a0a;
  color: #f3ece0;
  font-family: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #161616;
  --ink: #f3ece0;
  --ink-dim: #a39b8e;
  --ink-faint: #595550;
  --gold: #c9a96e;
  --gold-bright: #e3c388;
  --line: #2a2722;
  --maxw: 1240px;
  --maxw-narrow: 760px;
}

/* ========== TYPOGRAPHY ========== */
.display {
  font-family: 'Cabinet Grotesk', 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 800;
}
.wordmark {
  font-family: 'Cabinet Grotesk', 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(4.2rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0 0 1.5rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.06em;
}
.wordmark .dash-hero {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  margin: 0 0.08em;
  display: inline-block;
  transform: translateY(-0.12em);
}
.hero-line {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 32ch;
  letter-spacing: -0.005em;
}
.hero-line em {
  font-style: italic;
  color: var(--gold);
}
.display-sm {
  font-family: 'Cabinet Grotesk', 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}
.display-sm em {
  font-style: italic;
  color: var(--gold);
}
.eyebrow {
  font-family: 'Switzer', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.eyebrow.center { text-align: center; }
.eyebrow .dash {
  display: inline-block;
  margin: 0 0.35em;
  color: var(--ink-faint);
  font-weight: 400;
}
.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 38rem;
  margin: 0 0 2rem;
  line-height: 1.55;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
strong { color: var(--ink); font-weight: 600; }

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--maxw-narrow); }
.section { padding: clamp(80px, 12vw, 160px) 0; }

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  text-transform: uppercase;
}
.brand-sub {
  font-family: 'Switzer', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--ink-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1.1em 1.8em;
  background: var(--gold);
  color: #1a1408;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -12px rgba(201,169,110,0.5);
}
.btn-sm { padding: 0.7em 1.3em; font-size: 0.88rem; }
.btn-lg { padding: 1.25em 2.2em; font-size: 1.05rem; }
.btn-xl {
  padding: 1.5em 2.8em;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.005em;
}
.link-arrow {
  color: var(--ink-dim);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--ink); border-color: var(--gold); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 1rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #050505 url('assets/hero-poster.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* left scrim — keeps the headline crisp where the text sits */
    linear-gradient(90deg, rgba(10,10,10,0.84) 0%, rgba(10,10,10,0.55) 42%, rgba(10,10,10,0.22) 100%),
    /* vertical — darkens under the nav and fades to solid at the seam below */
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.38) 45%, rgba(10,10,10,0.98) 100%),
    /* faint gold accent on the open right side */
    radial-gradient(ellipse at 80% 28%, rgba(201,169,110,0.08), transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero h1 { max-width: 14ch; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--ink-faint);
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: var(--ink-faint);
  margin: 8px auto 0;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ========== RESULTS BAR ========== */
.results-bar {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(50px, 7vw, 90px) 0;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.result-stat {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.result-stat:last-child { border-right: none; }
.result-num {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.result-label {
  font-size: 0.95rem;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.result-label strong {
  color: var(--ink);
  font-weight: 600;
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--gold);
  color: #1a1408;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid #1a1408;
  border-bottom: 1px solid #1a1408;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
  animation: marqueeScroll 38s linear infinite;
  padding-left: 40px;
}
.marquee-track span:nth-child(even) { opacity: 0.4; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== STORY ========== */
.story { background: var(--bg); }
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.img-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.img-frame-then {
  background: url('assets/IMG_0882.jpg') center/cover no-repeat;
  filter: grayscale(0.15) contrast(1.05);
}
.img-frame-now {
  margin-top: 40px;
  background: url('assets/IMG_0887.jpg') center 30%/cover no-repeat;
}
.img-label {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(0,0,0,0.65);
  padding: 6px 10px;
  border-radius: 4px;
}
.story-copy p {
  font-size: 1.1rem;
  color: var(--ink-dim);
  margin: 0 0 1.2em;
}
.story-copy strong { color: var(--ink); }
.story-kicker {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-size: 1.4rem !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-top: 2rem !important;
}
.story-kicker em { font-style: italic; color: var(--gold); }

/* ========== PROBLEM ========== */
.problem { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  margin: 60px 0 50px;
  border: 1px solid var(--line);
}
.problem-card {
  background: var(--bg-2);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.problem-card .num {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  font-style: italic;
}
.problem-card p {
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
  line-height: 1.4;
}
.problem-pivot {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.4;
  text-align: center;
  max-width: 32em;
  margin: 0 auto;
  color: var(--ink);
}

/* ========== SYSTEM / PILLARS ========== */
.system { background: var(--bg); }
.section-lede {
  font-size: 1.15rem;
  color: var(--ink-dim);
  max-width: 42rem;
  margin: 0 0 4rem;
}
.pillar {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar-num {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
}
.pillar-body h3 {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin: 0 0 0.7em;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pillar-body p {
  font-size: 1.1rem;
  color: var(--ink-dim);
  margin: 0;
  max-width: 38rem;
  line-height: 1.6;
}

/* ========== NICHE STRIP ========== */
.niche-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 50px 0;
}
.niche-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
  font-weight: 600;
}
.niche-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 16px;
  max-width: 920px;
  margin: 0 auto;
}
.niche-list span {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--ink);
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-3);
  transition: border-color 0.2s, color 0.2s;
}
.niche-list span:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.niche-list span.niche-more {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
  font-style: italic;
  font-weight: 700;
}

/* ========== PROOF ========== */
.proof { background: var(--bg-2); border-top: 1px solid var(--line); }
.verified-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 580px;
  margin: 40px auto 56px;
  padding: 0 16px;
}
.stamp-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.55;
}
.stamp-text {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.stamp-text .dash { color: var(--gold); margin: 0 0.25em; font-weight: 400; }
.stamp-dot { color: var(--ink-faint); margin: 0 0.4em; }
.stamp-verified {
  color: var(--gold);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.stamp-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-faint);
  max-width: 52ch;
  margin: -36px auto 56px;
  line-height: 1.5;
}
.testimonial-feature {
  position: relative;
  max-width: 44rem;
  margin: 60px auto 80px;
  text-align: center;
  padding: 0 20px;
}
.quote-mark {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  margin: 0 0 20px;
  opacity: 0.6;
}
.testimonial-feature blockquote {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.testimonial-feature cite {
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.receipts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 16px;
}
.receipt-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 28px 24px;
  border-radius: 4px;
  transition: border-color 0.2s, transform 0.2s;
}
.receipt-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.receipt-status {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #5fd97a;
  margin-bottom: 14px;
}
.receipt-amount {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.receipt-meta {
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}
.receipts-disclaimer {
  font-size: 0.85rem;
  color: var(--ink-faint);
  text-align: center;
  margin: 0 0 100px;
  font-style: italic;
}

/* ========== INCOME UNLOCK BRANDING ========== */
.eyebrow .tm,
.tm {
  font-size: 0.55em;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 1px;
  color: var(--gold);
  font-weight: 600;
}
.cta-prompt {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--gold-bright);
  letter-spacing: -0.01em;
  margin: 8px 0 22px;
  line-height: 1.2;
}

/* ========== SPOTLIGHT (Hollywood headline wins) ========== */
.spotlight {
  position: relative;
  background: #060606;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0 90px;
  overflow: hidden;
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(201,169,110,0.08), transparent 60%),
    radial-gradient(60% 50% at 80% 100%, rgba(201,169,110,0.06), transparent 60%);
  pointer-events: none;
}
.spotlight .container { position: relative; z-index: 1; }
.spotlight-eyebrow {
  color: var(--gold);
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.spotlight-headline {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 56px;
  color: var(--ink);
}
.spotlight-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 900;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.spotlight-card {
  position: relative;
  background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 38px 36px 30px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.spotlight-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.spotlight-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}
.spotlight-card-feature::after {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, transparent 100%);
  width: 5px;
}
.spotlight-tag {
  display: inline-block;
  font-family: 'Switzer', 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.spotlight-num {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff 0%, var(--gold-bright) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.spotlight-line {
  font-family: 'Switzer', 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-dim);
  margin: 0 0 16px;
  max-width: 38ch;
}
.spotlight-line strong {
  color: var(--ink);
  font-weight: 700;
}
.spotlight-cite {
  display: block;
  font-style: normal;
  font-family: 'Switzer', 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.spotlight-foot {
  text-align: center;
  font-style: italic;
  color: var(--ink-faint);
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 820px) {
  .spotlight { padding: 60px 0 70px; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 18px; }
  .spotlight-card { padding: 32px 26px 26px; }
  .spotlight-headline { margin-bottom: 36px; }
}

/* Wins grid - real client screenshots, masonry */
.wins-grid {
  column-count: 4;
  column-gap: 14px;
  margin: 0 0 18px;
}
.win-card {
  display: block;
  position: relative;
  break-inside: avoid;
  margin: 0 0 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}
.win-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.win-card img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.win-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  cursor: default;
}
.win-caption { z-index: 3; }
.wins-grid {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.win-card.win-feature {
  /* span the first column visually by being first in flow; nothing extra needed */
}
.win-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.78) 60%, rgba(0,0,0,0) 100%);
  font-family: 'Switzer', 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.35;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.win-amount {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold-bright);
  letter-spacing: -0.01em;
  margin-right: 4px;
}
.win-who {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .wins-grid { column-count: 3; }
}
@media (max-width: 720px) {
  .wins-grid { column-count: 2; column-gap: 10px; }
  .win-caption { padding: 12px 10px 10px; font-size: 0.78rem; }
  .win-amount { font-size: 0.95rem; }
}
@media (max-width: 420px) {
  .wins-grid { column-count: 1; }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-bottom: 30px;
}
.gallery-item {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background-size: cover;
  background-position: center;
}
.gallery-item[data-img] {
  background-color: var(--bg-3);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.gallery-item[data-img]:hover {
  filter: brightness(1.1);
  transform: scale(1.01);
}
.gallery-item .img-label {
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* Per-photo focus points - keeps people fully in frame inside the cover crop */
.gallery-item[data-img*="IMG_0883"] { background-position: center 67% !important; }
.gallery-item[data-img*="IMG_0886"] { background-position: center 85% !important; }
.gallery-item[data-img*="IMG_0890"] { background-position: center 77% !important; }
.gallery-item[data-img*="costa-smeralda"] { background-position: center 22% !important; }
.gallery-item[data-img*="lifestyle-gili"] { background-position: center 78% !important; }
.gallery-item[data-img*="zakynthos"] { background-position: center 55% !important; }
.gallery-caption {
  text-align: center;
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-dim);
  margin: 0;
}

/* ========== FIT ========== */
.fit { background: var(--bg); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}
.fit-col {
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 4px;
  background: var(--bg-2);
}
.fit-col h3 {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-size: 1.5rem;
  margin: 0 0 24px;
  font-weight: 700;
}
.fit-yes { border-color: var(--gold); }
.fit-yes h3 { color: var(--gold); }
.fit-no h3 { color: #c97070; }
.fit-no { border-color: #4a2525; }
.fit-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fit-col li {
  padding: 14px 0 14px 32px;
  position: relative;
  border-top: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink-dim);
  line-height: 1.5;
}
.fit-col li:first-child { border-top: none; }
.fit-yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.fit-no li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c97070;
  font-weight: 700;
}

/* ========== HOW ========== */
.how { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.step {
  padding: 40px 30px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 4px;
  transition: border-color 0.2s, transform 0.2s;
}
.step:hover { border-color: var(--gold); transform: translateY(-4px); }
.step-num {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-style: italic;
  font-weight: 800;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-size: 1.4rem;
  margin: 0 0 14px;
  color: var(--ink);
}
.step p { color: var(--ink-dim); margin: 0; line-height: 1.6; }

/* ========== FAQ ========== */
.faq { background: var(--bg); }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Switzer', 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item p {
  margin: 18px 0 0;
  color: var(--ink-dim);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 60ch;
}

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.12), transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta .display { margin-bottom: 2rem; }
.final-cta .lede { margin: 0 auto 3rem; }
.final-cta .small {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}

/* ========== FOOTER ========== */
.footer {
  background: #050505;
  padding: 50px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 800;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--ink-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-fine {
  font-size: 0.78rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .brand-sub { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .story-images { order: 2; }
  .problem-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .result-stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 30px 24px;
  }
  .result-stat:last-child { border-bottom: none; }
  .pillar { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
  .receipts-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .fit-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 120px 0 60px; }
  .wordmark { font-size: clamp(3.8rem, 18vw, 5.5rem); gap: 0; }
  .wordmark .dash-hero { transform: translateY(-0.05em); }
  .hero-line { font-size: 1.25rem; }
  .verified-stamp { gap: 12px; }
  .stamp-text { font-size: 0.78rem; letter-spacing: 0.14em; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 16px; }
  .cta-row .btn { justify-content: center; }
  .receipts-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .receipt-card { padding: 22px 18px; }
  .receipt-amount { font-size: 1.7rem; }
  .testimonial-feature blockquote { font-size: 1.4rem; }
  .quote-mark { font-size: 5rem; }
  .fit-col { padding: 28px 22px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ========== HERO CTA NOTE ========== */
.hero-cta-note {
  margin: 18px 0 0;
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

/* ========== MID-PAGE PROOF CTA ========== */
.proof-cta {
  max-width: 640px;
  margin: 8px auto 90px;
}
.proof-cta-line {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
}
.proof-cta-sub {
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin: 16px 0 0;
}

/* ========== FOUNDER / THE CALL ========== */
.founder {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-3) center/cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.founder-portrait .founder-ph { background: rgba(0,0,0,0.7); }
.founder-copy p {
  color: var(--ink-dim);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 1.1em;
}
.founder-copy strong { color: var(--ink); }
.founder-sign {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-style: italic;
  color: var(--ink) !important;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  margin: 1.4em 0 1.9em !important;
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 360px; }
}

/* ========== APPLICATION QUIZ ========== */
.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 20px;
  overflow-y: auto;
}
.quiz-overlay.open { display: flex; }
.quiz-card {
  position: relative;
  width: 100%;
  max-width: 640px;
  background: linear-gradient(180deg, #141312 0%, #0c0b0a 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 34px 38px;
  box-shadow: 0 40px 120px -20px rgba(0,0,0,0.8);
  animation: quizIn 0.4s cubic-bezier(.2,.7,.2,1);
}
@keyframes quizIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.quiz-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.quiz-brand {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-size: 1rem;
}
.quiz-brand .dash { color: var(--gold); margin: 0 0.15em; font-style: normal; }
.quiz-close {
  background: none;
  border: none;
  color: var(--ink-dim);
  font-size: 1.7rem;
  line-height: 1;
  padding: 2px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.quiz-close:hover { color: var(--ink); background: rgba(255,255,255,0.06); }
.quiz-bar {
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 26px;
}
.quiz-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.4s ease;
}
.quiz-step-count {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 14px;
}
.quiz-step-count.quiz-pass { color: #5fd97a; }
.quiz-step-count.quiz-fail { color: #c97070; }
.quiz-q {
  font-family: 'Cabinet Grotesk', 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 10px;
}
.quiz-sub {
  color: var(--ink-dim);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 22px;
}
.quiz-opts { display: flex; flex-direction: column; gap: 12px; }
.quiz-opt {
  text-align: left;
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: inherit;
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}
.quiz-opt:hover {
  border-color: var(--gold);
  background: #1b1916;
  transform: translateX(3px);
}
.quiz-form { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.quiz-input {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 16px 18px;
  border-radius: 10px;
  font-size: 1.02rem;
  font-family: inherit;
  transition: border-color 0.18s;
}
.quiz-input::placeholder { color: var(--ink-faint); }
.quiz-input:focus { outline: none; border-color: var(--gold); }
.quiz-input.err { border-color: #c97070; }
.quiz-submit { justify-content: center; margin-top: 6px; }
.quiz-card .calendly-inline-widget {
  margin-top: 8px;
  border-radius: 10px;
  overflow: hidden;
  min-width: 280px;
}
@media (max-width: 560px) {
  .quiz-overlay { padding: 0; }
  .quiz-card {
    max-width: none;
    min-height: 100vh;
    min-height: 100svh;
    border: none;
    border-radius: 0;
    padding: 22px 20px 40px;
  }
}

/* ========== HERO HEADLINE (promise-first hierarchy) ========== */
.hero-headline {
  font-family: 'Cabinet Grotesk', 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(2.7rem, 7.5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

/* ========== FOOTER DISCLAIMER ========== */
.footer-disclaimer {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--ink-faint);
  opacity: 0.85;
  max-width: 62ch;
}

/* ========== QUIZ DISQUALIFY EXTRAS ========== */
.quiz-dq-sub { margin-top: 12px; }
.quiz-dq-form {
  flex-direction: row;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.quiz-dq-form .quiz-input { flex: 1 1 220px; }
.quiz-dq-form .quiz-submit { flex: 0 0 auto; margin-top: 0; }

/* ========== STICKY MOBILE CTA BAR ========== */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150; /* below the quiz overlay (200) */
  display: none;
  padding: 28px 16px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.9) 45%, rgba(10,10,10,0.98) 100%);
  transform: translateY(110%);
  transition: transform 0.35s ease;
  pointer-events: none;
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta.show .btn { pointer-events: auto; } /* only the button takes taps - the gradient strip stays transparent to touch */
.mobile-cta .btn { width: 100%; justify-content: center; pointer-events: none; }
@media (max-width: 768px) {
  .mobile-cta { display: block; }
  .footer { padding-bottom: 150px; } /* footer fine print scrolls clear of the fixed bar */
}

/* ========== WIN SCREENSHOT LIGHTBOX ========== */
.win-card { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 8px;
  border: 1px solid rgba(243, 236, 224, 0.15);
}
.lightbox-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

/* ========== FREE TRAINING FUNNEL ========== */
.tf-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background: var(--bg);
}
.tf-hero::before {
  content: '';
  position: absolute;
  top: -35%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.11), transparent 62%);
  pointer-events: none;
}
.tf-hero .container { position: relative; z-index: 2; }
.tf-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.tf-copy .hero-headline { max-width: 13ch; }
.tf-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  max-width: 34rem;
}
.tf-bullets li {
  position: relative;
  padding: 12px 0 12px 32px;
  color: var(--ink-dim);
  font-size: 1.05rem;
  line-height: 1.5;
  border-top: 1px solid var(--line);
}
.tf-bullets li:first-child { border-top: none; }
.tf-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.tf-bullets strong { color: var(--ink); }
.tf-trust {
  font-size: 0.85rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  margin: 0;
}
.tf-trust strong { color: var(--gold); font-weight: 700; }
.tf-card { padding: 34px 34px 30px; }
.tf-card .quiz-q { font-size: clamp(1.5rem, 2.6vw, 1.95rem); }
.tf-consent {
  margin: 16px 0 0;
  font-size: 0.76rem;
  color: var(--ink-faint);
  line-height: 1.55;
}
.tf-consent a { text-decoration: underline; text-underline-offset: 2px; }
.tf-consent a:hover { color: var(--gold); }

/* Watch page */
.tf-watch {
  padding: 150px 0 clamp(80px, 10vw, 130px);
  background: var(--bg);
}
.tf-watch-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.tf-inbox {
  font-size: 0.9rem;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
  margin: -6px auto 40px;
}
.tf-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #060606;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.8);
}
.tf-video .wistia_embed { position: absolute; inset: 0; }
.tf-video-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.tf-video-ph-badge {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.tf-video-ph p { color: var(--ink-faint); font-size: 0.95rem; margin: 0; max-width: 44ch; }
.tf-video-ph code { color: var(--ink-dim); font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 0.85em; }
.tf-next {
  margin-top: clamp(60px, 8vw, 90px);
  padding-top: clamp(50px, 6vw, 70px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.tf-next .proof-cta-sub { margin-top: 18px; }

@media (max-width: 900px) {
  .tf-grid { grid-template-columns: 1fr; gap: 48px; }
  .tf-hero { padding: 130px 0 70px; }
  .tf-copy .hero-headline { max-width: none; }
}
