/* Your Finance Girl — Masterclass sales page
   Long-form editorial landing. Extends design system tokens. */

html, body { margin: 0; padding: 0; background: var(--yfg-cream); color: var(--yfg-ink); font-family: var(--font-body); }
* { box-sizing: border-box; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ---------- Layout primitives ---------- */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.section { padding: 72px 0; position: relative; }
.section-sm { padding: 48px 0; }
.section-cream-deep { background: var(--yfg-cream-deep); }
.section-forest { background: var(--yfg-forest); color: var(--yfg-cream); }
.section-yellow { background: var(--yfg-yellow); color: var(--yfg-forest); }
.divider-rule { border-top: 1px solid var(--yfg-rule); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgb(193, 148, 22);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.5; }
.eyebrow.no-line::before { display: none; }
.eyebrow-cream { color: rgba(250,245,236,0.78); }
.eyebrow-yellow { color: var(--yfg-forest); }

.h-display {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 5.2vw, 80px); line-height: 0.98; letter-spacing: -0.025em;
  color: var(--yfg-forest); margin: 0; text-wrap: balance;
}
.h-display em {
  font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400;
  letter-spacing: -0.012em;
}
.h-section {
  font-family: var(--font-headline); font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px); line-height: 1.08; letter-spacing: -0.018em;
  color: var(--yfg-forest); margin: 0; text-wrap: balance;
}
.h-section em {
  font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400;
}
.h-section.cream { color: var(--yfg-cream); }
.h-section.cream em { color: var(--yfg-yellow); }
.h-sub {
  font-family: var(--font-headline); font-weight: 700;
  font-size: 20px; line-height: 1.22; letter-spacing: -0.01em;
  color: var(--yfg-forest); margin: 0;
}
.h-sub em { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; }
.lede {
  font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--yfg-ink);
  max-width: 60ch; text-wrap: pretty;
}
.lede.cream { color: rgba(250,245,236,0.82); }
.meta { font-size: 13px; color: var(--yfg-forest-soft); letter-spacing: 0.04em; }
.meta-cream { color: rgba(250,245,236,0.62); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 24px; border-radius: 999px; cursor: pointer;
  transition: all 180ms var(--ease-out); border: none; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
}
.btn .arrow { transition: transform 180ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--yfg-forest); color: var(--yfg-cream) !important; box-shadow: 0 2px 6px rgba(44,74,62,0.18); }
.btn-primary:hover, .btn-primary:focus, .btn-primary:visited { background: var(--yfg-forest-deep); color: var(--yfg-cream); text-decoration: none; transform: translateY(-1px); box-shadow: 0 10px 20px rgba(44,74,62,0.22); }
.btn-accent { background: var(--yfg-yellow); color: var(--yfg-forest); box-shadow: 0 2px 6px rgba(44,74,62,0.14); }
.btn-accent:hover { background: var(--yfg-yellow-deep); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(44,74,62,0.18); }
.btn-ghost { background: transparent; color: var(--yfg-forest); border: 1.5px solid var(--yfg-forest); }
.btn-ghost:hover { background: var(--yfg-forest); color: var(--yfg-cream); }
.btn-ghost-cream { background: transparent; color: var(--yfg-cream); border: 1.5px solid rgba(250,245,236,0.5); }
.btn-ghost-cream:hover { background: rgba(250,245,236,0.08); border-color: var(--yfg-cream); }
a.btn { text-decoration: none; }
a.btn-primary, a.btn-primary:link, a.btn-primary:visited, a.btn-primary:hover, a.btn-primary:active { color: var(--yfg-cream); }
a.btn-accent, a.btn-accent:link, a.btn-accent:visited, a.btn-accent:hover, a.btn-accent:active { color: var(--yfg-forest); }

.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-xl { padding: 22px 36px; font-size: 17px; }
.link-underline {
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  color: var(--yfg-forest); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px; cursor: pointer;
}
.link-underline:hover { text-decoration-color: var(--yfg-yellow); }

/* ---------- Countdown topbar (above header) ---------- */
.countdown-topbar {
  background: var(--yfg-forest);
  color: var(--yfg-cream);
  padding: 8px 24px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.countdown-topbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.countdown-topbar .pill {
  background: var(--yfg-yellow); color: var(--yfg-forest);
  padding: 3px 10px; border-radius: 999px;
  font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.countdown-topbar-label strong { font-weight: 700; }
.countdown-topbar .sep { opacity: 0.4; }
.countdown-topbar-sub { opacity: 0.75; }
.countdown-topbar-cells {
  display: inline-flex; align-items: center; gap: 6px;
  font-variant-numeric: tabular-nums;
}
.cd-mini {
  display: inline-flex; align-items: baseline; gap: 2px;
  background: rgba(250,245,236,0.08);
  border: 1px solid rgba(250,245,236,0.14);
  padding: 2px 8px; border-radius: 6px;
}
.cd-mini b { font-weight: 700; font-size: 12.5px; }
.cd-mini span { opacity: 0.7; font-size: 10.5px; margin-left: 1px; }
@media (max-width: 680px) {
  .countdown-topbar { padding: 7px 14px; font-size: 11.5px; }
  .countdown-topbar-inner { gap: 10px; }
  .countdown-topbar .sep-desktop, .countdown-topbar-sub { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,245,236,0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--yfg-rule);
}
.site-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand-lockup { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--yfg-forest); }
.brand-lockup .brand-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  overflow: hidden; flex-shrink: 0;
  background: var(--yfg-cream-deep);
  border: none;
  box-shadow: 0 1px 3px rgba(44,74,62,0.12);
  display: block;
  position: relative;
}
.brand-lockup .brand-avatar img {
  position: absolute;
  width: 362%;
  max-width: none;
  height: auto;
  left: -132%;
  top: -140%;
  display: block;
}
.brand-lockup img { width: 38px; height: 38px; }
.brand-lockup .name { font-family: var(--font-headline); font-weight: 800; font-size: 17px; letter-spacing: -0.01em; }
.brand-lockup .name .dot { color: inherit; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: var(--yfg-forest); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.01em; }
.site-nav a:hover { color: var(--yfg-forest-deep); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--yfg-yellow); }
.site-nav .btn { padding: 10px 18px; font-size: 14px; }

