@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ═══════════════════════════════════════════════════════════════════
   FOCUS — Marketing redesign
   Palette: navy + green primaries, mint highlight, warm clay accent.
   Typography: Inter for everything, Fraunces serif for editorial pulls.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --navy: #0F2240;
  --navy-deep: #0A1A33;
  --navy-soft: #1E3559;
  --green: #2D6A4F;
  --green-hover: #245A42;
  --green-soft: #E6F0EA;
  --mint: #95D5B2;
  --clay: #C97B5A;
  --clay-soft: #F5E4DC;
  --paper: #F4EFE6;
  --paper-deep: #ECE5D8;
  --white: #FFFFFF;
  --gray: #F8F9FA;
  --muted: #6B7C93;
  --border: #E2E8F0;
  --border-warm: #DDD2BD;
  --text-body: #4A5568;
  --text-body-soft: #3A4F6A;
  --ink: #0F2240;

  /* HFW-required extras */
  --mint-soft: #D8EFE0;
  --gray-2: #F1F4F8;
  --escalate: #DC2626;
  --escalate-bg: #FEE2E2;
  --escalate-border: #F87171;
  --warn: #EA580C;
  --warn-bg: #FED7AA;

  --container: 1180px;
  --pad-side: 24px;
  --section-pad: 120px;
  --nav-h: 72px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 2px 16px rgba(15,34,64,.05);
  --shadow-crisp: 0 2px 20px rgba(15,34,64,.07), 0 0 0 1px var(--border);
  --shadow-warm: 0 2px 20px rgba(120,78,40,.08), 0 0 0 1px var(--border-warm);
  --shadow-hover: 0 12px 32px rgba(15,34,64,.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-side); }

/* ───── Type recipes ───────────────────────────────────────────── */
.fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.fc-eyebrow.on-dark { color: var(--mint); }
.fc-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

.fc-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--ink);
  text-wrap: balance;
}
.fc-title em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--green);
  letter-spacing: -.01em;
}
.fc-title.on-dark { color: var(--white); }
.fc-title.on-dark em { color: var(--mint); }

.fc-lede {
  font-size: 1.1rem;
  color: var(--text-body-soft);
  line-height: 1.7;
  max-width: 640px;
  text-wrap: pretty;
}
.fc-lede.on-dark { color: rgba(255,255,255,.78); }

.fc-meta { font-size: .72rem; color: var(--muted); line-height: 1.5; }

/* ───── Buttons ───────────────────────────────────────────────── */
.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -.005em;
  border: 0;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
}
.fc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,34,64,.16); }
.fc-btn-green { background: var(--green); color: var(--white); }
.fc-btn-green:hover { background: var(--green-hover); }
.fc-btn-navy { background: var(--ink); color: var(--white); }
.fc-btn-navy:hover { background: var(--navy-deep); }
.fc-btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.fc-btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.fc-btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.fc-btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }
.fc-btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 0;
  border: 0;
}
.fc-btn-ghost:hover { transform: translateX(2px); box-shadow: none; color: var(--green); }
.fc-btn .arr {
  display: inline-block;
  transition: transform .2s ease;
}
.fc-btn:hover .arr { transform: translateX(4px); }

/* ───── Nav ───────────────────────────────────────────────────── */
.fc-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.fc-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(15,34,64,.05);
}
.fc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 32px;
}
.fc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fc-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: var(--mint);
}
.fc-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.fc-logo-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
}
.fc-logo-sub {
  font-size: .58rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  max-width: 240px;
}
.fc-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.fc-nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  opacity: .72;
  transition: opacity .15s;
}
.fc-nav-links a:hover { opacity: 1; }
.fc-nav-cta {
  background: var(--green);
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: .85rem !important;
}
.fc-nav-cta:hover { background: var(--green-hover); }

/* ───── Hero ──────────────────────────────────────────────────── */
.fc-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 96px 0 120px;
  overflow: hidden;
}
.fc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(45,106,79,.32) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(149,213,178,.12) 0%, transparent 55%);
  pointer-events: none;
}
.fc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4'><circle cx='1' cy='1' r='0.5' fill='%23ffffff' opacity='0.06'/></svg>");
  pointer-events: none;
}
.fc-hero .container { position: relative; z-index: 2; }
.fc-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.fc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(149,213,178,.14);
  color: var(--mint);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  border: 1px solid rgba(149,213,178,.22);
}
.fc-hero-eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(149,213,178,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(149,213,178,.65); }
  70% { box-shadow: 0 0 0 8px rgba(149,213,178,0); }
  100% { box-shadow: 0 0 0 0 rgba(149,213,178,0); }
}

