/*
 * FundGen — marketing website (fundgen.ai)
 *
 * Editorial-warm, per the brand book + .impeccable.md:
 * cream surfaces, charcoal text, pink as a RARE signature accent.
 * Instrument Serif (display) + Satoshi (UI) + Inter (dense labels),
 * with Noto Hebrew pairs. RTL-ready via logical properties — the same
 * stylesheet serves /he/ pages (dir="rtl" on <html>).
 *
 * Scoped under .fgw (FundGen website). Reference implementations this
 * system is ported from: wall/shared.css + client_landing_page pricing.css.
 */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600&family=Noto+Serif+Hebrew:wght@400;500&family=Noto+Sans+Hebrew:wght@400;500;700;900&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap");

.fgw {
  /* signature */
  --pink: #ff1b6b;
  --pink-hot: #ff2d78;
  --pink-red: #ff4d5e;
  --pink-grad: linear-gradient(135deg, #ff2d78 0%, #ff4d5e 100%);
  --pink-text: #c9134f; /* darker pink for small text — contrast on cream */

  /* surfaces — warm cream, never stark white */
  --cream: #f5efe6;
  --cream-warm: #faf5ec;
  --paper: #fbf8f2;

  /* ink — never #000 */
  --charcoal: #1f1f1f;
  --charcoal-soft: #4a4540;
  --taupe-300: #c7b8ab;
  --taupe-500: #9c8c7e;

  /* hairlines */
  --line: rgba(31, 31, 31, 0.12);
  --line-strong: rgba(31, 31, 31, 0.22);

  /* data-viz accents only — never CTAs */
  --accent-yellow: #ffd60a;
  --accent-lime: #c6f432;
  --accent-cyan: #1fb6ff;

  --font-display: "Instrument Serif", "Noto Serif Hebrew", Georgia, serif;
  --font-ui: "Satoshi", "Noto Sans Hebrew", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "Inter", "Noto Sans Hebrew", system-ui, sans-serif;

  --shell: 1120px;
  --shell-narrow: 880px;

  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.fgw *, .fgw *::before, .fgw *::after { box-sizing: border-box; }
.fgw ::selection { background: var(--pink); color: #fff; }
.fgw img { max-width: 100%; }
.fgw a { color: inherit; }

/* ── shells ─────────────────────────────────────────────────────────────── */
.fgw-shell { max-width: var(--shell); margin: 0 auto; padding: 0 24px; }
.fgw-shell--narrow { max-width: var(--shell-narrow); }

/* ── top bar ────────────────────────────────────────────────────────────── */
.fgw-top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 230, 0.86);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.fgw-top-row {
  max-width: var(--shell); margin: 0 auto; padding: 0.85rem 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.fgw-logo { display: inline-flex; align-items: center; text-decoration: none; }
.fgw-logo img { height: 26px; width: auto; display: block; }
.fgw-nav { display: flex; align-items: center; gap: 1.5rem; }
.fgw-nav a {
  text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--charcoal-soft);
  transition: color 0.15s ease;
}
.fgw-nav a:hover { color: var(--charcoal); }
.fgw-nav a.is-active { color: var(--charcoal); font-weight: 700; }
.fgw-lang {
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 600;
  color: var(--taupe-500); text-decoration: none; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 0.3rem 0.7rem; transition: color .15s ease, border-color .15s ease;
}
.fgw-lang:hover { color: var(--charcoal); border-color: var(--charcoal); }
@media (max-width: 880px) { .fgw-nav { display: none; } }

/* ── buttons ────────────────────────────────────────────────────────────── */
.fgw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-ui); font-weight: 700; font-size: 0.98rem; line-height: 1;
  padding: 0.95rem 1.7rem; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color .2s ease;
}
/* variant selectors carry .fgw prefix so they outrank `.fgw a { color: inherit }` */
.fgw .fgw-btn--pink {
  background: var(--pink-grad); color: #fff;
  box-shadow: 0 8px 22px -10px rgba(255, 45, 120, 0.7);
}
.fgw .fgw-btn--pink:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -10px rgba(255, 45, 120, 0.8); }
.fgw .fgw-btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line-strong); }
.fgw .fgw-btn--ghost:hover { background: var(--paper); border-color: var(--charcoal); }
.fgw .fgw-btn--charcoal { background: var(--charcoal); color: var(--cream); }
.fgw .fgw-btn--charcoal:hover { transform: translateY(-1px); }
.fgw-btn--sm { padding: 0.62rem 1.15rem; font-size: 0.9rem; }
.fgw-btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }

/* ── typography primitives ──────────────────────────────────────────────── */
.fgw-eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600; color: var(--pink-text); margin: 0 0 1.1rem;
}
.fgw-eyebrow--quiet { color: var(--taupe-500); }
.fgw-display {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.9rem, 6.4vw, 5.2rem); line-height: 1.02; letter-spacing: -0.01em;
  color: var(--charcoal); margin: 0 0 1.4rem;
}
.fgw-display em {
  font-style: italic;
  background: var(--pink-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-inline-end: 0.04em; /* italic overhang clip guard */
}
.fgw-h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; color: var(--charcoal); margin: 0 0 0.9rem;
}
.fgw-h2 em { font-style: italic; color: var(--pink); -webkit-text-fill-color: currentColor; }
.fgw-h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.55rem; line-height: 1.15; margin: 0 0 0.5rem; }
.fgw-lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--charcoal-soft); max-width: 44rem; margin: 0; }
.fgw-center { text-align: center; }
.fgw-center .fgw-lead { margin-inline: auto; }

/* ── hero ───────────────────────────────────────────────────────────────── */
.fgw-hero { padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.fgw-hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2.2rem; }
.fgw-hero-note { font-size: 0.88rem; color: var(--taupe-500); margin-top: 1.1rem; }

/* ── live-proof marquee strip ───────────────────────────────────────────── */
.fgw-marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 0.85rem 0; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.fgw-marquee-track { display: flex; width: max-content; animation: fgw-marquee 46s linear infinite; }
.fgw-marquee:hover .fgw-marquee-track { animation-play-state: paused; }
@keyframes fgw-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
[dir="rtl"] .fgw-marquee-track { animation-name: fgw-marquee-rtl; }
@keyframes fgw-marquee-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
.fgw-marquee-seg { display: flex; flex-shrink: 0; }
.fgw-marquee-item {
  display: inline-flex; align-items: baseline; gap: 0.45rem; white-space: nowrap;
  padding: 0 1.6rem; font-size: 0.92rem; color: var(--charcoal-soft);
}
.fgw-marquee-item b { font-weight: 700; color: var(--charcoal); }
.fgw-marquee-item .amt { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: var(--charcoal); }
.fgw-marquee-dot { align-self: center; width: 4px; height: 4px; border-radius: 999px; background: var(--taupe-300); flex-shrink: 0; }

/* live pulse dot */
.fgw-live { position: relative; display: inline-block; width: 8px; height: 8px; border-radius: 999px; background: var(--pink); align-self: center; }
.fgw-live::after {
  content: ""; position: absolute; inset: -4px; border-radius: 999px;
  border: 1px solid var(--pink); animation: fgw-pulse 2s ease-out infinite;
}
@keyframes fgw-pulse { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

/* ── sections ───────────────────────────────────────────────────────────── */
.fgw-section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.fgw-section--rule { border-top: 1px solid var(--line); }
.fgw-section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.fgw-section-head--center { margin-inline: auto; text-align: center; }

/* ── stat band (serif italic numbers — the signature move) ──────────────── */
.fgw-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
@media (max-width: 880px) { .fgw-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.fgw-stat { border-top: 1px solid var(--line-strong); padding-top: 1.1rem; }
.fgw-stat-num {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 3.9rem); line-height: 0.95; color: var(--charcoal);
  font-variant-numeric: tabular-nums;
}
.fgw-stat-num sup { font-family: var(--font-ui); font-style: normal; font-size: 0.42em; font-weight: 700; vertical-align: super; }
.fgw-stat-label { font-size: 0.9rem; color: var(--taupe-500); margin-top: 0.45rem; }

/* giant gradient figure (pricing-style big number) */
.fgw-giant {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(4rem, 11vw, 6.8rem); line-height: 0.9;
  background: var(--pink-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ── product feature (asymmetric editorial split) ───────────────────────── */
.fgw-product { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.fgw-product--flip { grid-template-columns: 7fr 5fr; }
@media (max-width: 880px) { .fgw-product, .fgw-product--flip { grid-template-columns: 1fr; } }
.fgw-product-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream);
  background: var(--charcoal); border-radius: 999px; padding: 0.32rem 0.85rem; margin-bottom: 1.2rem;
}
.fgw-feat-list { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.fgw-feat {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.85rem 0; border-top: 1px solid var(--line);
}
.fgw-feat:first-child { border-top: none; padding-top: 0; }
.fgw-feat-tick { flex-shrink: 0; width: 1.05rem; height: 1.05rem; margin-top: 0.28rem; color: var(--pink); }
.fgw-feat-title { font-weight: 700; display: block; }
.fgw-feat-desc { display: block; font-size: 0.92rem; color: var(--charcoal-soft); margin-top: 0.1rem; }

/* ── cards ──────────────────────────────────────────────────────────────── */
.fgw-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 1.8rem 1.6rem;
}
.fgw-card--dark {
  background: var(--charcoal); color: var(--cream); border-color: var(--charcoal);
  box-shadow: 0 30px 60px -28px rgba(31, 31, 31, 0.55);
}
.fgw-card--dark .fgw-h3 { color: var(--cream); }
.fgw-card--dark .fgw-feat { border-top-color: rgba(245, 239, 230, 0.14); }
.fgw-card--dark .fgw-feat-desc { color: var(--taupe-300); }

/* ── quote wall (testimonials — editorial, no carousels) ────────────────── */
.fgw-quotes { column-count: 3; column-gap: 1.4rem; }
@media (max-width: 1000px) { .fgw-quotes { column-count: 2; } }
@media (max-width: 680px) { .fgw-quotes { column-count: 1; } }
.fgw-quote {
  break-inside: avoid; background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 1.5rem 1.4rem; margin-bottom: 1.4rem;
}
.fgw-quote-text { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.32; margin: 0 0 1.1rem; }
.fgw-quote-text::before { content: "“"; color: var(--pink); }
.fgw-quote-text::after { content: "”"; color: var(--pink); }
[dir="rtl"] .fgw-quote-text::before { content: "„"; }
[dir="rtl"] .fgw-quote-text::after { content: "”"; }
.fgw-quote-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 0.8rem; }
.fgw-quote-who { font-size: 0.86rem; color: var(--charcoal-soft); }
.fgw-quote-who b { display: block; color: var(--charcoal); font-size: 0.92rem; }
.fgw-quote-amt { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--charcoal); white-space: nowrap; }