.header-banner {
  background: var(--yfg-forest); color: var(--yfg-cream);
  font-size: 13px; letter-spacing: 0.02em; text-align: center;
  padding: 10px 24px; display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
.header-banner .pill { background: var(--yfg-yellow); color: var(--yfg-forest); padding: 3px 10px; border-radius: 999px; font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.header-banner .sep { opacity: 0.4; }

/* ---------- Before / After transformation ---------- */
.ba-sec { padding: 48px 0 56px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.ba-card { border-radius: 24px; padding: 36px 36px 32px; }
.ba-before { background: var(--yfg-bone); border: 1px solid var(--yfg-rule); }
.ba-after { background: var(--yfg-forest); color: var(--yfg-cream); }
.ba-head { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin-bottom: 20px; }
.ba-before .ba-head { color: var(--yfg-forest-soft); }
.ba-after .ba-head { color: var(--yfg-yellow); }
.ba-card ul { list-style: none; margin: 0; padding: 0; }
.ba-card li { display: flex; gap: 14px; align-items: center; padding: 10px 0; font-size: 15px; line-height: 1.5; }
.ba-mark { flex-shrink: 0; width: 26px; height: 26px; border-radius: 999px; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.ba-mark.x { color: #fff; background: #c94a4a; }
.ba-mark.tick { color: #fff; background: #2d7a4f; }
.ba-before li { color: var(--yfg-ink); }
.ba-after li { color: rgba(250,245,236,0.92); }
@media (max-width: 720px) { .ba-grid { grid-template-columns: 1fr; } }
.about-hero { padding: 56px 0 24px; background: var(--yfg-cream); }
.about-hero .wrap-narrow { text-align: left; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 36px; }
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: 56px; align-items: center;
}
.hero .h-display { font-size: clamp(40px, 4.8vw, 72px); }
.hero-lede { margin: 16px 0 22px; max-width: 54ch; font-size: 16px; }
.hero-ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-footnote { font-size: 13px; color: var(--yfg-forest-soft); max-width: 50ch; }
.hero-footnote .sep { color: var(--yfg-yellow); margin: 0 4px; font-weight: 700; }
.hero-logos { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--yfg-rule); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yfg-forest-soft); }
.hero-logos strong { color: var(--yfg-forest); font-weight: 800; font-size: 13px; letter-spacing: 0.08em; }

/* Hero art — intro video */
.hero-art { position: relative; }
.hero-video {
  aspect-ratio: 4/5; max-height: 560px; margin-left: auto; border-radius: 32px; overflow: hidden; position: relative;
  background: var(--yfg-forest) center/cover no-repeat;
  box-shadow: 0 24px 48px rgba(44,74,62,0.18);
  cursor: pointer; border: 1px solid rgba(44,74,62,0.2);
}
.hero-video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,74,62,0.10) 0%, rgba(44,74,62,0.58) 100%);
  pointer-events: none;
}
.hero-video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 92px; height: 92px; border-radius: 999px;
  background: var(--yfg-yellow); color: var(--yfg-forest);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; z-index: 2;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  transition: all 220ms var(--ease-out);
}
.hero-video:hover .hero-video-play { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 18px 48px rgba(0,0,0,0.35); }
.hero-video-play svg { width: 28px; height: 28px; margin-left: 3px; }
.hero-video-caption {
  position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2;
  color: var(--yfg-cream);
}
.hero-video-caption .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,245,236,0.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(250,245,236,0.24);
  padding: 5px 11px; border-radius: 999px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.hero-video-caption .tag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--yfg-yellow); }
.hero-video-caption h3 {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.15; color: var(--yfg-cream);
  margin: 10px 0 0; text-wrap: balance;
}
.hero-video-length {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  background: rgba(26,23,19,0.72); backdrop-filter: blur(8px);
  color: var(--yfg-cream); padding: 6px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; font-variant-numeric: tabular-nums;
}
.hero-sticker {
  position: absolute; top: -18px; right: -18px;
  background: var(--yfg-forest); color: var(--yfg-cream);
  font-family: var(--font-accent); font-style: italic; font-size: 17px;
  padding: 22px 18px; border-radius: 999px;
  width: 108px; height: 108px; display: flex; align-items: center; justify-content: center; text-align: center;
  line-height: 1.1; box-shadow: 0 12px 24px rgba(44,74,62,0.22);
  transform: rotate(-8deg); z-index: 3;
}
.hero-sticker strong { font-family: var(--font-display); font-style: normal; font-weight: 900; font-size: 22px; display: block; }

/* Countdown */
.countdown-strip {
  background: var(--yfg-cream-deep); border-top: 1px solid var(--yfg-rule); border-bottom: 1px solid var(--yfg-rule);
  padding: 22px 32px;
}
.countdown-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  text-align: center;
}
.countdown-label { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yfg-forest-soft); font-weight: 600; }
.countdown-label strong { color: var(--yfg-forest); font-weight: 700; }
.countdown-cells { display: grid; grid-template-columns: repeat(4, auto); gap: 8px; }
.cd-cell { background: var(--yfg-bone); border: 1px solid var(--yfg-rule); border-radius: 14px; padding: 12px 16px; min-width: 72px; text-align: center; }
.cd-n { font-family: var(--font-display); font-weight: 900; font-size: 32px; line-height: 1; letter-spacing: -0.02em; color: var(--yfg-forest); font-variant-numeric: tabular-nums; }
.cd-l { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yfg-forest-soft); margin-top: 6px; }