.fc-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.04;
  margin-bottom: 28px;
  color: var(--white);
  text-wrap: balance;
}
.fc-hero h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--mint);
  letter-spacing: -.015em;
}

.fc-hero p.fc-hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.fc-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.fc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
}
.fc-hero-meta-item .n {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}
.fc-hero-meta-item .l {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  max-width: 160px;
  line-height: 1.45;
}

.fc-hero-illust {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
}

/* ───── Section base ──────────────────────────────────────────── */
.fc-section { padding: var(--section-pad) 0; position: relative; }
.fc-section.bg-paper { background: var(--paper); }
.fc-section.bg-gray { background: var(--gray); }
.fc-section.bg-navy { background: var(--ink); color: var(--white); }
.fc-section.bg-navy-deep { background: var(--navy-deep); color: var(--white); }
.fc-section.bg-white { background: var(--white); }

.fc-section-head { max-width: 760px; margin-bottom: 56px; }
.fc-section-head .fc-eyebrow { margin-bottom: 16px; }
.fc-section-head .fc-title { margin-bottom: 20px; }

/* ───── Problem ───────────────────────────────────────────────── */
.fc-problem {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: start;
}
.fc-problem-illust { position: relative; aspect-ratio: 1 / 1; }
.fc-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fc-stat-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border-warm);
  align-items: baseline;
}
.fc-stat-row:last-child { border-bottom: 1px solid var(--border-warm); }
.fc-stat-row .n {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.fc-stat-row .body .l {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 6px;
}
.fc-stat-row .body .src { font-size: .72rem; color: var(--muted); font-style: italic; }

.fc-pull {
  margin-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 36px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
  align-items: start;
}
.fc-pull .mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 5rem;
  line-height: .85;
  color: var(--clay);
  font-weight: 400;
}
.fc-pull q, .fc-pull blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -.01em;
  display: block;
  margin-bottom: 14px;
  quotes: none;
}
.fc-pull q::before, .fc-pull q::after { content: ''; }
.fc-pull cite {
  font-style: normal;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
}

/* ───── How FOCUS Works section wrapper ───────────────────────── */
.fc-how-mount { overflow: hidden; }