/* ── how-it-works steps ─────────────────────────────────────────────────── */
.fgw-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; counter-reset: fgwstep; }
@media (max-width: 880px) { .fgw-steps { grid-template-columns: 1fr; } }
.fgw-step { border-top: 1px solid var(--line-strong); padding-top: 1.2rem; counter-increment: fgwstep; }
.fgw-step::before {
  content: "0" counter(fgwstep);
  font-family: var(--font-display); font-style: italic; font-size: 2.2rem; color: var(--taupe-300);
  display: block; line-height: 1; margin-bottom: 0.7rem;
}
.fgw-step h3 { font-family: var(--font-ui); font-weight: 700; font-size: 1.05rem; margin: 0 0 0.35rem; }
.fgw-step p { margin: 0; font-size: 0.94rem; color: var(--charcoal-soft); }

/* ── strategist band (the one dark cinematic strip per page) ────────────── */
.fgw-band {
  background: var(--charcoal); color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.fgw-band .fgw-h2, .fgw-band .fgw-display { color: var(--cream); }
.fgw-band .fgw-lead { color: var(--taupe-300); }
.fgw-band .fgw-eyebrow { color: var(--pink); }
.fgw-band-cols { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; margin-top: 2.6rem; }
@media (max-width: 880px) { .fgw-band-cols { grid-template-columns: 1fr; } }
.fgw-band-col { border-top: 1px solid rgba(245,239,230,0.18); padding-top: 1.1rem; }
.fgw-band-col h3 { font-family: var(--font-ui); font-weight: 700; font-size: 1rem; margin: 0 0 0.4rem; color: var(--cream); }
.fgw-band-col p { margin: 0; font-size: 0.93rem; color: var(--taupe-300); }

/* ── pricing summary cards ──────────────────────────────────────────────── */
.fgw-price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: stretch; }
@media (max-width: 880px) { .fgw-price-grid { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; } }
.fgw-price-card { position: relative; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 1.9rem 1.6rem; }
.fgw-price-card--feature { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); box-shadow: 0 30px 60px -28px rgba(31,31,31,0.55); }
.fgw-price-flag {
  position: absolute; top: -11px; inset-inline-start: 1.6rem;
  background: var(--pink-grad); color: #fff; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(255, 45, 120, 0.8);
}
.fgw-price-name { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; margin: 0 0 0.3rem; }
.fgw-price-who { font-size: 0.9rem; color: var(--taupe-500); margin: 0 0 1.15rem; }
.fgw-price-card--feature .fgw-price-who { color: var(--taupe-300); }
.fgw-price-fig { font-family: var(--font-display); font-size: 2.9rem; line-height: 1; display: flex; align-items: baseline; gap: 0.35rem; }
.fgw-price-unit { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 500; color: var(--taupe-500); }
.fgw-price-card--feature .fgw-price-unit { color: var(--taupe-300); }
.fgw-price-feats { list-style: none; margin: 1.2rem 0 1.4rem; padding: 0; flex: 1; }
.fgw-price-feats li { padding: 0.5rem 0; border-top: 1px solid var(--line); font-size: 0.93rem; }
.fgw-price-feats li:first-child { border-top: none; }
.fgw-price-card--feature .fgw-price-feats li { border-top-color: rgba(245,239,230,0.14); }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.fgw-faq { max-width: var(--shell-narrow); margin: 0 auto; }
.fgw-faq details { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.fgw-faq details:last-child { border-bottom: 1px solid var(--line); }
.fgw-faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  font-weight: 700; font-size: 1.02rem;
}
.fgw-faq summary::-webkit-details-marker { display: none; }
.fgw-faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.4rem; color: var(--pink); line-height: 1; }
.fgw-faq details[open] summary::after { content: "–"; }
.fgw-faq details p { margin: 0.7rem 0 0; color: var(--charcoal-soft); font-size: 0.96rem; max-width: 46rem; }