/* ---------- Intro video ---------- */
.video-sec { padding: 56px 0 36px; background: var(--yfg-cream); }
.video-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.video-head .eyebrow { justify-content: center; }
.video-head .h-section { margin-top: 16px; }
.video-frame {
  max-width: 1040px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 32px; overflow: hidden;
  background: var(--yfg-forest);
  position: relative; cursor: pointer;
  box-shadow: 0 30px 60px rgba(44,74,62,0.18);
  border: 1px solid rgba(44,74,62,0.2);
  background-size: cover; background-position: center;
}
.video-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,74,62,0.15) 0%, rgba(44,74,62,0.55) 100%);
  pointer-events: none;
}
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 104px; height: 104px; border-radius: 999px;
  background: var(--yfg-yellow); color: var(--yfg-forest);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; z-index: 2;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transition: all 220ms var(--ease-out);
}
.video-frame:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 18px 48px rgba(0,0,0,0.35); }
.video-play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.video-caption {
  position: absolute; bottom: 28px; left: 28px; z-index: 2;
  color: var(--yfg-cream);
}
.video-caption .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,245,236,0.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(250,245,236,0.24);
  padding: 6px 12px; border-radius: 999px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
}
.video-caption .tag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--yfg-yellow); }
.video-caption h3 {
  font-family: var(--font-accent); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 2vw, 26px); line-height: 1.15; color: var(--yfg-cream);
  margin: 12px 0 0; max-width: 22ch; text-wrap: balance;
}
.video-length {
  position: absolute; top: 28px; right: 28px; z-index: 2;
  background: rgba(26,23,19,0.72); backdrop-filter: blur(8px);
  color: var(--yfg-cream); padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; font-variant-numeric: tabular-nums;
}
.video-placeholder-hint {
  text-align: center; font-size: 12px; color: var(--yfg-forest-soft); margin-top: 16px; letter-spacing: 0.04em;
}
.video-placeholder-hint strong { color: var(--yfg-forest); font-weight: 700; }

/* ---------- Social proof bar ---------- */
.proof-bar {
  padding: 40px 0; border-top: 1px solid var(--yfg-rule); border-bottom: 1px solid var(--yfg-rule);
  background: var(--yfg-cream);
}
.proof-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center;
}
.proof-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yfg-forest-soft); font-weight: 600; max-width: 14ch; line-height: 1.4; }
.proof-logos { display: flex; gap: 44px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.proof-logo { font-family: var(--font-headline); font-weight: 900; font-size: 22px; color: var(--yfg-forest); letter-spacing: -0.01em; opacity: 0.68; }
.proof-logo.serif-italic { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; font-size: 26px; }
.proof-logo.handle { font-family: var(--font-body); font-weight: 600; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- "Does this sound like you" ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.pain-card {
  background: var(--yfg-bone); border: 1px solid var(--yfg-rule); border-radius: 22px;
  padding: 28px 28px 30px; position: relative; transition: all 220ms var(--ease-out);
}
.pain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--yfg-forest-wash); }
.pain-card .quote-mark { font-family: "Instrument Serif", Georgia, serif; font-size: 60px; line-height: 0.4; color: var(--yfg-yellow); display: block; height: 28px; }
.pain-card p { margin: 12px 0 0; font-size: 15px; line-height: 1.55; color: var(--yfg-ink); }
.pain-card p strong { font-weight: 700; color: var(--yfg-forest); }
.pain-endline {
  margin-top: 40px; text-align: center; font-family: var(--font-accent); font-style: italic;
  font-size: clamp(24px, 2.6vw, 34px); color: var(--yfg-forest); line-height: 1.2;
  padding: 32px; border-top: 1px dashed var(--yfg-rule); border-bottom: 1px dashed var(--yfg-rule);
}
.pain-endline .xmark { color: var(--yfg-terracotta); font-family: var(--font-body); font-style: normal; font-weight: 900; margin-right: 8px; }

/* ---------- "But what if" transformation ---------- */
.transform-hero { text-align: center; }
.transform-hero .eyebrow { justify-content: center; }
.transform-list {
  margin: 56px auto 0; max-width: 820px;
  display: grid; grid-template-columns: 1fr; gap: 2px;
  background: var(--yfg-rule); border-radius: 20px; overflow: hidden;
}
.transform-row {
  background: var(--yfg-bone); padding: 24px 28px;
  display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: start;
}
.transform-check {
  width: 36px; height: 36px; border-radius: 999px; background: var(--yfg-yellow); color: var(--yfg-forest);
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px;
  flex-shrink: 0;
}
.transform-row h4 { margin: 0 0 4px; font-family: var(--font-headline); font-weight: 800; font-size: 17px; color: var(--yfg-forest); letter-spacing: -0.005em; }
.transform-row p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--yfg-ink-soft); }