/* ───── Evidence ──────────────────────────────────────────────── */
.fc-evidence-shell {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  box-shadow: var(--shadow-crisp);
}
.fc-evidence-chart {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 48px;
}
.fc-bar-row {
  display: grid;
  grid-template-columns: 200px 1fr 80px;
  gap: 20px;
  align-items: center;
}
.fc-bar-label .country {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.fc-bar-label .study {
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.fc-bar-track {
  height: 18px;
  background: var(--gray);
  border-radius: var(--radius-pill);
  overflow: hidden;
  position: relative;
}
.fc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--mint) 100%);
  border-radius: var(--radius-pill);
  transition: width 1.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.fc-bar-fill.muted {
  background: linear-gradient(90deg, #B8674C 0%, #D89A82 100%);
}
.fc-bar-track .baseline {
  position: absolute;
  top: -8px; bottom: -8px;
  width: 1px;
  background: var(--clay);
  opacity: .55;
}
.fc-bar-track .baseline::after {
  content: '~30% baseline';
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clay);
  white-space: nowrap;
}
.fc-bar-pct {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.fc-evidence-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fc-evidence-card {
  border-top: 3px solid var(--green);
  padding-top: 20px;
}
.fc-evidence-card .country {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.fc-evidence-card .text {
  font-size: .9rem;
  color: var(--text-body-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}
.fc-evidence-card .src {
  font-size: .72rem;
  color: var(--muted);
  font-style: italic;
}

/* ───── Adopt section ─────────────────────────────────────────── */
.fc-adopt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fc-adopt-illust { aspect-ratio: 1.1 / 1; }
.fc-adopt-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0;
}
.fc-adopt-checks li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.fc-adopt-checks .c {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.fc-adopt-checks .c svg { width: 14px; height: 14px; }
.fc-adopt-checks .body strong {
  font-size: .98rem;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}
.fc-adopt-checks .body span {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.6;
}

.fc-adopt-steps {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-warm);
  overflow: hidden;
}
.fc-adopt-step {
  padding: 32px 28px;
  border-right: 1px solid var(--border-warm);
  position: relative;
}
.fc-adopt-step:last-child { border-right: 0; }
.fc-adopt-step .step-n {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 14px;
}
.fc-adopt-step h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}
.fc-adopt-step p {
  font-size: .85rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ───── Memoriam ──────────────────────────────────────────────── */
.fc-mem-video {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 270px;
  border-radius: 16px;
  overflow: hidden;
  background: #1B3257;
  box-shadow: 0 12px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
}
.fc-mem-video video,
.fc-mem-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
/* Gradient fades at top + bottom mask YouTube Shorts channel header and bottom chrome */
.fc-mem-video-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #0A1A33 12%, transparent 28%),
    linear-gradient(to top,    #0A1A33 12%, transparent 28%);
  z-index: 4;
  pointer-events: none;
  border-radius: 16px;
}
/* Unmute button — sits above the mask, dismisses itself after tap */
.fc-mem-unmute {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: .82rem;
  font-weight: 700;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.fc-mem-unmute:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.55);
}
.fc-mem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.fc-mem-portrait { width: 100%; max-width: 270px; flex-shrink: 0; }
.fc-mem-label {
  color: var(--mint);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.fc-mem-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.fc-mem h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.fc-mem .dates {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
}
.fc-mem-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: -.005em;
  border-left: 2px solid var(--mint);
  padding-left: 24px;
  margin-bottom: 28px;
}
.fc-mem-body {
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 16px;
}
.fc-mem-body em { color: var(--mint); font-style: normal; font-weight: 600; }
.fc-mem-credits {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 560px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  margin-top: 28px;
}

/* ───── Donors strip ──────────────────────────────────────────── */
.fc-donors {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fc-donors-head {
  text-align: center;
  margin-bottom: 32px;
}
.fc-donors-head .fc-eyebrow {
  justify-content: center;
}
.fc-donors-head .fc-eyebrow::before { display: none; }
.fc-donors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
}
.fc-donor {
  display: block;
  filter: grayscale(100%);
  opacity: .65;
  transition: filter .25s, opacity .25s, transform .25s;
}
.fc-donor:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}
.fc-donor img {
  display: block;
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.fc-donor-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-donor-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
  letter-spacing: -.01em;
  opacity: .55;
  transition: opacity .25s;
}
.fc-donor-text:hover .fc-donor-name { opacity: 1; }

.fc-donors-note {
  text-align: center;
  max-width: 640px;
  margin: 32px auto 0;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}
@media (max-width: 600px) {
  .fc-donors-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ───── Get Involved ──────────────────────────────────────────── */
.fc-involved-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.fc-involve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-crisp);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.fc-involve-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.fc-involve-card.feat {
  background: var(--ink);
  color: var(--white);
  background-image:
    radial-gradient(circle at 90% 10%, rgba(45,106,79,.42) 0%, transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(149,213,178,.12) 0%, transparent 55%);
}
.fc-involve-tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.fc-involve-card.feat .fc-involve-tag { color: var(--mint); }
.fc-involve-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
}
.fc-involve-card.feat h3 { color: var(--white); }
.fc-involve-card p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.fc-involve-card.feat p { color: rgba(255,255,255,.78); }
.fc-involve-illust {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  opacity: .9;
  pointer-events: none;
}

/* ───── Footer ────────────────────────────────────────────────── */
.fc-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
  position: relative;
}
.fc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.fc-footer-brand .fc-logo-name { color: var(--white); font-size: 1.25rem; }
.fc-footer-brand .fc-logo-mark { background: var(--white); color: var(--ink); }
.fc-footer-brand .fc-logo-sub { color: rgba(255,255,255,.4); }
.fc-footer-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mint);
  margin-top: 20px;
  margin-bottom: 16px;
  max-width: 280px;
  line-height: 1.5;
}
.fc-footer-blurb {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  max-width: 320px;
}
.fc-footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.fc-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fc-footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.fc-footer-col a:hover { color: var(--mint); }
.fc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.fc-footer-copy { font-size: .78rem; color: rgba(255,255,255,.4); }
.fc-footer-staff {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}
.fc-footer-staff:hover { color: var(--mint); }