/* ── closing CTA ────────────────────────────────────────────────────────── */
.fgw-closing { text-align: center; padding: clamp(4rem, 8vw, 6.5rem) 0; }
.fgw-closing-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ── footer ─────────────────────────────────────────────────────────────── */
.fgw-footer { border-top: 1px solid var(--line); padding: 2.6rem 0 3rem; }
.fgw-footer-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap; }
.fgw-footer-brand img { height: 22px; width: auto; }
.fgw-footer-tag { font-size: 0.85rem; color: var(--taupe-500); margin-top: 0.6rem; }
.fgw-footer-nav { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.fgw-footer-col h4 {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--taupe-500); margin: 0 0 0.7rem;
}
.fgw-footer-col a { display: block; text-decoration: none; font-size: 0.92rem; color: var(--charcoal-soft); padding: 0.18rem 0; }
.fgw-footer-col a:hover { color: var(--charcoal); }
.fgw-footer-legal { font-size: 0.8rem; color: var(--taupe-500); margin-top: 2.2rem; }

/* ── motion policy ──────────────────────────────────────────────────────────
 * Editorial restraint: content never hides behind scroll animations.
 * The only motion on the site is the results marquee and the live pulse
 * dot — both pause for reduced-motion users. (.fgw-reveal is a no-op
 * kept in markup for future taste.) */