/* ---------- "But what if" transformation — tiled compact ---------- */
.transform-tiles {
  margin: 48px auto 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.transform-tile {
  background: var(--yfg-bone);
  border: 1px solid var(--yfg-rule);
  border-radius: 18px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 200ms var(--ease-out), border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.transform-tile:hover {
  transform: translateY(-2px);
  border-color: var(--yfg-forest);
  box-shadow: 0 12px 28px rgba(44,74,62,0.10);
}
.transform-tile-head { display: none; }
.transform-tile-n { display: none; }
.transform-tile-check { display: none; }
.transform-tile h4 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.008em;
  color: var(--yfg-forest);
  margin: 0;
  text-wrap: balance;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.transform-tile h4::before {
  content: '';
  display: inline-flex;
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  background: #2d7a4f url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7.5L5.5 11L12 3.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}
.transform-tile p {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--yfg-ink-soft);
  margin: 0 0 0 32px;
}
@media (max-width: 980px) {
  .transform-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .transform-tiles { grid-template-columns: 1fr; }
}

/* ---------- Meet Michelle ---------- */
.section-dark { background: var(--yfg-forest); color: var(--yfg-cream); }
.section-dark .h-section.on-dark { color: var(--yfg-cream); }
.section-dark .h-section.on-dark em { color: var(--yfg-yellow); }
.section-dark p.on-dark { color: rgba(250,245,236,0.82); }
.section-dark p.on-dark em { color: var(--yfg-yellow); font-style: italic; }
.eyebrow.eyebrow-on-dark { color: var(--yfg-yellow); }

.meet-grid {
  display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 64px; align-items: start;
}
.meet-portrait-wrap { }
.meet-portrait-img {
  aspect-ratio: 2/3; width: 100%;
  background: var(--yfg-cream-deep) center/cover no-repeat;
  background-position: center top;
  border: 1px solid rgba(250,245,236,0.08);
}
.meet-body p.on-dark { font-size: 16px; line-height: 1.65; margin: 0 0 18px; max-width: 56ch; }
.meet-body p.on-dark:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .meet-grid { grid-template-columns: 1fr; gap: 32px; }
  .meet-portrait-img { max-width: 360px; }
}

/* ---------- Meet Michelle (legacy) ---------- */
.meet-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(44,74,62,0.88); backdrop-filter: blur(8px);
  color: var(--yfg-cream); padding: 12px 16px; border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
}
.meet-badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--yfg-yellow); }
.meet-badge .text { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; }
.meet-body p { font-size: 16px; line-height: 1.6; margin: 0 0 16px; color: var(--yfg-ink); max-width: 54ch; }
.meet-body p:last-of-type { margin-bottom: 0; }
.meet-signature {
  margin-top: 32px; display: flex; align-items: center; gap: 16px;
  font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-size: 22px; color: var(--yfg-forest);
}
.meet-signature .scribble {
  font-size: 38px; font-weight: 400; letter-spacing: -0.02em;
}
.meet-stats {
  margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--yfg-rule); padding-top: 24px;
}
.meet-stat { padding-right: 18px; }
.meet-stat + .meet-stat { border-left: 1px solid var(--yfg-rule); padding-left: 20px; }
.meet-stat .n { font-family: var(--font-display); font-weight: 900; font-size: clamp(32px, 2.6vw, 44px); line-height: 0.95; letter-spacing: -0.02em; color: var(--yfg-forest); font-variant-numeric: tabular-nums; }
.meet-stat .l { font-size: 12px; color: var(--yfg-forest-soft); margin-top: 6px; line-height: 1.35; max-width: 14ch; }

/* ---------- Curriculum ---------- */
.curr-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-bottom: 56px; }
.curr-head .lede { margin: 20px 0 0; }
.curr-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.week-card {
  background: var(--yfg-bone); border: 1px solid var(--yfg-rule); border-radius: 24px;
  padding: 30px; position: relative; overflow: hidden; transition: all 260ms var(--ease-out);
  min-height: 320px; display: flex; flex-direction: column;
}
.week-card:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(44,74,62,0.14); border-color: var(--yfg-forest-wash); }
.week-card.dark { background: var(--yfg-forest); border-color: var(--yfg-forest-deep); color: var(--yfg-cream); }
.week-card.dark .week-n-big { color: var(--yfg-yellow); opacity: 0.18; }
.week-card.dark .week-title { color: var(--yfg-cream); }
.week-card.dark .week-title em { color: var(--yfg-yellow); }
.week-card.dark .week-outcome { color: rgba(250,245,236,0.82); }
.week-card.dark .week-list li { color: rgba(250,245,236,0.82); border-color: rgba(250,245,236,0.12); }
.week-card.dark .week-list li::before { color: var(--yfg-yellow); }
.week-card.dark .week-meta { color: rgba(250,245,236,0.6); border-color: rgba(250,245,236,0.14); }
.week-n-big {
  position: absolute; right: 20px; top: 10px;
  font-family: var(--font-display); font-weight: 900; font-size: 112px; line-height: 0.85;
  letter-spacing: -0.03em; color: var(--yfg-forest); opacity: 0.08; font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.week-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yfg-forest-soft); }
.week-card.dark .week-kicker { color: var(--yfg-yellow); }
.week-title { font-family: var(--font-headline); font-weight: 800; font-size: 22px; line-height: 1.15; letter-spacing: -0.015em; color: var(--yfg-forest); margin: 12px 0 12px; max-width: 20ch; }
.week-title em { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; }
.week-outcome { font-size: 14px; line-height: 1.55; color: var(--yfg-ink-soft); margin: 0 0 18px; max-width: 38ch; }
.week-list { list-style: none; padding: 0; margin: auto 0 0; border-top: 1px solid var(--yfg-rule); }
.week-list li {
  position: relative; padding: 12px 0 12px 24px; font-size: 14px; line-height: 1.4; color: var(--yfg-ink);
  border-bottom: 1px solid var(--yfg-rule);
}
.week-list li::before { content: "→"; position: absolute; left: 0; top: 12px; color: var(--yfg-forest); font-weight: 700; }
.week-meta { margin-top: 18px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yfg-forest-soft); padding-top: 14px; border-top: 1px solid var(--yfg-rule); display: flex; justify-content: space-between; gap: 12px; }