/* ───── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fc-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .fc-hero-illust { max-width: 360px; margin: 0 auto; }
  .fc-problem { grid-template-columns: 1fr; gap: 40px; }
  .fc-problem-illust { max-width: 360px; margin: 0 auto; }
  .fc-mem { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .fc-mem-portrait { margin: 0 auto; }
  .fc-mem-quote { text-align: left; max-width: 560px; margin: 0 auto 28px; }
  .fc-mem-body { margin-left: auto; margin-right: auto; }
  .fc-mem-credits { margin-left: auto; margin-right: auto; }
  .fc-mem-label::before { display: none; }
  .fc-adopt-grid { grid-template-columns: 1fr; }
  .fc-adopt-steps { grid-template-columns: 1fr 1fr; }
  .fc-adopt-step { border-right: 0; border-bottom: 1px solid var(--border-warm); }
  .fc-adopt-step:nth-child(odd) { border-right: 1px solid var(--border-warm); }
  .fc-involved-grid { grid-template-columns: 1fr; }
  .fc-evidence-cards { grid-template-columns: 1fr; }
  .fc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  :root { --section-pad: 80px; }
  .fc-evidence-shell { padding: 28px 20px; }
  .fc-bar-row { grid-template-columns: 1fr; }
  .fc-bar-pct { text-align: left; }
  .fc-stat-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .fc-pull { grid-template-columns: 1fr; padding: 24px; }
  .fc-pull .mark { font-size: 3rem; }
  .fc-nav-links { display: none; }
  .fc-hero-meta { gap: 20px 28px; }
  .fc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════════════════
   HOW FOCUS WORKS — embedded section CSS
   (Namespaced .hfw-* to avoid conflicts with fc-* system above)
   ═══════════════════════════════════════════════════════════════════ */