@media (prefers-reduced-motion: reduce) {
  .fgw-marquee-track { animation: none; }
  .fgw-live::after { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
 * .fgm- — LIVE PRODUCT MOCKUPS (hand-built HTML, no screenshots)
 * Faithful to ambassador-web (app.fundgen.ai) + givingl.ink + Bob UI specs.
 * App surfaces use the app's own cream #f8f2e8 and gradient tokens.
 * ═══════════════════════════════════════════════════════════════════════ */

.fgm-stage { display: flex; justify-content: center; align-items: flex-start; }

/* phone frame (ported from client_landing_page .fg-tour spec, scaled) */
.fgm-phone {
  width: 300px; max-width: 100%; border-radius: 40px; background: #1b1b1d;
  padding: 8px; box-shadow: 0 28px 56px -16px rgba(31, 31, 31, 0.22);
  flex-shrink: 0;
}
.fgm-screen {
  border-radius: 32px; background: #f8f2e8; overflow: hidden;
  display: flex; flex-direction: column; position: relative; min-height: 560px;
}
.fgm-island { position: absolute; top: 8px; inset-inline-start: 50%; transform: translateX(-50%); width: 80px; height: 22px; background: #000; border-radius: 999px; z-index: 3; }
[dir="rtl"] .fgm-island { transform: translateX(50%); }
.fgm-statusbar { display: flex; justify-content: space-between; padding: 12px 22px 4px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: #000; }
.fgm-home { width: 90px; height: 4px; background: rgba(0,0,0,0.25); border-radius: 999px; margin: 8px auto 8px; flex-shrink: 0; }
.fgm-body { flex: 1; padding: 10px 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }

/* app card primitives (ambassador-web look) */
.fgm-card { background: #fff; border: 1px solid #e8ded2; border-radius: 18px; padding: 14px; }
.fgm-eyebrow { font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #9c8c7e; }
.fgm-serif { font-family: var(--font-display); font-weight: 400; line-height: 1; color: #1f1f1f; }
.fgm-live {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(31,31,31,0.05); border-radius: 999px; padding: 3px 9px;
  font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(31,31,31,0.7);
}
.fgm-live i { width: 6px; height: 6px; border-radius: 999px; background: var(--pink); display: inline-block; position: relative; }
.fgm-live i::after { content: ""; position: absolute; inset: -3px; border-radius: 999px; border: 1px solid var(--pink); animation: fgw-pulse 2s ease-out infinite; }
.fgm-progress { height: 9px; border-radius: 999px; background: #ede4d8; overflow: hidden; margin-top: 10px; }
.fgm-progress i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(135deg, #ff1b6b 0%, #ff2d78 45%, #ff4d5e 100%); }

/* wall hero numbers */
.fgm-wall-total { font-size: 2rem; }
.fgm-wall-pct { font-size: 1.35rem; color: var(--pink); }
.fgm-cap { font-size: 10.5px; color: #9c8c7e; }

/* donation feed rows */
.fgm-feed { list-style: none; margin: 0; padding: 0; }
.fgm-feed li { display: flex; align-items: center; gap: 9px; padding: 8px 0; border-top: 1px solid #e8ded2; }
.fgm-feed li:first-child { border-top: none; }
.fgm-avatar {
  width: 30px; height: 30px; border-radius: 999px; background: #ede4d8; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; color: #574a3f;
}
.fgm-feed-name { font-size: 12.5px; font-weight: 500; color: #1f1f1f; line-height: 1.2; }
.fgm-feed-via { font-size: 10px; color: #9c8c7e; }
.fgm-feed-amt { margin-inline-start: auto; text-align: end; font-family: var(--font-display); font-size: 15px; color: var(--pink); white-space: nowrap; }
.fgm-feed-time { display: block; font-family: var(--font-ui); font-size: 9px; color: #9c8c7e; }

/* leaderboard rows */
.fgm-board { list-style: none; margin: 0; padding: 0; }
.fgm-board li { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-top: 1px solid #e8ded2; font-size: 12.5px; }
.fgm-board li:first-child { border-top: none; }
.fgm-board .rk { width: 20px; text-align: center; flex-shrink: 0; }
.fgm-board .nm { font-weight: 500; color: #1f1f1f; }
.fgm-board .am { margin-inline-start: auto; font-weight: 600; color: rgba(31,31,31,0.8); }

/* coach strip (action zone "do this now") */
.fgm-coach {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid #e8ded2; border-radius: 14px; padding: 10px 12px;
}
.fgm-coach-label { font-family: var(--font-mono); font-size: 8.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #9c8c7e; }
.fgm-coach-text { font-size: 12px; font-weight: 700; color: #1f1f1f; line-height: 1.3; }
.fgm-go {
  margin-inline-start: auto; flex-shrink: 0; color: #fff; font-size: 11.5px; font-weight: 700;
  background: linear-gradient(135deg, #ff1b6b 0%, #ff2d78 45%, #ff4d5e 100%);
  border-radius: 999px; padding: 6px 14px;
}

/* status chips row */
.fgm-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.fgm-chip { font-size: 10px; font-weight: 600; border-radius: 999px; padding: 4px 9px; background: rgba(31,31,31,0.05); color: #9c8c7e; }
.fgm-chip--done { background: rgba(255,27,107,0.1); color: var(--pink-text); }
.fgm-chip--part { background: rgba(255,214,10,0.25); color: #574a3f; }

/* lead card (action zone focus mode) */
.fgm-lead-name { font-size: 1.35rem; }
.fgm-callbtn {
  display: block; text-align: center; color: #fff; font-weight: 700; font-size: 13.5px;
  background: linear-gradient(135deg, #ff1b6b 0%, #ff2d78 45%, #ff4d5e 100%);
  border-radius: 18px; padding: 13px; margin-top: 10px;
}
.fgm-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 7px; }
.fgm-channel { text-align: center; font-size: 10.5px; font-weight: 600; color: #1f1f1f; background: #fff; border: 1px solid #e8ded2; border-radius: 11px; padding: 8px 4px; }
.fgm-history { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--pink-text); font-weight: 600; }
.fgm-note { font-size: 11px; color: #574a3f; background: rgba(255,255,255,0.7); border-radius: 9px; padding: 7px 9px; }

/* manager action queue */
.fgm-mgr-group { display: flex; align-items: center; gap: 7px; }
.fgm-mgr-count { font-size: 10px; font-weight: 700; background: #ede4d8; border-radius: 999px; padding: 2px 8px; color: #574a3f; }
.fgm-action { background: rgba(245,239,230,0.6); border-radius: 13px; padding: 10px; margin-top: 7px; }
.fgm-action-name { font-size: 12.5px; font-weight: 600; color: #1f1f1f; }
.fgm-action-why { font-size: 10.5px; color: #9c8c7e; margin: 1px 0 7px; }
.fgm-action-btns { display: flex; gap: 6px; }
.fgm-btn-msg { color: #fff; font-size: 10.5px; font-weight: 700; background: linear-gradient(135deg, #ff1b6b, #ff4d5e); border-radius: 999px; padding: 5px 12px; }
.fgm-btn-snooze { font-size: 10.5px; font-weight: 600; color: #574a3f; border: 1px solid #e8ded2; border-radius: 999px; padding: 5px 12px; background: #fff; }

/* WhatsApp group bot bubble (Pulse) */
.fgm-wa { background: #efe9dd; border-radius: 16px; padding: 12px; }
.fgm-wa-row { display: flex; gap: 8px; align-items: flex-start; }
.fgm-wa-avatar { width: 28px; height: 28px; border-radius: 999px; background: linear-gradient(135deg, #ff2d78, #ff4d5e); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.fgm-wa-bubble { background: #fff; border-radius: 12px; padding: 10px 12px; font-size: 12px; line-height: 1.5; color: #1f1f1f; box-shadow: 0 1px 1px rgba(0,0,0,0.05); flex: 1; }
.fgm-wa-bubble b { display: block; margin-bottom: 3px; }
.fgm-wa-cheer { font-style: italic; color: var(--pink-text); }
.fgm-wa-time { font-size: 9px; color: #9c8c7e; text-align: end; margin-top: 4px; }

/* givingl.ink donate card */
.fgm-give {
  max-width: 340px; width: 100%; border-radius: 24px; background: #ff1b6b; color: #fff;
  padding: 20px 18px; box-shadow: 0 12px 32px rgba(255, 27, 107, 0.28);
}
.fgm-give h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; margin: 0 0 12px; color: #fff; }
.fgm-give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.fgm-give-amt { background: rgba(255,255,255,0.18); border-radius: 12px; padding: 9px 4px; text-align: center; font-size: 13px; font-weight: 700; }
.fgm-give-amt small { display: block; font-size: 9px; font-weight: 500; opacity: 0.85; }
.fgm-give-amt.is-on { background: #fff; color: #ff1b6b; }
.fgm-give-freq { display: flex; gap: 7px; margin-top: 9px; }
.fgm-give-freq span { flex: 1; text-align: center; font-size: 11.5px; font-weight: 700; border-radius: 999px; padding: 7px; background: rgba(255,255,255,0.18); }
.fgm-give-freq .is-on { background: #fff; color: #ff1b6b; }
.fgm-give-fee { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 11px; font-size: 10.5px; }
.fgm-give-fee small { display: block; opacity: 0.8; font-size: 9px; }
.fgm-toggle { width: 40px; height: 22px; border-radius: 999px; background: #fff; position: relative; flex-shrink: 0; }
.fgm-toggle i { position: absolute; top: 3px; inset-inline-end: 3px; width: 16px; height: 16px; border-radius: 999px; background: #ff1b6b; }
.fgm-give-impact { font-family: var(--font-display); font-style: italic; font-size: 13px; margin-top: 11px; opacity: 0.95; }
.fgm-give-btn { display: block; background: #fff; color: #ff1b6b; text-align: center; font-weight: 800; font-size: 14px; border-radius: 999px; padding: 11px; margin-top: 12px; }
.fgm-give-fine { font-size: 9px; opacity: 0.75; text-align: center; margin-top: 8px; }

/* Bob compass (chat brief card) */
.fgm-bob {
  max-width: 360px; width: 100%; background: #fff; border: 1px solid #e8ded2;
  border-radius: 20px; padding: 16px 18px; font-size: 13px; line-height: 1.75; color: #1f1f1f;
}
.fgm-bob-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.fgm-bob-head b { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; }
.fgm-bob-time { font-family: var(--font-mono); font-size: 9.5px; color: #9c8c7e; }
.fgm-bob p { margin: 0 0 6px; }
.fgm-bob .sec { font-weight: 700; }
.fgm-bob .item { color: #574a3f; }
.fgm-bob-cta { display: inline-block; background: #1a1a1a; color: #f5efe6; font-size: 11.5px; font-weight: 700; border-radius: 999px; padding: 7px 14px; margin-top: 6px; }

/* pill header inside app screens */
.fgm-appbar {
  background: linear-gradient(135deg, #ff2d78, #ff1b6b); color: #fff;
  border-radius: 16px; padding: 12px 14px;
}
.fgm-appbar b { font-family: var(--font-display); font-weight: 400; font-size: 15px; display: block; }
.fgm-appbar span { font-size: 10px; opacity: 0.9; }

/* side-by-side mockup pair on desktop */
.fgm-duo { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; align-items: flex-start; }

/* free-badge */
.fgw-free {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #1a7f4b; background: rgba(46, 139, 87, 0.1);
  border: 1px solid rgba(46, 139, 87, 0.25); border-radius: 999px; padding: 0.3rem 0.8rem;
}

/* mobile tightening for mockups */
@media (max-width: 680px) {
  .fgm-phone { width: 272px; }
  .fgm-screen { min-height: 500px; }
}

/* ═══ v2.1 — pre-campaign HQ mockups + the products timeline ═══════════════ */

/* readiness gates (HQ readiness board) */
.fgm-gates { list-style: none; margin: 0; padding: 0; }
.fgm-gates li { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-top: 1px solid #e8ded2; font-size: 12px; color: #1f1f1f; }
.fgm-gates li:first-child { border-top: none; }
.fgm-gate-pill {
  margin-inline-start: auto; flex-shrink: 0; font-size: 9.5px; font-weight: 700;
  border-radius: 999px; padding: 3px 9px; white-space: nowrap;
}
.fgm-gate-pill--ok { background: #e8f3ec; color: #1a7f4b; }
.fgm-gate-pill--warn { background: #fbf2e6; color: #9a6a1e; }
.fgm-gate-pill--todo { background: rgba(31,31,31,0.06); color: #9c8c7e; }
.fgm-gate-crit { font-size: 8.5px; font-weight: 700; color: #c62828; letter-spacing: 0.06em; }

/* ambassador pipeline funnel */
.fgm-funnel { display: flex; flex-direction: column; gap: 5px; }
.fgm-funnel-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: #574a3f; }
.fgm-funnel-row .lbl { width: 74px; flex-shrink: 0; }
.fgm-funnel-row .bar { height: 14px; border-radius: 999px; background: linear-gradient(135deg, #ff1b6b, #ff4d5e); opacity: 0.9; }
.fgm-funnel-row .bar--soft { background: #ede4d8; opacity: 1; }
.fgm-funnel-row .n { font-weight: 700; color: #1f1f1f; }

/* forecast figure */
.fgm-forecast { text-align: center; padding: 6px 0 2px; }
.fgm-forecast .fig { font-family: var(--font-display); font-style: italic; font-size: 1.65rem; color: #1f1f1f; }
.fgm-forecast .conf { font-size: 10px; color: #9c8c7e; margin-top: 2px; }

/* RSVP event card rows */
.fgm-rsvp { display: flex; gap: 7px; margin-top: 8px; }
.fgm-rsvp span { flex: 1; text-align: center; border-radius: 11px; padding: 7px 4px; font-size: 11px; font-weight: 700; }
.fgm-rsvp .yes { background: #e8f3ec; color: #1a7f4b; }
.fgm-rsvp .maybe { background: #fbf2e6; color: #9a6a1e; }
.fgm-rsvp .no { background: rgba(31,31,31,0.06); color: #9c8c7e; }
.fgm-rsvp span small { display: block; font-weight: 500; font-size: 9px; }

/* ── the products timeline (home) ───────────────────────────────────────── */
.fgw-timeline { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; margin-top: clamp(2rem, 4vw, 3rem); }
.fgw-timeline::before {
  content: ""; position: absolute; top: 7px; inset-inline: 8px; height: 1px;
  background: var(--line-strong);
}
.fgw-tl-stop { position: relative; padding-top: 1.5rem; }
.fgw-tl-stop::before {
  content: ""; position: absolute; top: 0; inset-inline-start: 0;
  width: 15px; height: 15px; border-radius: 999px;
  background: var(--cream); border: 2px solid var(--charcoal);
}
.fgw-tl-stop--hot::before { background: var(--pink); border-color: var(--pink); box-shadow: 0 0 0 5px rgba(255, 27, 107, 0.15); }
.fgw-tl-when {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe-500); display: block; margin-bottom: 0.45rem;
}
.fgw-tl-stop h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.45rem; line-height: 1.1; margin: 0 0 0.4rem; }
.fgw-tl-stop p { margin: 0 0 0.75rem; font-size: 0.92rem; color: var(--charcoal-soft); }
.fgw-tl-link { font-size: 0.9rem; font-weight: 700; color: var(--pink-text); text-decoration: none; }
.fgw-tl-link:hover { text-decoration: underline; }
.fgw-tl-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.6rem; }
.fgw-tl-tag {
  font-size: 0.72rem; font-weight: 600; border-radius: 999px; padding: 0.22rem 0.65rem;
  background: rgba(31,31,31,0.05); color: var(--charcoal-soft);
}
@media (max-width: 880px) {
  .fgw-timeline { grid-template-columns: 1fr; gap: 1.8rem; }
  .fgw-timeline::before { inset-inline: auto; inset-inline-start: 7px; top: 8px; bottom: 8px; height: auto; width: 1px; }
  .fgw-tl-stop { padding-top: 0; padding-inline-start: 2rem; }
}

/* ── product-value video player ─────────────────────────────────────────── */
.fgw-video-wrap { margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.fgw-video {
  width: 100%; display: block; border-radius: 20px;
  border: 1px solid var(--line); background: var(--paper);
  box-shadow: 0 30px 60px -35px rgba(31, 31, 31, 0.4);
}
.fgw-video-cap { font-size: 0.85rem; color: var(--taupe-500); text-align: center; margin-top: 0.7rem; }

/* ---- chaos → strategy hero mockup ---- */
.fgm-chaosflow { display: flex; flex-direction: column; gap: 12px; max-width: 400px; width: 100%; }
.fgm-chaos { position: relative; height: 196px; }
.fgm-chaos-item { position: absolute; border-radius: 14px; box-shadow: 0 10px 24px rgba(31,31,31,0.09); }
.fgm-chaos-wa { inset-inline-start: 0; top: 0; width: 62%; transform: rotate(-2.5deg); z-index: 2; }
.fgm-chaos-xls { inset-inline-end: 0; top: 52px; width: 56%; transform: rotate(2deg); background: #fff; border: 1px solid #e8ded2; overflow: hidden; z-index: 1; }
.fgm-xls-name { font-family: var(--font-mono); font-size: 9px; font-weight: 600; color: #574a3f; background: #ede4d8; padding: 5px 9px; }
.fgm-xls-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr; font-size: 9.5px; color: #574a3f; }
.fgm-xls-grid span { padding: 4px 7px; border-top: 1px solid #f0e8dc; border-inline-start: 1px solid #f0e8dc; white-space: nowrap; overflow: hidden; min-height: 1.6em; }
.fgm-xls-grid .hd { font-weight: 700; color: #9c8c7e; background: #faf6ef; border-top: none; }
.fgm-chaos-note { inset-inline-start: 24%; bottom: 0; width: 46%; transform: rotate(-5deg); background: #fff3b0; padding: 10px 12px; font-family: var(--font-display); font-style: italic; font-size: 13px; line-height: 1.35; color: #574a3f; z-index: 3; }
.fgm-flow { display: flex; align-items: center; gap: 10px; justify-content: center; color: #9c8c7e; }
.fgm-flow-line { flex: 1; height: 1px; background: #e8ded2; }
.fgm-flow-label { font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.fgm-plan { background: #1f1f1f; border-radius: 20px; padding: 18px; color: #f5efe6; }
.fgm-plan-eyebrow { font-family: var(--font-mono); font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,239,230,0.55); }
.fgm-plan-title { font-family: var(--font-display); font-size: 1.35rem; margin: 4px 0 10px; }
.fgm-plan ul { list-style: none; margin: 0; padding: 0; }
.fgm-plan li { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; line-height: 1.45; padding: 6px 0; border-top: 1px solid rgba(245,239,230,0.12); }
.fgm-plan li:first-child { border-top: none; }
.fgm-plan .tick { color: var(--pink); font-weight: 700; flex-shrink: 0; }
.fgm-plan-foot { margin-top: 10px; font-size: 10.5px; color: rgba(245,239,230,0.55); }

/* ---- newsletter ---- */
.fgw-nl { display: flex; gap: 8px; flex-wrap: wrap; max-width: 440px; }
.fgw-nl input[type="email"] { flex: 1; min-width: 200px; padding: 11px 14px; border-radius: 999px; border: 1px solid #e8ded2; background: #fff; font: inherit; font-size: 14.5px; color: #1f1f1f; }
.fgw-nl input[type="email"]:focus { outline: 2px solid rgba(255,27,107,0.35); outline-offset: 1px; }
.fgw-nl button { border: 0; cursor: pointer; }
.fgw-nl [data-nl-msg] { flex-basis: 100%; font-size: 12.5px; color: #b3261e; margin: 2px 0 0; min-height: 1em; }
.fgw-nl-done { font-size: 15px; font-weight: 600; color: var(--pink-text, #d81b60); margin: 6px 0; }
.fgw-nl-hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.fgw-footer-nl { margin: 2.2rem 0 0; padding-top: 1.6rem; border-top: 1px solid #e8ded2; display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: space-between; }
.fgw-footer-nl p { margin: 0; font-size: 14.5px; color: #574a3f; max-width: 380px; }
.fgw-band .fgw-nl input[type="email"] { border-color: rgba(245,239,230,0.25); }
.fgw-band .fgw-nl [data-nl-msg] { color: #ffb4a8; }
.fgw-band .fgw-nl-done { color: var(--cream); }