/* ---------- Outcomes ---------- */
.outcomes-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.outcomes-head .eyebrow { justify-content: center; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.outcome-card {
  background: rgba(250,245,236,0.06); border: 1px solid rgba(250,245,236,0.14); border-radius: 22px;
  padding: 32px 28px; color: var(--yfg-cream);
}
.outcome-card .n { font-family: var(--font-display); font-weight: 900; font-size: 44px; line-height: 0.9; letter-spacing: -0.025em; color: var(--yfg-yellow); font-variant-numeric: tabular-nums; }
.outcome-card h4 { font-family: var(--font-headline); font-weight: 800; font-size: 18px; color: var(--yfg-cream); margin: 16px 0 8px; letter-spacing: -0.005em; }
.outcome-card p { font-size: 14px; line-height: 1.6; color: rgba(250,245,236,0.78); margin: 0; }

/* ---------- Whats included / format ---------- */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.inc-card {
  background: var(--yfg-cream); border: 1px solid var(--yfg-rule); border-radius: 4px;
  padding: 28px 30px; display: flex; gap: 20px; align-items: flex-start;
  transition: all 200ms var(--ease-out);
}
.inc-card:hover { border-color: var(--yfg-forest); transform: translateY(-2px); }
.inc-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 4px;
  background: var(--yfg-forest); color: var(--yfg-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-headline); font-weight: 800; font-size: 22px; line-height: 1;
}
.inc-card-body { flex: 1 1 auto; min-width: 0; }
.inc-card h4 { font-family: var(--font-headline); font-weight: 800; font-size: 18px; color: var(--yfg-forest); margin: 2px 0 8px; letter-spacing: -0.005em; line-height: 1.3; }
.inc-card p { font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: var(--yfg-forest-soft); margin: 0; }
/* Coloured icon tones for Included tiles */
.inc-icon-forest { background: var(--yfg-forest); color: var(--yfg-yellow); }
.inc-icon-terracotta { background: var(--yfg-terracotta); color: var(--yfg-cream); }
.inc-icon-gold { background: var(--yfg-gold); color: var(--yfg-cream); }
.inc-icon-yellow { background: var(--yfg-yellow); color: var(--yfg-forest); }
.inc-icon svg { display: block; }
@media (max-width: 760px) { .included-grid { grid-template-columns: 1fr; } }

/* ---------- Who it's for / not for ---------- */
.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fit-card {
  background: var(--yfg-bone); border: 1px solid var(--yfg-rule); border-radius: 26px;
  padding: 40px 36px;
}
.fit-card.yes { background: var(--yfg-forest-wash); border-color: var(--yfg-forest); }
.fit-card h3 { font-family: var(--font-headline); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; color: var(--yfg-forest); margin: 0 0 20px; display: flex; align-items: center; gap: 12px; }
.fit-card h3 .tag {
  font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.fit-card.yes h3 .tag { background: var(--yfg-forest); color: var(--yfg-cream); }
.fit-card.no h3 .tag { background: var(--yfg-terracotta); color: var(--yfg-cream); }
.fit-list { list-style: none; padding: 0; margin: 0; }
.fit-list li {
  font-size: 15px; line-height: 1.55; color: var(--yfg-ink); padding: 14px 0 14px 34px; position: relative;
  border-bottom: 1px solid var(--yfg-rule);
}
.fit-list li strong { display: block; font-size: 15px; font-weight: 800; margin-bottom: 3px; color: var(--yfg-forest); }
.fit-list li span { font-weight: 500; color: var(--yfg-ink-soft); }
.fit-list li:last-child { border-bottom: none; }
.fit-card.yes .fit-list li { border-color: rgba(44,74,62,0.15); }
.fit-list li::before {
  position: absolute; left: 0; top: 13px; width: 22px; height: 22px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900;
}
.fit-card.yes .fit-list li::before { content: "✓"; background: var(--yfg-forest); color: var(--yfg-cream); }
.fit-card.no .fit-list li::before { content: "×"; background: var(--yfg-terracotta); color: var(--yfg-cream); }

/* ---------- Testimonials ---------- */
.testimonial-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.testimonial-head .eyebrow { justify-content: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--yfg-bone); border: 1px solid var(--yfg-rule); border-radius: 24px;
  padding: 32px 30px; display: flex; flex-direction: column; gap: 20px;
}
.testimonial.featured { background: var(--yfg-forest); color: var(--yfg-cream); border-color: var(--yfg-forest-deep); grid-row: span 1; }
.testimonial.featured .t-body { color: var(--yfg-cream); }
.testimonial.featured .t-who .name { color: var(--yfg-cream); }
.testimonial.featured .t-who .handle { color: rgba(250,245,236,0.6); }
.testimonial .t-mark { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-size: 46px; line-height: 0.4; color: var(--yfg-yellow); height: 20px; }
.testimonial .t-body { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--yfg-ink); flex: 1; margin: 0; text-wrap: pretty; }
.testimonial .t-body em { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-size: 18px; color: var(--yfg-forest); font-weight: 400; }
.testimonial.featured .t-body em { color: var(--yfg-yellow); }
.testimonial .t-who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--yfg-rule); }
.testimonial.featured .t-who { border-color: rgba(250,245,236,0.14); }
.testimonial .t-avatar { width: 40px; height: 40px; border-radius: 999px; background: var(--yfg-cream-deep); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-headline); font-weight: 800; font-size: 14px; color: var(--yfg-forest); }
.testimonial.featured .t-avatar { background: var(--yfg-yellow); color: var(--yfg-forest); }
.testimonial .t-who .name { font-weight: 700; font-size: 14px; color: var(--yfg-forest); line-height: 1.2; }
.testimonial .t-who .handle { font-size: 12px; color: var(--yfg-forest-soft); margin-top: 2px; }