.hfw-section {
  padding: 110px 0 120px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.hfw-section.dark { background: var(--navy); color: #fff; }
.hfw-header { max-width: 760px; margin-bottom: 64px; }
.hfw-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 14px;
}
.hfw-title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.hfw-title em { font-style: normal; color: var(--green); }
.hfw-lede {
  font-size: 1.125rem;
  color: var(--text-body-soft);
  line-height: 1.65;
  max-width: 640px;
  text-wrap: pretty;
}
.hfw-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
  align-items: stretch;
}
.hfw-rail::before {
  content: '';
  position: absolute;
  left: 8%; right: 8%; top: 60px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0 8px, transparent 8px 14px);
  z-index: 0;
}
.hfw-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hfw-stage-num {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(15,34,64,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.hfw-stage-num:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(15,34,64,.12); }
.hfw-stage-num-label {
  position: absolute;
  top: -10px;
  background: var(--green);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.hfw-stage-icon { width: 38px; height: 38px; color: var(--green); stroke-width: 1.5; }
.hfw-stage-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.hfw-stage-text {
  font-size: .85rem;
  color: var(--text-body);
  text-align: center;
  line-height: 1.55;
  text-wrap: pretty;
}
.hfw-stage.is-active .hfw-stage-num {
  border-color: var(--green);
  box-shadow: 0 0 0 6px rgba(45,106,79,.14), 0 8px 24px rgba(15,34,64,.12);
  transform: translateY(-3px);
}
.hfw-stage.is-active .hfw-stage-icon { animation: hfw-pulse 1.4s ease-in-out infinite; }
@keyframes hfw-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.hfw-theatre {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}
.hfw-theatre-side { display: flex; flex-direction: column; gap: 14px; }
.hfw-theatre-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hfw-theatre-h {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.hfw-theatre-p { font-size: .92rem; color: var(--text-body); line-height: 1.65; text-wrap: pretty; }
.hfw-phone-wrap { display: flex; justify-content: center; position: relative; }
.hfw-phone {
  width: 320px; height: 640px;
  background: #1A2236;
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 0 0 2px #2A3348, 0 30px 60px -20px rgba(15,34,64,.4), 0 12px 28px rgba(15,34,64,.18);
}
.hfw-phone-screen {
  width: 100%; height: 100%;
  background: #ECE5DD;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hfw-phone-notch {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #1A2236;
  border-radius: 0 0 18px 18px;
  z-index: 5;
}
.hfw-msg-header {
  background: #075E54;
  color: #fff;
  padding: 38px 18px 12px;
  display: flex; align-items: center; gap: 12px;
  font-size: .78rem;
}
.hfw-msg-back { font-size: 1.1rem; opacity: .9; }
.hfw-msg-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--mint); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 900; letter-spacing: -.02em;
}
.hfw-msg-name { font-weight: 700; line-height: 1.1; }
.hfw-msg-status { font-size: .65rem; opacity: .75; line-height: 1.1; }
.hfw-msg-body {
  flex: 1;
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
  background: #ECE5DD;
  position: relative;
}
.hfw-msg-body::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.4) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.3) 0 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px;
  pointer-events: none;
}
.hfw-bubble {
  max-width: 78%;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: .78rem; line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
  animation: hfw-bubble-in .35s ease-out both;
}
@keyframes hfw-bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hfw-bubble.received {
  background: #fff; color: #111B21;
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.hfw-bubble.sent {
  background: #DCF8C6; color: #111B21;
  align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 600;
}
.hfw-bubble.sent.danger { background: #FFD7D7; color: #6E1A1A; }
.hfw-bubble.received.alert {
  background: #FEF3C7; color: #6B4A0F;
  border: 1px solid #F59E0B; font-weight: 500;
}
.hfw-bubble-time {
  display: block; font-size: .58rem;
  color: rgba(0,0,0,.4); text-align: right;
  margin-top: 2px; font-weight: 400;
}
.hfw-bubble-question {
  font-size: .68rem; font-weight: 700;
  color: var(--green); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 4px;
}
.hfw-typing {
  align-self: flex-start;
  background: #fff; padding: 10px 12px;
  border-radius: 12px; border-bottom-left-radius: 4px;
  display: flex; gap: 4px;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
}
.hfw-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #999;
  animation: hfw-typing 1.2s ease-in-out infinite;
}
.hfw-typing span:nth-child(2) { animation-delay: .2s; }
.hfw-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes hfw-typing {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.hfw-channel-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.95); color: var(--navy);
  font-size: .58rem; font-weight: 800;
  letter-spacing: .14em; padding: 4px 8px;
  border-radius: 6px; z-index: 6; text-transform: uppercase;
}
.hfw-channel-tag.sms { background: var(--warn-bg); color: #7C2D12; }
.hfw-phone-base {
  position: absolute; bottom: -34px; left: 50%;
  transform: translateX(-50%);
  width: 86%; height: 36px;
  background: radial-gradient(ellipse at center, rgba(15,34,64,.18) 0%, transparent 70%);
  filter: blur(4px); z-index: -1;
}
.hfw-anno {
  background: var(--white); border-radius: 14px; padding: 22px;
  box-shadow: 0 2px 20px rgba(15,34,64,.07), 0 0 0 1px var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.hfw-anno.with-rule { border-top: 4px solid var(--green); }
.hfw-anno-row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .85rem; color: var(--text-body); line-height: 1.5;
}
.hfw-anno-row svg {
  width: 16px; height: 16px; color: var(--green);
  flex-shrink: 0; margin-top: 3px; stroke-width: 2;
}
.hfw-escalation {
  background: #fff; border-radius: 14px;
  border-left: 4px solid var(--escalate-border);
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(220,38,38,.18), 0 0 0 1px var(--border);
  transform: translateX(20px); opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
.hfw-escalation.visible { transform: translateX(0); opacity: 1; }
.hfw-esc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--escalate-bg); color: var(--escalate);
  font-size: .62rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 6px; margin-bottom: 12px;
}
.hfw-esc-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--escalate);
  animation: hfw-blink 1.1s ease-in-out infinite;
}
@keyframes hfw-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .25; }
}
.hfw-esc-h {
  font-size: 1rem; font-weight: 800; color: var(--navy);
  margin-bottom: 4px; letter-spacing: -.01em;
}
.hfw-esc-meta {
  font-size: .72rem; color: var(--muted); margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
}
.hfw-esc-row {
  display: flex; justify-content: space-between;
  padding: 6px 0; font-size: .8rem;
  border-top: 1px solid var(--border);
}
.hfw-esc-row:first-of-type { border-top: 0; }
.hfw-esc-row .q { color: var(--text-body); }
.hfw-esc-row .a { font-weight: 700; color: var(--navy); }
.hfw-esc-row .a.flag { color: var(--escalate); }
.hfw-esc-cta { margin-top: 14px; display: flex; gap: 8px; }
.hfw-esc-btn {
  flex: 1; padding: 9px 12px; border-radius: 8px;
  font-size: .78rem; font-weight: 700;
  cursor: pointer; border: 0; font-family: inherit;
}
.hfw-esc-btn.primary { background: var(--escalate); color: #fff; }
.hfw-esc-btn.primary:hover { background: #B91C1C; }
.hfw-esc-btn.secondary { background: var(--gray); color: var(--navy); }
.hfw-stats {
  margin-top: 96px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.hfw-stat {
  background: #fff; border-radius: 14px; padding: 28px 26px;
  box-shadow: 0 2px 20px rgba(15,34,64,.05), 0 0 0 1px var(--border);
}
.hfw-stat-num {
  font-size: 2.5rem; font-weight: 900; color: var(--navy);
  letter-spacing: -.025em; line-height: 1; margin-bottom: 6px;
}
.hfw-stat-num em {
  font-style: normal; color: var(--green);
  font-size: 1.3rem; font-weight: 800; margin-left: 2px; letter-spacing: 0;
}
.hfw-stat-label {
  font-size: .82rem; font-weight: 600;
  color: var(--text-body); line-height: 1.5; text-wrap: pretty;
}
.hfw-timeline {
  margin-top: 56px; background: #fff; border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 2px 20px rgba(15,34,64,.05), 0 0 0 1px var(--border);
}
.hfw-timeline-h {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 22px;
}
.hfw-timeline-h h4 {
  font-size: 1rem; font-weight: 800; color: var(--navy); letter-spacing: -.01em;
}
.hfw-timeline-h span {
  font-size: .72rem; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}
.hfw-timeline-track { position: relative; height: 56px; margin: 0 14px; }
.hfw-timeline-line {
  position: absolute; left: 0; right: 0; top: 16px;
  height: 2px; background: var(--border); border-radius: 2px;
}
.hfw-timeline-fill {
  position: absolute; left: 0; top: 16px;
  height: 2px; background: var(--green); border-radius: 2px;
  transition: width .8s ease;
}
.hfw-tp {
  position: absolute; transform: translateX(-50%); top: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; cursor: pointer;
}
.hfw-tp-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  transition: all .25s ease;
}
.hfw-tp.done .hfw-tp-dot { background: var(--green); border-color: var(--green); }
.hfw-tp.active .hfw-tp-dot {
  background: #fff; border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(45,106,79,.2); transform: scale(1.15);
}
.hfw-tp-label {
  font-size: .68rem; font-weight: 700; color: var(--text-body);
  white-space: nowrap; margin-top: 24px; font-feature-settings: "tnum";
}
.hfw-tp.active .hfw-tp-label { color: var(--green); }
.hfw-goal {
  margin-top: 48px; background: #fff;
  border-left: 4px solid var(--green);
  padding: 22px 28px; border-radius: 0 14px 14px 0;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 2px 20px rgba(15,34,64,.05);
}
.hfw-goal-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--mint-soft); color: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hfw-goal-icon svg { width: 20px; height: 20px; stroke-width: 2; }
.hfw-goal-text {
  font-size: .98rem; color: var(--text-body-soft); line-height: 1.65; text-wrap: pretty;
}
.hfw-goal-text strong { color: var(--navy); font-weight: 800; }
.hfw-bg-blob {
  position: absolute; pointer-events: none; border-radius: 50%; z-index: 0;
}
.hfw-bg-blob-1 {
  top: -120px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(45,106,79,.06) 0%, transparent 70%);
}
.hfw-bg-blob-2 {
  bottom: -100px; left: -80px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(45,106,79,.05) 0%, transparent 70%);
}
.hfw-section > .container { position: relative; z-index: 1; }
@media (max-width: 1024px) {
  .hfw-theatre { grid-template-columns: 1fr; gap: 32px; }
  .hfw-theatre-side { max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 900px) {
  .hfw-rail { grid-template-columns: 1fr 1fr; }
  .hfw-rail::before { display: none; }
  .hfw-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hfw-rail { grid-template-columns: 1fr; }
  .hfw-stats { grid-template-columns: 1fr; }
}