/* ---------- Pullquote ---------- */
.pullquote-sec { padding: 88px 0; background: var(--yfg-cream-deep); text-align: center; }
.pullquote-inner { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.pullquote-mark { font-family: "Instrument Serif", Georgia, serif; font-size: 120px; line-height: 0.5; color: var(--yfg-yellow); display: block; height: 40px; }
.pullquote-text {
  font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.2vw, 44px); line-height: 1.15; letter-spacing: -0.005em;
  color: var(--yfg-forest); margin: 20px 0 28px; text-wrap: balance;
}
.pullquote-text em { font-style: normal; font-family: var(--font-headline); font-weight: 900; }
.pullquote-attr { font-size: 14px; color: var(--yfg-forest-soft); letter-spacing: 0.04em; }
.pullquote-attr .sep { margin: 0 6px; opacity: 0.5; }

/* ---------- Pricing ---------- */
.pricing-head { text-align: center; max-width: 720px; margin: 0 auto 20px; }
.pricing-head .eyebrow { justify-content: center; }
.pricing-card-outer {
  max-width: 880px; margin: 0 auto;
  background: var(--yfg-bone); border: 1px solid var(--yfg-rule); border-radius: 36px;
  padding: 28px 48px 48px; box-shadow: 0 30px 60px rgba(44,74,62,0.12);
  position: relative; overflow: hidden;
}
.pricing-badge {
  position: absolute; top: 20px; right: 20px;
  background: #c94a4a; color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
}
.pricing-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.pricing-title { font-family: var(--font-headline); font-weight: 800; font-size: clamp(24px, 2.4vw, 30px); line-height: 1.1; letter-spacing: -0.015em; color: var(--yfg-forest); margin: 0 0 10px; }
.pricing-title em { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; }
.pricing-list { list-style: none; padding: 0; margin: 20px 0 0; }
.pricing-list li { font-size: 14px; line-height: 1.55; color: var(--yfg-ink); padding: 7px 0 7px 26px; position: relative; }
.pricing-list li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 18px; height: 18px; border-radius: 999px; background: var(--yfg-forest); color: var(--yfg-cream); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 900; }
.price-chip { background: var(--yfg-yellow); padding: 4px 10px; border-radius: 6px; color: var(--yfg-forest); font-weight: 700; font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-size: 14px; letter-spacing: 0.02em; margin-right: 8px; }
.price-box { background: var(--yfg-cream-deep); border-radius: 22px; padding: 32px; text-align: center; }
.price-old { font-family: var(--font-body); font-size: 15px; color: var(--yfg-forest-soft); text-decoration: line-through; margin-bottom: 4px; }
.price-now { font-family: var(--font-display); font-weight: 900; font-size: 56px; line-height: 1; letter-spacing: -0.03em; color: var(--yfg-forest); font-variant-numeric: tabular-nums; }
.price-now .currency { font-size: 32px; vertical-align: top; line-height: 1.4; font-weight: 700; margin-right: 4px; }
.price-label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yfg-forest-soft); margin-top: 8px; font-weight: 600; }
.price-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.price-cta .btn { width: 100%; justify-content: center; }
.price-terms { font-size: 12px; color: var(--yfg-forest-soft); line-height: 1.5; margin-top: 8px; }
.price-terms strong { color: var(--yfg-forest); }

/* ---------- FAQ ---------- */
.faq-head { margin: 0 auto 48px; max-width: 720px; }
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--yfg-rule); }
.faq-item { border-bottom: 1px solid var(--yfg-rule); }
.faq-q {
  width: 100%; display: flex; justify-content: flex-start; align-items: center; gap: 16px;
  padding: 22px 0; background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-headline); font-weight: 700; font-size: 16px; color: var(--yfg-forest);
  letter-spacing: -0.005em; transition: color 180ms var(--ease-out);
}
.faq-q:hover { color: var(--yfg-forest-deep); }
.faq-q .plus { width: 32px; height: 32px; border-radius: 999px; background: var(--yfg-forest-wash); color: var(--yfg-forest); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; transition: all 220ms var(--ease-out); }
.faq-item.open .faq-q .plus { background: var(--yfg-yellow); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease-out); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 0 22px; font-size: 14px; line-height: 1.65; color: var(--yfg-ink); max-width: 68ch; }
.faq-a-inner p { margin: 0 0 10px; }

/* ---------- Final CTA banner ---------- */
.final-cta {
  background: var(--yfg-forest); color: var(--yfg-cream); padding: 80px 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px;
  background: var(--yfg-yellow); border-radius: 999px; opacity: 0.14; pointer-events: none;
}
.final-cta .wrap { position: relative; }
.final-cta-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.final-cta .h-section { color: var(--yfg-cream); }
.final-cta .h-section em { color: var(--yfg-yellow); }
.final-cta .lede { color: rgba(250,245,236,0.82); margin-top: 24px; max-width: 52ch; }
.final-cta-form { background: rgba(250,245,236,0.06); border: 1px solid rgba(250,245,236,0.14); border-radius: 28px; padding: 36px; }
.final-cta-form h4 { font-family: var(--font-headline); font-weight: 800; font-size: 22px; color: var(--yfg-cream); margin: 0 0 8px; letter-spacing: -0.01em; }
.final-cta-form p { font-size: 14px; color: rgba(250,245,236,0.72); margin: 0 0 24px; line-height: 1.5; }
.form-row { display: flex; gap: 10px; margin-bottom: 10px; }
.inp { font-family: var(--font-body); font-size: 15px; padding: 14px 18px; border-radius: 999px; border: 1.5px solid rgba(250,245,236,0.32); background: rgba(250,245,236,0.06); color: var(--yfg-cream); outline: none; flex: 1; transition: all 180ms var(--ease-out); }
.inp::placeholder { color: rgba(250,245,236,0.5); }
.inp:focus { border-color: var(--yfg-yellow); background: rgba(250,245,236,0.12); box-shadow: 0 0 0 4px rgba(255,239,3,0.14); }
.form-fine { font-size: 12px; color: rgba(250,245,236,0.6); margin-top: 12px; line-height: 1.5; }
.final-thanks { display: flex; align-items: center; gap: 16px; padding: 28px; border-radius: 22px; background: rgba(250,245,236,0.08); border: 1px solid rgba(250,245,236,0.18); }
.final-thanks .check { background: var(--yfg-yellow); color: var(--yfg-forest); width: 48px; height: 48px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; flex-shrink: 0; }
.final-thanks strong { display: block; font-family: var(--font-headline); font-size: 18px; color: var(--yfg-cream); }
.final-thanks span { font-size: 14px; color: rgba(250,245,236,0.72); }

/* ---------- Disclaimer + Footer ---------- */
.disclaimer {
  background: var(--yfg-cream); padding: 48px 0; border-top: 1px solid var(--yfg-rule);
}
.disclaimer-inner { max-width: 880px; margin: 0 auto; padding: 0 32px; font-size: 12px; line-height: 1.6; color: var(--yfg-forest-soft); }
.disclaimer-inner strong { color: var(--yfg-forest); font-weight: 700; }

.site-footer { background: var(--yfg-cream); padding: 32px 0 48px; border-top: 1px solid var(--yfg-rule); }
.site-footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer-inner a { color: var(--yfg-forest); text-decoration: none; font-size: 13px; }
.site-footer-inner a:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--yfg-yellow); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-copyright { font-size: 13px; color: var(--yfg-forest-soft); }

/* ---------- Compact Pain (transition) ---------- */
.section-compact { padding-top: 56px; padding-bottom: 40px; }
.pain-strip {
  max-width: 1080px; margin: 0 auto;
  border-top: 1px solid var(--yfg-rule); border-bottom: 1px solid var(--yfg-rule);
  padding: 36px 0;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr); gap: 48px; align-items: center;
}
.pain-strip-kicker {
  display: inline-block; font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--yfg-terracotta);
  margin-bottom: 14px;
}
.pain-strip-title {
  font-family: var(--font-headline); font-weight: 800; font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15; letter-spacing: -0.015em; color: var(--yfg-forest); margin: 0;
  text-wrap: balance;
}
.pain-strip-title em {
  font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400;
  color: var(--yfg-forest-soft);
}
.pain-strip-row { display: flex; flex-direction: column; gap: 14px; }
.pain-signal { display: flex; gap: 16px; align-items: flex-start; }
.pain-signal-n {
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  color: var(--yfg-terracotta); letter-spacing: 0.04em;
  flex: 0 0 auto; padding-top: 3px; font-variant-numeric: tabular-nums;
}
.pain-signal-t { font-family: var(--font-headline); font-weight: 700; font-size: 15px; color: var(--yfg-forest); letter-spacing: -0.005em; }
.pain-signal-b { font-family: var(--font-body); font-size: 14px; color: var(--yfg-forest-soft); line-height: 1.5; margin-top: 2px; }
@media (max-width: 820px) {
  .pain-strip { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Testimonials ---------- */
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.testimonial.quote-only {
  background: var(--yfg-cream);
  border: 1px solid var(--yfg-rule);
  border-radius: 4px;
  padding: 28px 26px;
}
.testimonial.quote-only .t-body {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--yfg-forest);
  letter-spacing: -0.005em;
}
.testimonial.quote-only .t-body em { font-style: italic; }
@media (max-width: 880px) {
  .testimonial-grid-3 { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Free Resources (override: 2-card + more) ---------- */
.faq-groups { max-width: 880px; margin: 0 auto; }
.faq-group + .faq-group { margin-top: 44px; }
.faq-group-label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--yfg-forest-soft); margin: 0 0 4px;
}
.faq-group .faq-list { margin: 0; max-width: none; }
.fr-grid.fr-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; } { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.fr-grid-2 .fr-card {
  background: var(--yfg-cream); border: 1px solid var(--yfg-rule); border-radius: 4px;
  padding: 40px 40px 32px; position: relative; display: flex; flex-direction: column; gap: 18px;
  transition: all 220ms var(--ease-out);
}
.fr-grid-2 .fr-card:hover { border-color: var(--yfg-forest); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(44,74,62,0.10); }
.fr-kicker {
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--yfg-forest-soft);
}
.fr-grid-2 .fr-title {
  font-family: var(--font-headline); font-weight: 800; font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2; letter-spacing: -0.01em; color: var(--yfg-forest); margin: 0;
}
.fr-grid-2 .fr-body { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--yfg-ink-soft); margin: 0; }
.fr-ticks { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 9px; }
.fr-ticks li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; line-height: 1.5; color: var(--yfg-ink-soft); }
.fr-ticks li::before { content: '✓'; color: #2d7a4f; font-weight: 800; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.fr-foot-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--yfg-rule); margin-top: auto; flex-wrap: wrap; }
.fr-tag { font-size: 12px; color: var(--yfg-forest-soft); letter-spacing: 0.02em; font-weight: 500; }
.fr-grid-2 .fr-badge {
  background: var(--yfg-yellow); color: var(--yfg-forest);
  font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 4px;
}
.fr-more {
  max-width: 780px; margin: 36px auto 0; text-align: center;
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.65; color: var(--yfg-forest-soft);
}
.fr-more strong { color: var(--yfg-forest); font-weight: 700; }
.fr-more-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 999px; background: var(--yfg-forest);
  color: var(--yfg-yellow); font-weight: 800; font-size: 14px; margin-right: 8px; vertical-align: middle;
}
@media (max-width: 760px) { .fr-grid.fr-grid-2 { grid-template-columns: 1fr; } }

/* ---------- Tweaks panel ---------- */
.tweaks {
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  background: var(--yfg-bone); border: 1px solid var(--yfg-rule); border-radius: 20px;
  padding: 20px; width: 290px; box-shadow: 0 24px 48px rgba(44,74,62,0.16);
  font-family: var(--font-body);
}
.tweaks h5 { margin: 0 0 16px; font-family: var(--font-headline); font-weight: 800; font-size: 15px; color: var(--yfg-forest); letter-spacing: 0.01em; display: flex; align-items: center; gap: 8px; }
.tweaks h5::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--yfg-yellow); }
.tweaks .group { margin-bottom: 16px; }
.tweaks .group-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yfg-forest-soft); margin-bottom: 8px; font-weight: 600; }
.tweaks .seg { display: flex; gap: 4px; padding: 3px; background: var(--yfg-cream-deep); border-radius: 999px; }
.tweaks .seg button { flex: 1; font-size: 12px; font-weight: 600; padding: 7px 10px; border: none; background: transparent; color: var(--yfg-forest-soft); cursor: pointer; border-radius: 999px; transition: all 180ms var(--ease-out); white-space: nowrap; }
.tweaks .seg button.active { background: var(--yfg-forest); color: var(--yfg-cream); }
.tweaks .seg button:not(.active):hover { color: var(--yfg-forest); }

/* ---------- Hero stats row (matches No Background style) ---------- */
.hero-stats {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 0; margin-top: 36px; flex-wrap: wrap;
}
.hs-stat { padding: 0 36px; text-align: center; position: relative; }
.hs-stat:first-child { padding-left: 0; }
.hs-stat + .hs-stat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 44px; background: var(--yfg-rule);
}
.hs-stat .n {
  font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400;
  font-size: 40px; line-height: 1; letter-spacing: -0.01em; color: var(--yfg-gold);
  font-variant-numeric: tabular-nums;
}
.hs-stat .n .unit { font-size: 0.6em; font-style: italic; margin-left: 1px; }
.hs-stat .l {
  margin-top: 10px; font-family: var(--font-body); font-size: 12px;
  color: var(--yfg-forest-soft); letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .hs-stat { padding: 12px 18px; }
  .hs-stat:first-child { padding-left: 18px; }
  .hs-stat + .hs-stat::before { display: none; }
}

/* ---------- Rulebook (Who this is for) ---------- */
.section-rulebook { background: var(--yfg-cream-deep); }
.rulebook-head { max-width: 820px; margin: 0 0 56px; }
.rulebook-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.rb-card {
  background: var(--yfg-cream); border: 1px solid var(--yfg-rule);
  border-radius: 4px; padding: 28px 30px; display: flex; gap: 20px;
  align-items: flex-start; transition: all 200ms var(--ease-out);
}
.rb-card:hover { border-color: var(--yfg-forest); transform: translateY(-2px); }
.rb-icon {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 4px;
  background: var(--yfg-forest); color: var(--yfg-yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1; font-family: var(--font-headline);
}
.rb-body h4 {
  font-family: var(--font-headline); font-weight: 800; font-size: 18px;
  line-height: 1.3; color: var(--yfg-forest); margin: 2px 0 8px;
  letter-spacing: -0.005em;
}
.rb-body p {
  font-family: var(--font-body); font-size: 14.5px; line-height: 1.55;
  color: var(--yfg-forest-soft); margin: 0;
}
@media (max-width: 760px) {
  .rulebook-grid { grid-template-columns: 1fr; }
}

/* ---------- No Background Needed ---------- */
.no-bg { text-align: center; }
.no-bg-head { max-width: 820px; margin: 0 auto; }
.no-bg-stats {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-top: 48px; flex-wrap: wrap;
}
.nb-stat { padding: 0 44px; text-align: center; position: relative; }
.nb-stat + .nb-stat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 48px; background: var(--yfg-rule);
}
.nb-stat .n {
  font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400;
  font-size: 54px; line-height: 1; letter-spacing: -0.01em; color: var(--yfg-forest);
  font-variant-numeric: tabular-nums;
}
.nb-stat .n .unit { font-size: 0.55em; font-style: italic; margin-left: 2px; }
.nb-stat .l {
  margin-top: 12px; font-family: var(--font-body); font-size: 13px;
  color: var(--yfg-forest-soft); letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .nb-stat { padding: 16px 24px; }
  .nb-stat + .nb-stat::before { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner, .meet-grid, .curr-head, .final-cta-grid, .pricing-grid, .proof-inner { grid-template-columns: 1fr; gap: 32px; }
  .pain-grid, .curr-grid, .fit-grid { grid-template-columns: 1fr; }
  .outcomes-grid, .included-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .meet-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .meet-stat + .meet-stat { border-left: none; padding-left: 0; }
  .site-nav a:not(.btn) { display: none; }
  .section { padding: 56px 0; }
}
@media (max-width: 640px) {
  .outcomes-grid, .included-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .week-card { padding: 28px 22px; }
  .pricing-card-outer { padding: 32px 24px; }
  .tweaks { right: 12px; bottom: 12px; left: 12px; width: auto; }
  .hero { padding: 48px 0 32px; }
}
