/* =====================================================================
   Made@gain — Redesigned stylesheet
   Premium, minimal, single-font (TT Hoves Pro) with green accent.
   ===================================================================== */

/* ── TT HOVES PRO — local fonts ── */
@font-face {
  font-family: 'TT Hoves Pro';
  src: url('fonts/TT_Hoves_Pro_Regular.ttf') format('truetype');
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Hoves Pro';
  src: url('fonts/TT_Hoves_Pro_Medium.ttf') format('truetype');
  font-weight: 500 900;
  font-style: normal;
  font-display: swap;
}

/* ── DESIGN TOKENS ── */
:root {
  /* Greens — accent only */
  --green: #16a34a;
  --green-dark: #128a3e;
  --green-deep: #0b5226;
  --green-50:  #f0fdf4;
  --green-100: #e6f7ec;
  --green-200: #c8ecd5;
  --green-300: #8fd4a9;

  /* Neutrals — primary palette */
  --ink: #0f1115;
  --ink-2: #1c1f26;
  --charcoal: #2a2d34;
  --muted: #5a6470;
  --muted-2: #8a93a0;
  --line: #ececef;
  --line-2: #e3e6ea;
  --bg: #ffffff;
  --bg-alt: #fafaf8;
  --bg-soft: #f5f5f3;
  --bg-warm: #f7f5f1;

  /* Gradients */
  --gradient-soft: radial-gradient(1200px 600px at 80% -10%, rgba(22,163,74,0.10), transparent 60%),
                   radial-gradient(800px 500px at -10% 30%, rgba(22,163,74,0.05), transparent 60%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(15,17,21,0.04);
  --shadow-sm: 0 2px 8px rgba(15,17,21,0.04), 0 1px 2px rgba(15,17,21,0.03);
  --shadow-md: 0 10px 30px rgba(15,17,21,0.07), 0 2px 6px rgba(15,17,21,0.04);
  --shadow-lg: 0 24px 60px rgba(15,17,21,0.10), 0 6px 12px rgba(15,17,21,0.04);
  --glow-green: 0 0 0 6px rgba(22,163,74,0.08);

  /* Spatial */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --max: 1280px;
  --max-wide: 1440px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: 0.55s;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'TT Hoves Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background-color: #f6f7fa;
  /* Paper texture as a fixed full-viewport canvas — no tiling, no seams.
     `cover` stretches the image to fill the viewport so the same crumple
     pattern shows everywhere regardless of viewport width or scroll depth. */
  background-image: url("assets/paper-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  line-height: 1.6;
  font-feature-settings: 'ss01','ss02','liga','kern';
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
/* iOS Safari ignores background-attachment: fixed on body — fall back to
   a fixed pseudo-element so the texture still doesn't tile on iPhones. */
@supports (-webkit-touch-callout: none) {
  body { background-attachment: scroll; }
  body::before {
    content: '';
    position: fixed; inset: 0;
    background: url("assets/paper-bg.jpg") center / cover no-repeat;
    z-index: -1;
    pointer-events: none;
  }
}

/* Sections — transparent so the paper background shows through everywhere */
.hero, .contrib, .timeline-section, .process,
.stories, .problem, .ambassador, .drives-section,
.pledge, .stats {
  background: transparent !important;
}
/* Subtle ink-tint bands so sections still feel separated on the light texture */
.stats          { background: transparent !important; border-color: transparent; border-left: 0; border-right: 0; }
.problem        { background: transparent !important; }
.drives-section { background: transparent !important; }
#distributions  { background: transparent !important; border-top-color: transparent !important; }
/* ── KRAFT-TEXTURED SECTIONS — replace solid ink with paper-on-paper depth ── */
.innovations,
.circular,
.sewa,
.partners {
  position: relative;
  z-index: 3;
  isolation: isolate;
  background-color: #dec18e;
  /* Kraft texture as a fixed full-viewport canvas — same approach as the
     body so the texture never tiles or shows seams on big screens. */
  background-image: url("assets/kraft-bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--green-deep);
}
/* iOS Safari fallback — fixed pseudo-element instead of fixed body background */
@supports (-webkit-touch-callout: none) {
  .innovations,
  .circular,
  .sewa,
  .partners { background-attachment: scroll; }
}
/* Soft top / bottom light gradient on kraft sections so they read as warm paper, not a flat slab */
.innovations::before,
.circular::before,
.sewa::before,
.partners::before {
  content: '';
  position: absolute; inset: 0;
  background:
    /* Top edge — fade from cream paper so the section boundary is soft */
    linear-gradient(180deg, rgba(245,239,226,0.35) 0%, transparent 120px),
    /* Bottom edge — gentle warm shadow */
    linear-gradient(0deg, rgba(120,80,30,0.10) 0%, transparent 80px),
    /* Painterly highlights so the kraft surface looks lit, not flat */
    radial-gradient(800px 240px at 50% 0%,   rgba(255,250,235,0.40), transparent 70%),
    radial-gradient(800px 240px at 50% 100%, rgba(120,80,30,0.10),   transparent 70%);
  pointer-events: none; z-index: 0;
}
.innovations > *,
.circular > *,
.sewa > *,
.partners > * {
  position: relative; z-index: 1;
}
footer {
  position: relative; z-index: 3;
  isolation: isolate;
  background-color: var(--green-deep);
  background-image:
    radial-gradient(900px 320px at 0% 0%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(700px 260px at 100% 12%, rgba(143,212,169,0.10), transparent 65%),
    linear-gradient(180deg, #0b5226 0%, #093f1d 100%);
  color: rgba(255,255,255,0.85);
  padding-top: 4.5rem;            /* plain flat top — standard footer spacing */
  padding-bottom: 2.5rem;
}
/* Subtle inner glow at the top edge — soft depth without any wave */
footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 160px;
  background:
    radial-gradient(120% 60px at 50% 0%, rgba(143,212,169,0.16), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
footer > * { position: relative; z-index: 2; }

/* (Notebook decoration removed — footer kept clean) */

/* Polish column headers — uppercase, larger, mint accent */
footer .foot-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 1.25rem;
}
footer .foot-col a { font-size: 0.95rem; letter-spacing: -0.005em; }

/* Dashed divider above the bottom credit row */
footer .foot-bottom {
  border-top: 1.5px dashed rgba(143,212,169,0.32);
  padding-top: 2rem;
  margin-top: 2.5rem;
}

/* === Footer responsive — desktop wide, tablet, phone, tiny phone === */
/* === BIG-SCREEN BALANCE ===========================================
   On wide desktops the 1180px container left huge paper gutters left
   and right. Below: widen the content responsively + drop subtle
   creative paper-fold accents into the side gutters so they read as
   intentional, not empty. ============================================ */

/* Large desktops (≥1400px) — widen content area */
@media (min-width: 1400px) {
  :root { --max: 1380px; }
  .sec { padding: 8rem 6rem; }
  .hero { padding: 7rem 6rem 6rem; }
  .hero-grid { gap: 6rem; }
  .hero-visual { max-width: 580px; height: 620px; }
  .hv-notebook { width: 380px; }
}

/* Ultra-wide screens (≥1600px) — even wider + gutter decor */
@media (min-width: 1600px) {
  :root { --max: 1480px; }
  .sec { padding: 8.5rem 8rem; }
  .hero { padding: 7.5rem 8rem 6.5rem; }

  /* Footer scaling on ultra-wide */
  footer { padding-top: 5.5rem; }

  /* Decorative paper-fold accents in the hero side gutters */
  .hero::after {
    content: '';
    position: absolute;
    inset: 8% 0 8% 0;
    pointer-events: none;
    z-index: 0;
    background:
      /* left gutter — soft vertical fold line */
      linear-gradient(180deg, transparent 0%, rgba(13,82,38,0.06) 40%, rgba(13,82,38,0.06) 60%, transparent 100%) left 4% top / 1px 100% no-repeat,
      /* right gutter — second fold line */
      linear-gradient(180deg, transparent 0%, rgba(13,82,38,0.05) 40%, rgba(13,82,38,0.05) 60%, transparent 100%) right 4% top / 1px 100% no-repeat,
      /* left small dot pattern */
      radial-gradient(circle 3px at 3% 20%, rgba(13,82,38,0.18), transparent 60%) no-repeat,
      radial-gradient(circle 3px at 3% 75%, rgba(13,82,38,0.14), transparent 60%) no-repeat,
      /* right small dot pattern */
      radial-gradient(circle 3px at 97% 30%, rgba(13,82,38,0.16), transparent 60%) no-repeat,
      radial-gradient(circle 3px at 97% 80%, rgba(13,82,38,0.12), transparent 60%) no-repeat;
  }
}

/* Cinema-wide screens (≥1920px) — let content breathe further */
@media (min-width: 1920px) {
  :root { --max: 1560px; }
  .sec { padding: 9rem 10rem; }
  .hero { padding: 8rem 10rem 7rem; }
  .hero-visual { max-width: 640px; height: 680px; }
  .hv-notebook { width: 400px; }
}

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  footer { padding-top: 4rem; }
}

/* Phones (≤720px) — tighter spacing */
@media (max-width: 720px) {
  footer { padding-top: 3.5rem; }
  footer::before { height: 110px; }
}

/* Small phones (≤480px) — tighter layout */
@media (max-width: 480px) {
  footer {
    padding-top: 3rem;
    padding-left: 1.25rem; padding-right: 1.25rem;
  }
  footer::before { height: 80px; }
}
footer .foot-brand .logo { color: #ffffff; }
footer .foot-desc { color: rgba(255,255,255,0.78); font-weight: 500; }
footer .foot-nps  { color: rgba(255,255,255,0.58); font-weight: 500; }
footer .foot-col h4 { color: var(--green-300); font-weight: 700; }
footer .foot-col a  { color: rgba(255,255,255,0.85); font-weight: 500; transition: color 0.2s var(--ease); }
footer .foot-col a:hover { color: var(--green-300); }
footer .foot-bottom { border-top-color: rgba(255,255,255,0.14); }
footer .foot-bottom p { color: rgba(255,255,255,0.65); font-weight: 500; }

/* ── KRAFT SECTIONS — refined green-on-kraft typography ── */
.innovations .h-eyebrow,
.circular .h-eyebrow,
.sewa .h-eyebrow,
.partners .h-eyebrow { color: var(--green-dark); font-weight: 700; }
.innovations .h-eyebrow::before,
.circular .h-eyebrow::before,
.sewa .h-eyebrow::before,
.partners .h-eyebrow::before { background: var(--green-dark); height: 2px; }

.innovations .h-title,
.circular .h-title,
.sewa .h-title,
.partners .h-title { color: var(--green-deep); }

.innovations .h-sub,
.circular .h-sub,
.sewa .h-sub,
.partners .h-sub {
  color: var(--green-deep);
  font-weight: 500;
  opacity: 0.95;
}
/* Body paragraph contrast inside kraft sections */
.partners .p-benefit p   { color: var(--green-deep); font-weight: 600; }

/* ── CARD BASE on kraft — solid white with warm shadow ── */
.innovations .chart-card,
.partners .p-form-card {
  background: #ffffff;
  border: 1px solid rgba(13,82,38,0.10);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 14px 28px -14px rgba(80,55,20,0.30),
    0 4px 10px -2px rgba(80,55,20,0.10);
  backdrop-filter: none;
}

/* Innovations chart cards — same solid treatment */
.innovations .chart-card { transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.innovations .chart-card:hover { border-color: var(--green-200); }
.innovations .chart-label  { color: var(--green-dark); font-weight: 700; }
.innovations .chart-val    { color: var(--green-deep); }
.innovations .chart-val .pct { color: var(--green-dark); }
.innovations .chart-sub    { color: rgba(11,82,38,0.78); }
.innovations .bar-label    { color: rgba(11,82,38,0.85); font-weight: 500; }
.innovations .bar-track    { background: rgba(13,82,38,0.10); }
.innovations .bar-num      { color: var(--green-deep); font-weight: 800; }
.innovations .circ-bg      { stroke: rgba(13,82,38,0.10); }
.innovations .circ-val     { color: var(--green-deep); }
.innovations .circ-val sup { color: var(--green-dark); }
.innovations .circ-text h5 { color: var(--green-deep); font-weight: 700; }
.innovations .circ-text p  { color: rgba(11,82,38,0.78); }
.innovations .line-grid    { stroke: rgba(13,82,38,0.10); }
.innovations .line-x       { color: rgba(11,82,38,0.78); font-weight: 500; }

/* SEWA section title color (h3 = block titles inside .sewa-block) */
.sewa h3 { color: var(--green-deep); }

/* ── PARTNERS ── */
.partners .p-benefit .dot { background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); color: #fff; box-shadow: 0 4px 8px rgba(22,163,74,0.25); }
.partners .p-benefit p { color: rgba(11,82,38,0.85); font-weight: 500; }
.partners .p-form-card h3 { color: var(--green-deep); font-weight: 700; }
.partners .p-form-card .fg label { color: var(--green-dark); font-weight: 700; }
.partners .p-form-card .fg input,
.partners .p-form-card .fg select {
  background: #ffffff;
  border-color: rgba(13,82,38,0.18);
  color: var(--green-deep);
}
.partners .p-form-card .fg input::placeholder { color: rgba(11,82,38,0.5); }
.partners .p-form-card .fg input:focus,
.partners .p-form-card .fg select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.18);
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
.h-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green-dark);
}
.h-eyebrow::before {
  content: ''; width: 22px; height: 1.5px; background: var(--green); border-radius: 2px;
}
.h-title {
  font-family: 'TT Hoves Pro', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 0.85rem;
}
.h-title em { font-style: normal; color: var(--green); font-weight: 600; }
.h-sub {
  font-size: 1.025rem; color: var(--muted); max-width: 620px;
  margin-top: 1.1rem; line-height: 1.7;
}

/* ── ICONS ── */
.icon { display: inline-flex; width: 1em; height: 1em; vertical-align: -0.15em; }
.icon svg { width: 100%; height: 100%; }
i[data-icon] { display: inline-flex; }

/* ── LOGO ── */
.logo {
  display: inline-flex; align-items: center;
  line-height: 0;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.logo:hover { opacity: 0.85; }
.logo-img {
  height: 26px; width: auto;
  display: block;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  height: 68px;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s var(--ease);
}
nav.scrolled { box-shadow: 0 6px 22px rgba(15,17,21,0.06); }
.nav-links { display: flex; gap: 2.1rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  position: relative;
  z-index: 1;
  padding: 4px 2px;
  transition: color 0.2s var(--ease);
}
/* Hand-drawn marker CIRCLE that wraps the link text on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  inset: -4px -12px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' preserveAspectRatio='none' fill='none' stroke='%2316a34a' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M22,7 C 11,11 3,18 5,24 C 8,33 24,37 50,37 C 78,37 96,32 96,22 C 96,11 78,4 50,5 C 36,5 26,7 18,11'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  opacity: 0;
  transform: scale(0.92) rotate(-2deg);
  transform-origin: center;
  transition: opacity 0.35s var(--ease), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: -1;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
/* nav-cta is now a .btn.btn-primary — give it a tighter chip + padding for the navbar */
.nav-cta { font-size: 0.85rem; padding: 0.3rem 1.05rem 0.3rem 0.3rem !important; }
.nav-cta .btn-chip { width: 30px; height: 30px; }
.nav-cta .btn-chip .icon { width: 13px; height: 13px; }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: 0.2s; }

/* ── BUTTONS — Voilla-style chip pills ── */
.btn {
  display: inline-flex; align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1.4rem 0.4rem 0.4rem;   /* tight on left so the chip nests flush */
  border-radius: 999px;
  font-weight: 600; font-size: 0.92rem;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
/* The chip — a circular icon container that sits inside the pill */
.btn-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out), background 0.25s var(--ease);
}
.btn-chip .icon { width: 16px; height: 16px; }

/* Primary — dark green pill, lighter-green chip with arrow */
.btn-primary {
  background: var(--green-deep);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 10px 26px -8px rgba(11,82,38,0.42);
}
.btn-primary .btn-chip {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 10px rgba(22,163,74,0.34);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.10) inset,
    0 16px 32px -8px rgba(11,82,38,0.5);
}
.btn-primary:hover .btn-chip { transform: rotate(-45deg); }

/* Ghost — outline button with a green chip */
.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--green-deep);
  border-color: var(--green-200);
}
.btn-ghost .btn-chip {
  background: var(--green-50);
  color: var(--green-dark);
  border: 1px solid var(--green-200);
}
.btn-ghost:hover {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
  transform: translateY(-2px);
}
.btn-ghost:hover .btn-chip {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: rotate(-45deg);
}

/* Accent — solid green */
.btn-accent {
  background: var(--green); color: #fff;
  box-shadow: 0 10px 26px -8px rgba(22,163,74,0.4);
}
.btn-accent .btn-chip { background: var(--green-deep); color: #fff; }
.btn-accent:hover { transform: translateY(-2px); background: var(--green-dark); }
.btn-accent:hover .btn-chip { transform: rotate(-45deg); }

/* Inline link variant — for "See how it works →" style */
.btn-link {
  background: transparent;
  color: var(--green-deep);
  padding: 0.85rem 0;
  border: 0;
  font-weight: 600;
}
.btn-link:hover { color: var(--green); gap: 0.9rem; }
.btn-link .btn-arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.btn-link:hover .btn-arrow { transform: translateX(4px); }

/* Old trailing-arrow buttons that don't use a chip — keep them tidy */
.btn:not(:has(.btn-chip)) { padding: 0.85rem 1.6rem; }
.btn-arrow { display: inline-flex; transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ── SECTION SHELL ── */
section { position: relative; }
.sec { padding: 7rem 4.5rem; }
.sec-tight { padding: 5rem 4.5rem; }
.sec-in { max-width: var(--max); margin: 0 auto; }
.sec-head { text-align: left; margin-bottom: 3.5rem; }
.sec-head .h-sub { margin-top: 0.9rem; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 6rem 4.5rem 5rem;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: -20% -10% 0 -10%;
  background: var(--gradient-soft);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem; align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 700; letter-spacing: -0.035em; line-height: 1.04;
  margin-top: 1.1rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800;
}
.hero-desc {
  font-size: 1.075rem; color: var(--muted);
  max-width: 480px; margin: 1.4rem 0 2.25rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 3rem; display: flex; align-items: center; gap: 1.1rem;
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2.5px solid #fff; background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  margin-left: -10px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--charcoal);
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-avatars span:nth-child(1){ background: linear-gradient(135deg,#dcfce7,#bbf7d0); color: var(--green-deep); }
.trust-avatars span:nth-child(2){ background: linear-gradient(135deg,#fef3c7,#fde68a); color: #92400e; }
.trust-avatars span:nth-child(3){ background: linear-gradient(135deg,#dbeafe,#bfdbfe); color: #1e40af; }
.trust-avatars span:nth-child(4){ background: linear-gradient(135deg,#fce7f3,#fbcfe8); color: #9d174d; }
.trust-text { font-size: 0.85rem; color: var(--muted); line-height: 1.45; }
.trust-text strong { color: var(--ink); font-weight: 600; }

/* ── Hero eyebrow as a pill chip (creative) ── */
.hero-eyebrow {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--green-200);
  border-radius: 999px;
  padding: 0.42rem 0.95rem 0.42rem 0.65rem;
  box-shadow: 0 8px 18px -10px rgba(11,82,38,0.20);
  letter-spacing: 0.1em;
  color: var(--green-deep);
}
.hero-eyebrow::before { display: none; }
.hero-eyebrow .he-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.18);
  animation: hePulse 2s ease-in-out infinite;
  margin-right: 4px;
}
@keyframes hePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70%      { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}


/* ── HERO VISUAL — refined editorial composition ── */
.hero-visual {
  position: relative; width: 100%; max-width: 520px;
  height: 580px; margin-left: auto;
  isolation: isolate;
}

/* Decorative background — soft halo + rings + dots */
.hv-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* Soft green halo blooming behind the notebook */
.hv-bg::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 78%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 50%,
      rgba(143,212,169,0.45) 0%,
      rgba(143,212,169,0.22) 38%,
      rgba(143,212,169,0.04) 64%,
      transparent 78%);
  filter: blur(2px);
  z-index: 0;
}
/* Soft warm wash on the opposite diagonal */
.hv-bg::after {
  content: '';
  position: absolute;
  right: -10%; bottom: -6%;
  width: 60%; aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(222,193,142,0.30) 0%,
      rgba(222,193,142,0.10) 45%,
      transparent 70%);
  filter: blur(1px);
  z-index: 0;
}
.hv-bg-dot {
  position: absolute;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.10);
}
.hv-bg-dot--1 { top: 6%;  left: 6%;  animation: hvDot 6s ease-in-out infinite; }
.hv-bg-dot--2 { top: 80%; right: 10%; animation: hvDot 7s ease-in-out infinite reverse; width: 7px; height: 7px; }
.hv-bg-ring {
  position: absolute;
  top: 8%; right: 2%;
  width: 130px; height: 130px;
  border: 1.5px dashed var(--green-200);
  border-radius: 50%;
  opacity: 0.55;
  animation: hvRing 26s linear infinite;
}
/* Second concentric ring for depth */
.hv-bg-ring::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dotted var(--green-300);
  border-radius: 50%;
  opacity: 0.5;
}
/* Small inner accent dot on the ring */
.hv-bg-ring::after {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.7);
  transform: translateX(-50%);
}
@keyframes hvDot { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes hvRing { to { transform: rotate(360deg); } }

/* Decorative eco-stamp — proper icon badge: recycle symbol + RECYCLED label */
.hero-visual::before {
  content: 'RECYCLED';
  position: absolute;
  bottom: 68px; left: -10px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--green);
  display: grid;
  align-content: end;
  justify-content: center;
  padding-bottom: 17px;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--green-deep);
  text-align: center;
  box-shadow:
    0 20px 36px -14px rgba(11,82,38,0.32),
    0 6px 14px -4px rgba(11,82,38,0.18);
  transform: rotate(-8deg);
  z-index: 4;
  pointer-events: none;
}
/* Lucide-style 3-arrow recycle symbol perfectly centered above the label */
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 68px; left: -10px;
  width: 96px; height: 96px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5'/%3E%3Cpath d='M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12'/%3E%3Cpath d='m14 16-3 3 3 3'/%3E%3Cpath d='M8.293 13.596 7.196 9.5 3.1 10.598'/%3E%3Cpath d='m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843'/%3E%3Cpath d='m13.378 9.633 4.096 1.098 1.097-4.096'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 24px;
  background-size: 36px 36px;
  transform: rotate(-8deg);
  z-index: 5;
  pointer-events: none;
}

/* Drifting leaves in the hero background */
.hv-leaf {
  position: absolute;
  width: 28px; height: 28px;
  color: var(--green);
  opacity: 0.35;
  pointer-events: none;
}
.hv-leaf--1 {
  top: 14%; left: 6%;
  transform: rotate(-22deg);
  animation: hvLeafFloat 9s ease-in-out infinite;
}
.hv-leaf--2 {
  bottom: 24%; right: 4%;
  transform: rotate(40deg) scale(0.85);
  opacity: 0.28;
  animation: hvLeafFloat 11s ease-in-out infinite reverse;
}
@keyframes hvLeafFloat {
  0%, 100% { transform: rotate(-22deg) translate(0, 0); }
  50%      { transform: rotate(-22deg) translate(4px, -10px); }
}

/* ── NOTEBOOK — actual product photo ── */
.hv-notebook {
  position: absolute;
  left: 50%; top: 50%;
  width: 360px; height: auto;          /* renders ~420px tall — slightly bigger hero presence */
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 42px 70px rgba(70,40,15,0.32))
    drop-shadow(0 18px 28px rgba(70,40,15,0.18))
    drop-shadow(0 0 36px rgba(22,163,74,0.10));
  animation: hvFloatBook 8s ease-in-out infinite;
  z-index: 2;
  -webkit-user-drag: none;
  user-select: none;
}

/* ── TOP-RIGHT STAT CARD ── */
.hv-stat {
  position: absolute;
  top: 18px; right: -8px;
  width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  box-shadow:
    0 28px 50px -20px rgba(15,17,21,0.22),
    0 10px 18px -8px rgba(15,17,21,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: rotate(3deg);
  animation: hvFloatA 7s ease-in-out infinite;
  z-index: 3;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hv-stat:hover {
  box-shadow:
    0 34px 60px -22px rgba(15,17,21,0.28),
    0 14px 22px -10px rgba(22,163,74,0.18);
}
/* Tiny corner accent — a sticker-like dot */
.hv-stat::before {
  content: '';
  position: absolute;
  top: -6px; right: 16px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid #fff;
  box-shadow: 0 4px 10px -2px rgba(22,163,74,0.45);
}
.hv-stat-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.hv-stat-label {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.hv-stat-mini-chart { display: inline-flex; align-items: end; gap: 2px; height: 14px; }
.hv-stat-mini-chart span {
  display: block; width: 3px; background: var(--green-200); border-radius: 1px;
  animation: hvMiniChart 3s ease-in-out infinite;
}
.hv-stat-mini-chart span:nth-child(1) { height: 30%; animation-delay: 0s; }
.hv-stat-mini-chart span:nth-child(2) { height: 50%; animation-delay: 0.2s; }
.hv-stat-mini-chart span:nth-child(3) { height: 70%; animation-delay: 0.4s; background: var(--green); }
.hv-stat-mini-chart span:nth-child(4) { height: 60%; animation-delay: 0.6s; background: var(--green); }
.hv-stat-mini-chart span:nth-child(5) { height: 90%; animation-delay: 0.8s; background: var(--green-dark); }
@keyframes hvMiniChart {
  0%,100% { transform: scaleY(1); }
  50%     { transform: scaleY(1.15); }
}
.hv-stat-val {
  font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--ink); margin-top: 6px;
  display: flex; align-items: baseline; gap: 1px;
  font-variant-numeric: tabular-nums;
}
.hv-stat-unit { font-size: 0.55em; color: var(--green-dark); font-weight: 700; margin-left: 3px; letter-spacing: 0; }
.hv-stat-trend {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 2px;
  font-size: 0.7rem; color: var(--green-dark); font-weight: 700;
}
.hv-stat-trend .icon { width: 0.9em; height: 0.9em; color: var(--green); }

/* ── BOTTOM-RIGHT CONTRIBUTOR CARD ── */
.hv-contrib {
  position: absolute;
  bottom: 20px; right: -12px;
  width: 232px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.9rem 1.05rem;
  box-shadow:
    0 28px 46px -20px rgba(15,17,21,0.20),
    0 10px 18px -8px rgba(15,17,21,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: rotate(-2.5deg);
  animation: hvFloatB 9s ease-in-out infinite;
  display: flex; align-items: center; gap: 0.7rem;
  z-index: 3;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hv-contrib:hover {
  box-shadow:
    0 34px 56px -22px rgba(15,17,21,0.26),
    0 14px 22px -10px rgba(22,163,74,0.16);
}
/* Hairline gradient accent stripe along the top */
.hv-contrib::before {
  content: '';
  position: absolute;
  top: 0; left: 14px; right: 14px;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-300) 50%, transparent 100%);
  opacity: 0.7;
}
.hv-contrib-avs { display: flex; flex-shrink: 0; }
.hv-contrib-avs span {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #fff;
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: -10px;
}
.hv-contrib-avs span:first-child  { margin-left: 0; background: linear-gradient(135deg, #dbeafe, #93c5fd); color: #1e3a8a; }
.hv-contrib-avs span:nth-child(2) { background: linear-gradient(135deg, #fef3c7, #fcd34d); color: #92400e; }
.hv-contrib-avs span:nth-child(3) { background: linear-gradient(135deg, #f0fdf4, #c8ecd5); color: var(--green-deep); }
.hv-contrib-avs span:nth-child(4) { background: var(--ink); color: #fff; font-size: 11px; }
.hv-contrib-text { line-height: 1.15; min-width: 0; }
.hv-contrib-num {
  font-size: 1.1rem; font-weight: 800; color: var(--ink); letter-spacing: -0.025em;
  display: inline-flex; align-items: baseline;
}
.hv-contrib-num em { font-style: normal; color: var(--green-dark); margin-left: 1px; }
.hv-contrib-label { font-size: 0.68rem; color: var(--muted); margin-top: 2px; }

/* ── TOP-LEFT LIVE PILL ── */
.hv-live {
  position: absolute;
  top: 8px; left: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem 0.55rem 0.7rem;
  font-size: 0.74rem; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.55rem;
  box-shadow:
    0 18px 32px -14px rgba(15,17,21,0.18),
    0 6px 12px -6px rgba(15,17,21,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  animation: hvFloatLive 6s ease-in-out infinite;
  z-index: 3;
  letter-spacing: 0.01em;
}
.hv-live .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
  animation: hvPulse 2s ease-in-out infinite;
}

/* ── BOTTOM-LEFT STUDENT TAG ── */
.hv-tag {
  position: absolute;
  bottom: 14px; left: 10px;
  background: linear-gradient(135deg, #0b5226 0%, #093f1d 100%);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 1rem 0.55rem 0.45rem;
  font-size: 0.74rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.55rem;
  box-shadow:
    0 20px 36px -12px rgba(11,82,38,0.55),
    0 8px 14px -6px rgba(11,82,38,0.30),
    inset 0 1px 0 rgba(255,255,255,0.12);
  animation: hvFloatTag 8s ease-in-out infinite;
  z-index: 3;
  letter-spacing: 0.01em;
}
.hv-tag-ico {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.hv-tag-ico .icon { width: 13px; height: 13px; }

/* ── ANIMATIONS ── */
@keyframes hvFloatBook {
  0%,100% { transform: translate(-50%, -50%); }
  50%     { transform: translate(-50%, calc(-50% - 8px)); }
}
@keyframes hvFloatA {
  0%,100% { transform: rotate(3deg) translateY(0); }
  50%     { transform: rotate(3deg) translateY(-6px); }
}
@keyframes hvFloatB {
  0%,100% { transform: rotate(3deg) translateY(0); }
  50%     { transform: rotate(3deg) translateY(-7px); }
}
@keyframes hvFloatLive {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}
@keyframes hvFloatTag {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
@keyframes hvPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70%     { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}

/* ── STATS COUNTER BAR ── */
.stats {
  display: none;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem 1.25rem;
  text-align: left;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), background 0.4s var(--ease), box-shadow 0.35s var(--ease);
}
.stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,163,74,0) 0%, rgba(22,163,74,0.06) 100%);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-200);
  background: linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
  box-shadow: var(--shadow-md);
}
.stat-card:hover::before { opacity: 1; }
.stat-card .num {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.025em; color: var(--ink);
  line-height: 1; white-space: nowrap;
  display: inline-flex; align-items: baseline; gap: 1px;
  margin-top: 0.55rem;
}
.stat-card .num .suffix { font-size: 0.62em; color: var(--green-dark); font-weight: 700; margin-left: 2px; }
.stat-card .label { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 0.45rem; line-height: 1.4; }
.stat-card .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--green-50); color: var(--green-dark);
  border-radius: 9px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  align-self: flex-start;
}
.stat-card .ico .icon { width: 16px; height: 16px; }
.stat-card:hover .ico { background: var(--green); color: #fff; transform: scale(1.05); }

/* ── CONTRIB BREAKDOWN ── */
.contrib { background: var(--bg); }
.contrib .sec-head { text-align: center; max-width: 880px; margin-left: auto; margin-right: auto; }
.contrib .sec-head .h-eyebrow { justify-content: center; }
.contrib .sec-head .h-eyebrow::before { display: none; }
.contrib .sec-head .h-sub { margin-left: auto; margin-right: auto; max-width: 720px; }
.contrib-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .contrib-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}
@media (max-width: 640px) {
  .contrib-grid { grid-template-columns: 1fr; max-width: 420px; }
}
.contrib-card {
  background: var(--gradient-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), background 0.4s var(--ease), box-shadow 0.35s var(--ease);
}
.contrib-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(22,163,74,0) 0%, rgba(22,163,74,0.08) 100%);
  opacity: 0; transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.contrib-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-200);
  background: linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
  box-shadow: var(--shadow-md);
}
.contrib-card:hover::before { opacity: 1; }
.contrib-card > * { position: relative; }
.contrib-card .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-50); color: var(--green-dark);
  margin-bottom: 1.1rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.contrib-card .badge .icon { width: 22px; height: 22px; }
.contrib-card:hover .badge { background: var(--green); color: #fff; }
.contrib-card:hover .badge { transform: scale(1.05); }
.contrib-card .num {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.025em;
  color: var(--ink); line-height: 1;
  white-space: nowrap;
}
.contrib-card .num em { font-style: normal; color: var(--green); }
.contrib-card .sub-label {
  font-size: 0.78rem; font-weight: 600; color: var(--green-dark);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 0.7rem;
}
.contrib-card p { color: var(--muted); font-size: 0.92rem; margin-top: 0.8rem; line-height: 1.65; }
.contrib-card strong { color: var(--ink); font-weight: 600; }

/* ── PROBLEM ── */
.problem { background: transparent; }
.prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.prob-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.prob-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prob-card .icon-pill {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-warm); color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.prob-card .icon-pill .icon { width: 22px; height: 22px; }
.prob-card.need .icon-pill { background: var(--green-50); color: var(--green-dark); }
.prob-card .num-xl {
  font-size: 3rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--ink); line-height: 1;
}
.prob-card.need .num-xl { color: var(--green-dark); }
.prob-card .note {
  font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-top: 0.4rem;
}
.prob-card h3 {
  font-size: 1.2rem; font-weight: 700; margin-top: 1.2rem;
  letter-spacing: -0.015em;
}
.prob-card p { color: var(--muted); font-size: 0.95rem; margin-top: 0.6rem; line-height: 1.7; }

.insight-banner {
  background-color: #dec18e;
  background-image: url("assets/kraft-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--green-deep);
  border: 1px solid rgba(13,82,38,0.16);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.insight-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 50% -20%, rgba(22,163,74,0.18), transparent 70%);
  pointer-events: none;
}
.insight-banner blockquote {
  position: relative;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 600; line-height: 1.5; max-width: 760px; margin: 0 auto;
  letter-spacing: -0.015em;
  color: var(--green-deep);
}
.insight-banner blockquote::before {
  content: '"'; font-size: 4rem; font-weight: 700; color: var(--green-dark);
  display: block; line-height: 0.5; margin-bottom: 1rem;
}
.insight-banner p { position: relative; color: rgba(11,82,38,0.72); font-size: 0.95rem; margin-top: 1.25rem; }

/* ── PROCESS — 7 steps, premium layout ── */
.process { background: var(--bg); overflow: visible; }

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3.5rem;
  margin-top: 2.5rem;
}

/* ── PROC RAIL — sticky, premium ── */
.proc-rail {
  position: sticky;
  top: 100px;
  align-self: start;
  height: max-content;
  padding: 0.5rem 0;
}
.proc-rail-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 1rem; margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.proc-rail-label {
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted-2);
}
.proc-rail-current {
  font-size: 1.55rem; font-weight: 800; letter-spacing: -0.025em;
  color: var(--ink); font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 1px;
}
.proc-rail-current .of { font-size: 0.78rem; color: var(--muted-2); font-weight: 600; margin-left: 2px; }
.proc-rail-current span#procCurrentNum {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.proc-rail-current.bump #procCurrentNum { transform: translateY(-3px); }

.proc-rail-body { position: relative; padding-left: 2px; }
.proc-rail-track {
  position: absolute; left: 23px; top: 22px; bottom: 22px;
  width: 2px;
  background: var(--line-2);
  border-radius: 2px; overflow: hidden;
}
.proc-rail-fill {
  position: absolute; left: 0; top: 0; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(22,163,74,0.45);
  transition: height 0.8s var(--ease-out);
}

.proc-rail-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.proc-rail-steps li {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.92rem; font-weight: 500; color: var(--muted-2);
  cursor: pointer;
  padding: 0.55rem 0.7rem 0.55rem 0;
  border-radius: 8px;
  position: relative;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.proc-rail-steps li:hover { color: var(--ink); transform: translateX(2px); }
.proc-rail-steps li:hover .dot { border-color: var(--green-200); }

.proc-rail-steps li .dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--line-2);
  font-size: 0.82rem; font-weight: 700; color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0; position: relative; z-index: 2;
  transition: all 0.45s var(--ease-out);
}
.proc-rail-steps li .lbl { flex: 1; line-height: 1.3; }
.proc-rail-steps li .chev {
  font-size: 1rem; color: var(--green);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

/* DONE state — green check overlay */
.proc-rail-steps li.done { color: var(--ink-2); }
.proc-rail-steps li.done .dot {
  background: var(--green-50);
  border-color: var(--green-200);
  color: transparent;
}
.proc-rail-steps li.done .dot::before {
  content: '';
  position: absolute;
  width: 14px; height: 8px;
  border-left: 2.2px solid var(--green-dark);
  border-bottom: 2.2px solid var(--green-dark);
  transform: rotate(-45deg) translateY(-2px);
  animation: railCheckIn 0.45s var(--ease-out);
}
@keyframes railCheckIn {
  from { transform: rotate(-45deg) translateY(-2px) scale(0); opacity: 0; }
  to   { transform: rotate(-45deg) translateY(-2px) scale(1); opacity: 1; }
}

/* ACTIVE state — ink-filled with green ring */
.proc-rail-steps li.active {
  color: var(--ink); font-weight: 600;
  background: var(--bg-soft);
}
.proc-rail-steps li.active .dot {
  background: var(--ink); border-color: var(--ink); color: #fff;
  transform: scale(1.06);
  box-shadow: 0 0 0 4px var(--green-50), 0 10px 22px -8px rgba(15,17,21,0.35);
}
.proc-rail-steps li.active .chev {
  opacity: 1; transform: translateX(0);
}

/* ── MOBILE / TABLET MINI RAIL ── */
.proc-mini { display: none; }

/* Steps — sticky pin: only the active step's side-by-side card is visible */
.proc-steps {
  display: flex; flex-direction: column;
}

.proc-step {
  position: relative;
  min-height: 95vh;       /* scroll slot — drives the "one step at a time" feel */
  display: flex;
  align-items: stretch;
  scroll-margin-top: 40px;
}

.proc-step-grid {
  position: sticky;
  top: 110px;
  min-height: calc(100vh - 140px);   /* fill the viewport below nav */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;               /* center text + visual vertically as a pair */
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.proc-step.in .proc-step-grid {
  opacity: 1;
  transform: translateY(0);
}

.proc-step-grid > .proc-step-text   { grid-column: 1; }
.proc-step-grid > .proc-step-visual { grid-column: 2; }

/* Step number — proper inline element, sits above the eyebrow with breathing room */
.proc-step-num {
  display: block;
  font-size: clamp(2.5rem, 3.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-variant-numeric: tabular-nums;
  position: relative;
  padding-left: 2.3rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s var(--ease) 0.1s, transform 0.55s var(--ease) 0.1s;
}
.proc-step-num::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1.6rem; height: 1.5px;
  background: var(--green);
  border-radius: 2px;
}
.proc-step.in .proc-step-num { opacity: 1; transform: translateY(0); }

.proc-step-text { padding-top: 0; }
.proc-tag {
  display: inline-flex; align-items: center;
  font-size: 0.7rem; font-weight: 700; color: var(--green-dark);
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--green-50); border: 1px solid var(--green-200);
  padding: 0.35rem 0.8rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.proc-step-text h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.proc-step-text p {
  font-size: 1rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 460px;
}
.proc-step-facts {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.proc-step-facts li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.92rem; color: var(--ink-2);
}
.proc-step-facts li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  margin-top: 0.55rem;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.12);
}
.proc-step-facts li strong { color: var(--ink); font-weight: 700; margin-right: 0; }

/* Visual */
.proc-step-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.proc-step-visual::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  opacity: 0; transform: scale(0.96);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.proc-step.in .proc-step-visual::before {
  opacity: 1; transform: scale(1);
}
.proc-illu {
  position: relative;
  width: 100%; max-width: 380px;
  height: auto; aspect-ratio: 340/280;
  padding: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(15,17,21,0.06));
}

/* Per-step illustration reveal — staggered layers */
.proc-illu .proc-anim-1,
.proc-illu .proc-anim-2,
.proc-illu .proc-anim-3 {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transform-origin: center;
}
.proc-step.in .proc-illu .proc-anim-1 { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.proc-step.in .proc-illu .proc-anim-2 { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.proc-step.in .proc-illu .proc-anim-3 { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

.proc-spin { transform-origin: center; transform-box: fill-box; }
.proc-step.in .proc-spin { animation: procSpin 4s linear infinite; transition-delay: 0.7s; }
@keyframes procSpin { to { transform: rotate(360deg); } }

/* Connect each visual to a soft pattern dot */
.proc-step-visual .proc-illu { position: relative; z-index: 1; }
.proc-step-visual::after {
  content: ''; position: absolute; right: -8px; top: -8px;
  width: 80px; height: 80px;
  border: 1.5px dashed var(--green-200); border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out) 0.4s, transform 0.8s var(--ease-out) 0.4s;
  transform: scale(0.6) rotate(-20deg);
  pointer-events: none;
}
.proc-step.in .proc-step-visual::after { opacity: 0.6; transform: scale(1) rotate(0); }

/* Three outcome cards below */
.three-steps {
  margin-top: 5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.ts-card {
  background: var(--gradient-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ts-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.ts-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.ts-card:hover::before { transform: scaleX(1); }
.ts-no {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--green-dark); text-transform: uppercase;
}
.ts-card .ts-icon {
  margin-top: 0.5rem;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-50); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.ts-card .ts-icon .icon { width: 20px; height: 20px; }
.ts-card:hover .ts-icon { background: var(--green); color: #fff; }
.ts-card h3 { font-size: 1.1rem; font-weight: 700; margin-top: 1rem; letter-spacing: -0.01em; }
.ts-card p { color: var(--muted); font-size: 0.92rem; margin-top: 0.55rem; line-height: 1.7; }
.ts-card strong { color: var(--ink); font-weight: 600; }

/* ── INNOVATIONS / CHARTS ── */
.innovations {
  overflow: hidden;
}
/* Innovations — restructured: centered head + 3-card showcase deck */
.inno-head {
  max-width: 760px;
  margin: 0 auto 3.25rem;
  text-align: center;
}
.inno-head .h-eyebrow { justify-content: center; }
.inno-head .h-eyebrow::before { display: none; }
.inno-head .h-title { margin-top: 0.6rem; }
.inno-head .h-sub { margin: 1.1rem auto 0; }

/* ── CIRCULAR ECONOMY SECTION — mirrors .inno-card design exactly ── */
.circ-head {
  max-width: 880px;
  margin: 0 auto 3.25rem;
  text-align: center;
}
.circ-head .h-eyebrow { justify-content: center; }
.circ-head .h-eyebrow::before { display: none; }
.circ-head .h-title { margin-top: 0.6rem; }
.circ-head .h-sub { margin: 1.1rem auto 0; }

.circ-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.circ-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--green-200);
  border-radius: 22px;
  padding: 1.85rem 1.6rem 1.75rem;
  display: flex; flex-direction: column;
  isolation: isolate;
  z-index: 1;
  overflow: visible;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
  box-shadow:
    0 18px 36px -22px rgba(11,82,38,0.22),
    0 6px 14px -6px rgba(11,82,38,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.circ-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(420px 240px at 50% -20%, rgba(143,212,169,0.18), transparent 60%);
  pointer-events: none; z-index: -1;
}
.circ-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow:
    0 30px 50px -22px rgba(11,82,38,0.32),
    0 12px 20px -10px rgba(22,163,74,0.22);
}

/* Number badge — identical to .inno-stick */
.circ-card .cc-no {
  position: absolute;
  top: -18px; left: 24px;
  min-width: 54px; height: 44px;
  padding: 0 0.85rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 12px;
  border: 3px solid #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  transform: rotate(-4deg);
  box-shadow:
    0 14px 26px -10px rgba(11,82,38,0.45),
    0 4px 10px -2px rgba(11,82,38,0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
  z-index: 3;
  transition: transform 0.35s var(--ease);
}
.circ-card:hover .cc-no {
  transform: rotate(-2deg) translateY(-2px) scale(1.04);
}

/* Visual mockup area — identical to .inno-visual */
.circ-card .cc-visual {
  position: relative;
  margin: 0.5rem -0.4rem 1.1rem;
  height: 130px;
  border-radius: 14px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(143,212,169,0.20), transparent 70%),
    linear-gradient(180deg, var(--green-50) 0%, #ffffff 100%);
  border: 1px dashed rgba(22,163,74,0.25);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.circ-card .cc-visual svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 8px 14px rgba(11,82,38,0.10));
  transition: transform 0.5s var(--ease);
}
.circ-card:hover .cc-visual svg { transform: scale(1.04); }

.circ-card h3 {
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--green-deep);
  line-height: 1.28;
  margin-bottom: 0.4rem;
}
.circ-card .cc-sub {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.01em;
  margin-bottom: 0.7rem;
}
.circ-card .cc-body {
  font-size: 0.95rem;
  color: rgba(11,82,38,0.82);
  line-height: 1.62;
  font-weight: 500;
  margin: 0;
}

/* Bottom callout — solid card with subtle green halos */
.circ-quote {
  background: #ffffff;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  padding: 3.25rem 2.5rem 2.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 22px 44px -20px rgba(11,82,38,0.30),
    0 8px 16px -6px rgba(11,82,38,0.14),
    inset 0 1px 0 rgba(255,255,255,0.95);
}
.circ-quote::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 280px at 50% -10%, rgba(143,212,169,0.30), transparent 65%),
    radial-gradient(500px 220px at 50% 110%, rgba(143,212,169,0.20), transparent 65%);
  pointer-events: none;
}
.circ-quote > * { position: relative; z-index: 1; }

/* Eyebrow chip at the top of the callout */
.circ-quote .cq-eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(13,82,38,0.20);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

/* Decorative quote-mark SVG icon above the blockquote */
.circ-quote .cq-quote-mark {
  width: 38px; height: 38px;
  color: var(--green);
  margin: 0 auto 0.85rem;
  display: block;
  opacity: 0.85;
}

/* Main blockquote — bigger, more polished */
.circ-quote blockquote {
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  max-width: 920px;
  margin: 0 auto;
  letter-spacing: -0.015em;
  color: var(--green-deep);
}
/* Highlight place names with a soft green underline-mark */
.circ-quote .cq-place {
  font-style: normal;
  font-weight: 700;
  color: var(--green-dark);
  background: linear-gradient(180deg, transparent 62%, rgba(22,163,74,0.22) 62% 92%, transparent 92%);
  padding: 0 0.15rem;
}
/* Emphasised key phrase "brand new" */
.circ-quote blockquote strong {
  font-style: normal;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.01em;
}

/* Divider with the brand leaf in the middle */
.circ-quote .cq-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.85rem;
  margin: 1.75rem auto 1.1rem;
  max-width: 320px;
  color: var(--green);
}
.circ-quote .cq-divider span {
  flex: 1; height: 1px;
  background: rgba(13,82,38,0.28);
}
.circ-quote .cq-divider svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* Smaller summary line */
.circ-quote p {
  color: rgba(11,82,38,0.85);
  font-size: 1rem;
  margin: 0 auto 1.35rem;
  max-width: 540px;
  line-height: 1.55;
  font-weight: 500;
}

/* Closing certification badge */
.circ-quote .cq-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #ffffff;
  padding: 0.6rem 1.15rem 0.6rem 0.85rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  box-shadow:
    0 12px 24px -10px rgba(22,163,74,0.45),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.circ-quote .cq-badge svg {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
  padding: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .circ-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 720px) {
  .circ-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .circ-card .cc-visual { height: 110px; }
  .circ-quote { padding: 2.25rem 1.5rem 1.85rem; }
  .circ-quote .cq-quote-mark { width: 30px; height: 30px; }
  .circ-quote blockquote { font-size: 1.15rem; }
  .circ-quote .cq-divider { margin: 1.25rem auto 0.85rem; max-width: 220px; }
  .circ-quote .cq-badge { font-size: 0.78rem; padding: 0.5rem 0.9rem 0.5rem 0.7rem; }
  .circ-quote .cq-badge svg { width: 18px; height: 18px; padding: 3px; }
}

.inno-deck {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: stretch;
  justify-content: center;       /* centers orphan cards in last row (04+05) */
}
.inno-card {
  flex: 0 1 calc((100% - 3rem) / 3);  /* 3 per row at desktop, accounting for two 1.5rem gaps */
}
@media (max-width: 1024px) {
  .inno-card { flex-basis: calc((100% - 1.5rem) / 2); }
}
@media (max-width: 720px) {
  .inno-card { flex-basis: 100%; }
}

/* Decorative connector dotted line behind the deck — hidden once we have
   more than 3 cards because the 3 anchored dots no longer line up. */
.inno-connector { display: none; }

/* ── Feature card ── */
.inno-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--green-200);
  border-radius: 22px;
  padding: 1.85rem 1.6rem 1.75rem;
  display: flex; flex-direction: column;
  isolation: isolate;
  z-index: 1;
  overflow: visible;            /* let the badge spill above */
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
  box-shadow:
    0 18px 36px -22px rgba(11,82,38,0.22),
    0 6px 14px -6px rgba(11,82,38,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.inno-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(420px 240px at 50% -20%, rgba(143,212,169,0.18), transparent 60%);
  pointer-events: none; z-index: -1;
}
.inno-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow:
    0 30px 50px -22px rgba(11,82,38,0.32),
    0 12px 20px -10px rgba(22,163,74,0.22);
}

/* Index-number badge — bold, prominent, easy to read */
.inno-stick {
  position: absolute;
  top: -18px; left: 24px;
  min-width: 54px; height: 44px;
  padding: 0 0.85rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 12px;
  border: 3px solid #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  transform: rotate(-4deg);
  box-shadow:
    0 14px 26px -10px rgba(11,82,38,0.45),
    0 4px 10px -2px rgba(11,82,38,0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
  z-index: 3;
  transition: transform 0.35s var(--ease);
}
.inno-card:hover .inno-stick {
  transform: rotate(-2deg) translateY(-2px) scale(1.04);
}

/* Visual mockup area at the top of each card */
.inno-visual {
  position: relative;
  margin: 0.5rem -0.4rem 1.1rem;
  height: 130px;
  border-radius: 14px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(143,212,169,0.20), transparent 70%),
    linear-gradient(180deg, var(--green-50) 0%, #ffffff 100%);
  border: 1px dashed rgba(22,163,74,0.25);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.inno-visual svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 8px 14px rgba(11,82,38,0.10));
  transition: transform 0.5s var(--ease);
}
.inno-card:hover .inno-visual svg { transform: scale(1.04); }

/* QR scan beam animation (only on card 3) */
.inno-scan {
  animation: innoScan 2.4s cubic-bezier(0.6, 0.0, 0.4, 1) infinite;
}
@keyframes innoScan {
  0%, 100% { transform: translateY(0);   opacity: 0.0; }
  10%      { opacity: 0.55; }
  50%      { transform: translateY(53px); opacity: 0.55; }
  90%      { opacity: 0.55; }
}

/* Icon pill above the title */
.inno-card .inno-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px -4px rgba(22,163,74,0.4);
  margin-bottom: 0.85rem;
}
.inno-card .inno-ico .icon { width: 22px; height: 22px; }

.inno-card h3 {
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--green-deep);
  line-height: 1.28;
  margin-bottom: 0.65rem;
}
.inno-card p {
  font-size: 0.95rem;
  color: rgba(11,82,38,0.82);
  line-height: 1.62;
  margin: 0;
  font-weight: 500;
}

/* Responsive — flex-basis is handled at the .inno-card level above */
@media (max-width: 1024px) {
  .inno-connector { display: none; }
}
@media (max-width: 720px) {
  .inno-head { margin-bottom: 2.25rem; }
  .inno-deck { gap: 1.25rem; }
  .inno-visual { height: 110px; }
}

/* Charts */
.charts-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.chart-card {
  background: #ffffff;
  border: 1px solid rgba(13,82,38,0.10);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.6rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.chart-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-deep), var(--green));
  opacity: 0; transform: scaleX(0); transform-origin: left;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.chart-card:hover {
  border-color: var(--green-200);
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 18px 32px -14px rgba(80,55,20,0.32),
    0 6px 12px -2px rgba(80,55,20,0.12);
}
.chart-card:hover::before { opacity: 1; transform: scaleX(1); }
.chart-card.full { grid-column: 1 / -1; }
.chart-card .chart-label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-dark); font-weight: 800;
}
.chart-card .chart-val {
  font-size: 2.2rem; font-weight: 800; color: var(--green-deep); letter-spacing: -0.025em;
  margin-top: 0.4rem; display: flex; align-items: baseline; gap: 6px;
  font-variant-numeric: tabular-nums;
}
.chart-card .chart-val .pct { font-size: 0.55em; color: var(--green-dark); font-weight: 700; }
.chart-card .chart-sub { font-size: 0.78rem; color: rgba(11,82,38,0.66); margin-top: 0.25rem; }

/* Bar chart */
.bars {
  margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.85rem;
}
.bar-row { display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 0.85rem; font-size: 0.82rem; }
.bar-label { color: rgba(11,82,38,0.78); font-weight: 500; }
.bar-track { height: 8px; background: rgba(13,82,38,0.10); border-radius: 6px; overflow: hidden; }
.bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: 6px;
  transition: width 1.4s var(--ease-out);
}
.bar-num { color: var(--green-deep); font-weight: 800; font-size: 0.85rem; min-width: 50px; text-align: right; }

/* Circular progress */
.circ-wrap {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 1rem; margin-top: 1.2rem;
}
.circ {
  width: 140px; height: 140px; position: relative; flex-shrink: 0;
}
.circ svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.circ-bg { fill: none; stroke: rgba(13,82,38,0.12); stroke-width: 8; }
.circ-fg {
  fill: none; stroke: var(--green-dark); stroke-width: 8; stroke-linecap: round;
  stroke-dasharray: 283; stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.4s var(--ease-out);
  filter: drop-shadow(0 0 6px rgba(22,163,74,0.30));
}
.circ-val {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.85rem; font-weight: 800; color: var(--green-deep); letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.circ-val sup { font-size: 0.45em; vertical-align: super; margin-left: 1px; color: var(--green-dark); top: -0.5em; position: relative; }
.circ-text { max-width: 100%; }
.circ-text h5 { font-size: 1.05rem; font-weight: 700; color: var(--green-deep); letter-spacing: -0.015em; }
.circ-text p { font-size: 0.85rem; color: rgba(11,82,38,0.78); margin-top: 0.4rem; line-height: 1.55; max-width: none; }

/* Line chart (svg) */
.linechart { margin-top: 1rem; }
.linechart svg { width: 100%; height: 110px; overflow: visible; }
.line-grid { stroke: rgba(13,82,38,0.10); stroke-width: 1; }
.line-path {
  fill: none; stroke: var(--green-dark); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1.6s var(--ease-out);
  filter: drop-shadow(0 0 4px rgba(22,163,74,0.25));
}
.line-area {
  fill: url(#areaGrad);
  opacity: 0;
  transition: opacity 1.2s var(--ease-out) 0.6s;
}
.line-dot {
  fill: #fff; stroke: var(--green-dark); stroke-width: 2; r: 0;
  transition: r 0.3s var(--ease-out);
}
.linechart.in .line-path { stroke-dashoffset: 0; }
.linechart.in .line-area { opacity: 1; }
.linechart.in .line-dot { r: 4; }

.line-x { display: flex; justify-content: space-between; margin-top: 0.5rem; font-size: 0.68rem; color: rgba(11,82,38,0.62); }

/* ── PLEDGE ── */
.pledge { background: transparent; }
.pledge-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.pledge-head .h-eyebrow { justify-content: center; display: inline-flex; }
.pledge-quote-box {
  background-color: #dec18e;
  background-image: url("assets/kraft-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem; margin: 2rem auto 1.5rem; max-width: 720px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(13,82,38,0.16);
  border-left: 4px solid var(--green);
}
.pledge-quote-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px 150px at 0% 50%, rgba(22,163,74,0.12), transparent 70%);
  pointer-events: none;
}
.pledge-quote-box p {
  position: relative;
  color: var(--green-deep);
  font-size: 1.05rem; line-height: 1.7;
  font-style: italic;
}
.pledge-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center; max-width: 720px; margin: 0 auto; }
.pledge-chip {
  background: #fff; border: 1px solid var(--line-2);
  padding: 0.55rem 1rem; border-radius: 999px;
  font-size: 0.82rem; color: var(--ink); font-weight: 500;
  transition: all 0.25s var(--ease);
}
.pledge-chip:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-50); transform: translateY(-2px); }

.pledge-cols {
  margin-top: 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
}
.card-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.card-frame h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.015em; }
.card-frame .form-sub { font-size: 0.88rem; color: var(--muted); margin-top: 0.4rem; margin-bottom: 1.5rem; }

/* ── DONOR FEED ── */
.donor-feed-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem;
  position: relative; box-shadow: var(--shadow-sm);
}
.donor-feed-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem;
}
.donor-feed-head h4 { font-size: 0.95rem; font-weight: 700; }
.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-50); color: var(--green-dark);
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.live-pill .dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.donor-list {
  max-height: 380px; overflow-y: auto; padding-right: 4px;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.donor-row {
  display: flex; align-items: center; gap: 0.85rem;
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 0.7rem 0.85rem; border-radius: 12px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.3s var(--ease);
  animation: feed-in 0.55s var(--ease-out) both;
}
.donor-row:hover { background: var(--green-50); border-color: var(--green-200); }
.donor-row.fresh {
  background: var(--green-50);
  border-color: var(--green-300);
  animation: feed-pop 0.7s var(--ease-out);
}
@keyframes feed-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes feed-pop { 0% { transform: scale(0.95); background: rgba(22,163,74,0.18); } 100% { transform: scale(1); } }
.donor-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem; flex-shrink: 0;
}
.donor-info { flex: 1; min-width: 0; }
.donor-info .nm { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.donor-info .lc { font-size: 0.72rem; color: var(--muted); margin-top: 1px; }
.donor-contrib {
  font-size: 0.78rem; font-weight: 700; color: var(--green-dark);
  background: var(--green-50); padding: 3px 8px; border-radius: 6px;
}
.donor-time { font-size: 0.68rem; color: var(--muted-2); margin-left: 0.5rem; }

/* ── FORMS ── */
.fg { margin-bottom: 0.85rem; }
.fg label {
  display: block; font-size: 0.72rem; font-weight: 600;
  color: var(--muted); margin-bottom: 0.4rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--line-2); border-radius: 10px;
  background: #fff; color: var(--ink);
  font-family: inherit; font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.fg select { background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http%3A//www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2399a3ad'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: calc(100% - 14px) center; padding-right: 36px; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,0.10);
}
.fg input.err, .fg select.err { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.10); }
.fg .err-msg { display: none; font-size: 0.74rem; color: #ef4444; margin-top: 4px; }
.fg .err-msg.show { display: block; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.sub-btn {
  width: 100%; margin-top: 0.5rem;
  padding: 0.95rem 1rem;
  border: 0; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-weight: 700; font-size: 0.92rem;
  cursor: pointer; position: relative; overflow: hidden;
  transition: background 0.25s var(--ease), transform 0.18s var(--ease);
}
.sub-btn:hover { background: var(--green); transform: translateY(-2px); }
.sub-btn.success { background: var(--green); pointer-events: none; }
.sub-btn .check {
  display: inline-block; opacity: 0; transform: scale(0.5);
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
  margin-right: 6px;
}
.sub-btn.success .check { opacity: 1; transform: scale(1); }
.form-msg {
  margin-top: 0.85rem; font-size: 0.82rem;
  text-align: center; min-height: 1.1rem;
  color: var(--muted);
}
.form-msg.ok { color: var(--green-dark); font-weight: 600; }
.form-msg.err { color: #ef4444; font-weight: 600; }

/* Pledge wall */
.pledge-wall-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1rem; }
.pledge-wall-head h3 { font-size: 1.2rem; font-weight: 700; }
.pledge-wall-head .count { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; color: var(--green); line-height: 1; }
.pledge-wall-head .count-sub { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.wall-search {
  width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--line-2); border-radius: 999px;
  background: #fff; font-family: inherit; font-size: 0.88rem; color: var(--ink);
  margin-bottom: 1rem; outline: none;
  transition: border-color 0.2s var(--ease);
}
.wall-search:focus { border-color: var(--green); }
.wall-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  max-height: 420px; overflow-y: auto; padding-right: 4px;
}
.wall-card {
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 0.7rem 0.85rem; border-radius: 10px;
  transition: all 0.2s var(--ease);
}
.wall-card:hover { background: var(--green-50); border-color: var(--green-200); }
.wall-card .nm { font-size: 0.85rem; font-weight: 600; }
.wall-card .lc { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.wall-card .new-pill {
  display: inline-block; font-size: 0.6rem; font-weight: 700;
  background: var(--green); color: #fff; padding: 1px 6px; border-radius: 999px;
  margin-left: 4px;
}

/* Scrollbar */
.wall-grid::-webkit-scrollbar, .donor-list::-webkit-scrollbar { width: 6px; }
.wall-grid::-webkit-scrollbar-track, .donor-list::-webkit-scrollbar-track { background: transparent; }
.wall-grid::-webkit-scrollbar-thumb, .donor-list::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.wall-grid::-webkit-scrollbar-thumb:hover, .donor-list::-webkit-scrollbar-thumb:hover { background: var(--muted-2); }

/* ── PLEDGE WALL — EMPTY + LOADING STATES ── */
.wall-empty {
  padding: 2.5rem 1.25rem 2rem;
  text-align: center;
  color: var(--green-deep);
  border: 1.5px dashed var(--green-200);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, var(--green-50) 100%);
  margin-top: 0.5rem;
}
.wall-empty .we-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  margin: 0 auto 1rem;
  box-shadow: 0 8px 18px -8px rgba(11,82,38,0.18), inset 0 0 0 1px var(--green-200);
}
.wall-empty .we-icon svg { width: 26px; height: 26px; }
.wall-empty h4 {
  font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--green-deep); margin-bottom: 0.35rem;
}
.wall-empty p {
  font-size: 0.86rem; color: rgba(11,82,38,0.72);
  line-height: 1.55; max-width: 320px; margin: 0 auto;
}

.wall-loading {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin-top: 0.5rem;
}
.wall-loading span {
  display: block; height: 56px; border-radius: 10px;
  background: linear-gradient(90deg, rgba(11,82,38,0.05) 0%, rgba(11,82,38,0.12) 50%, rgba(11,82,38,0.05) 100%);
  background-size: 200% 100%;
  animation: skelShimmer 1.4s linear infinite;
}
.wall-loading span:nth-child(2) { animation-delay: 0.15s; }
.wall-loading span:nth-child(3) { animation-delay: 0.30s; }
.wall-loading span:nth-child(4) { animation-delay: 0.45s; }
@keyframes skelShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* Make sure [hidden] overrides our display rules above. */
.wall-loading[hidden],
.wall-empty[hidden],
.sticky-donor[hidden] { display: none !important; }

/* ── STICKY FLOATING WIDGET — super-chat-style live pledge feed ── */
.sticky-donor {
  position: fixed;
  bottom: 22px; left: 22px;
  z-index: 60;
  width: 300px;
  background: #fff;
  border: 1px solid var(--green-200);
  border-radius: 18px;
  padding: 0.7rem 0.85rem 0.85rem;
  box-shadow:
    0 28px 56px -20px rgba(11,82,38,0.32),
    0 12px 22px -10px rgba(11,82,38,0.18),
    inset 0 1px 0 rgba(255,255,255,0.92);
  opacity: 0;
  transform: translateX(-32px) translateY(8px) scale(0.94);
  transition:
    opacity 0.4s var(--ease),
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  overflow: hidden;
}
.sticky-donor.show {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
  pointer-events: auto;
}
/* Subtle green wash on the top edge for the super-chat feel */
.sticky-donor::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 50%, var(--green) 100%);
  background-size: 200% 100%;
  animation: sdBar 4s linear infinite;
}
@keyframes sdBar { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }

/* ── HEAD ROW: live indicator + count ── */
.sticky-donor .sd-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.55rem;
}
.sticky-donor .sd-live {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--green-dark);
}
.sticky-donor .sd-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22,163,74,0.5);
  animation: sdPulse 2s ease-in-out infinite;
}
@keyframes sdPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70%      { box-shadow: 0 0 0 7px rgba(22,163,74,0); }
}
.sticky-donor .sd-count {
  color: var(--green-deep);
  display: inline-flex; align-items: baseline; gap: 0.3rem;
}
.sticky-donor .sd-count strong {
  font-weight: 800; font-size: 0.82rem; letter-spacing: -0.01em;
  color: var(--green-deep);
}
.sticky-donor .sd-count span {
  font-size: 0.62rem; letter-spacing: 0.1em;
  color: var(--green-dark); opacity: 0.78;
}

/* ── BODY ROW: avatar + name/city + action ── */
.sticky-donor .sd-body {
  display: flex; align-items: center; gap: 0.75rem;
}

/* Animate the body on each rotation */
.sticky-donor.tick .sd-body { animation: sdFade 0.5s ease both; }
@keyframes sdFade {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.sticky-donor .sd-av {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 2px #fff, 0 6px 14px -4px rgba(22,163,74,0.4);
}
.sticky-donor .sd-text {
  min-width: 0;
  display: flex; flex-direction: column;
  line-height: 1.2;
}
.sticky-donor .sd-name {
  font-size: 0.92rem; font-weight: 700; color: var(--green-deep);
  letter-spacing: -0.005em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 210px;
}
.sticky-donor .sd-name .sd-meta {
  font-weight: 500; color: var(--muted); margin-left: 5px;
  font-size: 0.78rem;
}
.sticky-donor .sd-action {
  font-size: 0.74rem;
  color: var(--green-dark);
  margin-top: 3px;
  display: inline-flex; align-items: center; gap: 0.32rem;
  font-weight: 500;
}
.sticky-donor .sd-action::before {
  content: '🌱';
  font-size: 0.84rem;
  line-height: 1;
}

/* Compact on small screens */
@media (max-width: 720px) {
  .sticky-donor {
    bottom: 14px; left: 14px; right: 14px;
    width: auto;
    padding: 0.65rem 0.85rem 0.8rem;
  }
  .sticky-donor .sd-name { max-width: none; }
}
@media (max-width: 480px) {
  .sticky-donor .sd-av { width: 38px; height: 38px; font-size: 0.78rem; }
  .sticky-donor .sd-name { font-size: 0.86rem; }
  .sticky-donor .sd-action { font-size: 0.7rem; }
}

/* ── SEWA — restructured case-study story ── */
.sewa { /* background + text colors now driven by the global kraft-section rule */ }

/* Centered head */
.sewa-head {
  max-width: 880px;
  margin: 0 auto 3rem;
  text-align: center;
}
.sewa-head .h-eyebrow { justify-content: center; }
.sewa-head .h-eyebrow::before { display: none; }
.sewa-head .h-title { margin-top: 0.6rem; }
.sewa-head .h-sub { margin: 1.1rem auto 0; }

/* Block scaffold */
.sewa-block { margin-bottom: 3rem; }
.sewa-block:last-of-type { margin-bottom: 0; }

.sewa-block-title {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.7rem;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.005em;
  margin-bottom: 3.25rem;
}
.sewa-block-title .sb-bar {
  width: 28px; height: 3px; border-radius: 3px;
  background: var(--green);
  flex-shrink: 0;
}
.sewa-block-title .sb-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 12px -4px rgba(11,82,38,0.35);
}

/* ── Block 1: 4-pillar grid ── */
.pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.pillar {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(13,82,38,0.10);
  border-radius: 16px;
  padding: 1.3rem 1.25rem 1.35rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow:
    0 14px 26px -16px rgba(80,55,20,0.30),
    0 4px 8px -2px rgba(80,55,20,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.pillar::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,212,169,0.30) 0%, transparent 70%);
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow:
    0 22px 36px -16px rgba(80,55,20,0.40),
    0 8px 14px -4px rgba(22,163,74,0.20);
}
.pillar .pi {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem;
  box-shadow: 0 8px 14px -4px rgba(22,163,74,0.42);
}
.pillar .pi .icon { width: 20px; height: 20px; }
.pillar h4 {
  font-size: 1.02rem; font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.005em;
  margin-bottom: 0.35rem;
}
.pillar p {
  font-size: 0.85rem;
  color: rgba(11,82,38,0.78);
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}

/* ── Block 2: CBSE Grade Hero ── */
.cbse-hero {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 2.25rem;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(13,82,38,0.10);
  border-radius: 22px;
  padding: 2rem 2.25rem;
  margin-bottom: 4.5rem;
  box-shadow:
    0 24px 44px -22px rgba(80,55,20,0.32),
    0 8px 16px -4px rgba(80,55,20,0.10),
    inset 0 1px 0 rgba(255,255,255,0.95);
  position: relative;
  overflow: hidden;
}
.cbse-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 240px at 0% 100%, rgba(143,212,169,0.22), transparent 60%);
  pointer-events: none;
}
.ch-medal-wrap {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  position: relative; z-index: 1;
}
.ch-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1.1rem;
}
.ch-medal {
  position: relative;
  width: 140px; height: 140px;
  margin: 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
}
.ch-medal-ring {
  position: absolute; inset: 0;
  width: 140px; height: 140px;
  filter: drop-shadow(0 18px 22px rgba(11,82,38,0.30));
  animation: chSpin 22s linear infinite;
}
@keyframes chSpin { to { transform: rotate(360deg); } }
.ch-medal-letter {
  position: relative;
  z-index: 2;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 4.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.ch-medal-ribbon {
  position: absolute;
  top: 84%;
  width: 26px; height: 36px;
  background: linear-gradient(180deg, #b91c1c 0%, #7f1d1d 100%);
  z-index: 1;
}
.ch-ribbon-left  {
  left: calc(50% - 24px);
  transform: rotate(8deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
.ch-ribbon-right {
  right: calc(50% - 24px);
  transform: rotate(-8deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
}
.ch-grade {
  margin-top: 2.6rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.15rem;
}
.ch-grade strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.ch-grade span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  font-weight: 700;
}

.ch-body { position: relative; z-index: 1; }
.ch-body p {
  font-size: 0.98rem;
  color: rgba(11,82,38,0.85);
  line-height: 1.65;
  font-weight: 500;
  margin: 0 0 1.1rem;
}
.ch-checks {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
}
.ch-checks span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--green-50);
  color: var(--green-deep);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(22,163,74,0.22);
}
.ch-checks span .icon { width: 14px; height: 14px; color: var(--green); stroke-width: 2.5; }

/* ── Block 3: Ambassador timeline ── */
.amb-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 48px;        /* room for numbered circles overflowing above */
  margin-bottom: 2.25rem;
}
.amb-connector {
  position: absolute;
  left: 0; right: 0;
  top: 28px;
  width: 100%; height: 6px;
  pointer-events: none;
  z-index: 0;
}
.amb-step {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid rgba(13,82,38,0.10);
  border-radius: 16px;
  padding: 2.6rem 1.2rem 1.4rem;
  text-align: left;
  box-shadow:
    0 14px 26px -16px rgba(80,55,20,0.28),
    0 4px 8px -2px rgba(80,55,20,0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), box-shadow 0.35s var(--ease);
}
.amb-step:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}
.ams-no {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.1rem; font-weight: 800; letter-spacing: 0.02em;
  border: 4px solid #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow:
    0 12px 22px -8px rgba(11,82,38,0.45),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.amb-step .ams-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--green-50);
  color: var(--green-dark);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0.5rem 0 0.85rem;
  border: 1px solid rgba(22,163,74,0.22);
}
.amb-step .ams-ico .icon { width: 18px; height: 18px; }
.amb-step p {
  font-size: 0.92rem;
  color: rgba(11,82,38,0.85);
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

/* ── Tip callout — designed sticky-note style ── */
.amb-tip {
  position: relative;
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border: 1px solid #facc15;
  border-radius: 14px;
  padding: 1.1rem 1.3rem 1.15rem 1.4rem;
  box-shadow:
    0 14px 26px -14px rgba(133,77,14,0.30),
    inset 0 1px 0 rgba(255,255,255,0.7);
}
.amb-tip::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #eab308 0%, #ca8a04 100%);
  border-radius: 14px 0 0 14px;
}
.amb-tip-ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fef08a;
  color: #854d0e;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #facc15;
}
.amb-tip-ico .icon { width: 18px; height: 18px; stroke-width: 2; }
.amb-tip-content { flex: 1; min-width: 0; }
.amb-tip-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  color: #854d0e;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.amb-tip-content p {
  font-size: 0.92rem;
  color: #713f12;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pillars-row    { grid-template-columns: repeat(2, 1fr); }
  .amb-timeline   { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .amb-connector  { display: none; }
  .cbse-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem 1.5rem;
  }
  .ch-body { text-align: center; }
  .ch-checks { justify-content: center; }
}
@media (max-width: 720px) {
  .pillars-row  { grid-template-columns: 1fr; }
  .amb-timeline { grid-template-columns: 1fr; gap: 2.25rem; }
  .sewa-block-title { font-size: 0.98rem; }
}

/* ── SEVA NETWORK — 3-card grid on paper background, all cards consistent ── */
.seva-network { background: transparent; position: relative; }

.sn-head {
  max-width: 880px;
  margin: 0 auto 3.25rem;
  text-align: center;
}
.sn-head .h-eyebrow {
  justify-content: center;
  color: var(--green-dark);
  font-weight: 700;
}
.sn-head .h-eyebrow::before { display: none; }
.sn-head .h-title { margin-top: 0.6rem; color: var(--green-deep); }
.sn-head .h-sub {
  margin: 1.1rem auto 0;
  color: var(--ink-2);
  max-width: 740px;
}

/* ── Two-column list layout (does + earns) ── */
.sn-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.sn-col {
  display: flex;
  flex-direction: column;
}
.sn-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, transparent 0%, rgba(13,82,38,0.20) 30%, rgba(13,82,38,0.20) 70%, transparent 100%);
}

.sn-col-title {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  margin-bottom: 1.35rem;
}
.sn-col-ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px -4px rgba(22,163,74,0.40);
}
.sn-col-ico .icon { width: 20px; height: 20px; }

.sn-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0.85rem;
}
.sn-bullets li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
}
.sn-tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 8px -2px rgba(22,163,74,0.35);
  margin-top: 1px;
}
.sn-tick .icon { width: 12px; height: 12px; stroke-width: 3; }

/* ── Bottom hero stat panel ── */
.sn-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, var(--green-50) 100%);
  border: 1px solid var(--green-200);
  border-radius: 24px;
  padding: 2.5rem 2.75rem;
  box-shadow:
    0 22px 44px -22px rgba(11,82,38,0.30),
    0 8px 16px -6px rgba(11,82,38,0.12),
    inset 0 1px 0 rgba(255,255,255,0.95);
  overflow: hidden;
  isolation: isolate;
}
.sn-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,212,169,0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.sn-hero-left {
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding-right: 1.5rem;
  border-right: 1px dashed rgba(13,82,38,0.22);
}
.sn-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}
.sn-hero-num {
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 6.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sn-hero-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-top: 0.5rem;
  max-width: 220px;
}

.sn-hero-right {
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
.sn-hero-right p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
.sn-hero-right p strong {
  color: var(--green-deep);
  font-weight: 800;
}
.sn-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.sn-hero-stats > div {
  background: #ffffff;
  border: 1px solid rgba(22,163,74,0.20);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  box-shadow: 0 4px 10px -4px rgba(11,82,38,0.10);
}
.sn-hero-stats strong {
  display: block;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.sn-hero-stats span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.sn-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #ffffff;
  padding: 0.8rem 1.4rem 0.8rem 1.5rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  align-self: flex-start;
  box-shadow: 0 10px 20px -8px rgba(22,163,74,0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.sn-btn:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -8px rgba(22,163,74,0.55);
}
.sn-btn span { transition: transform 0.25s var(--ease); }
.sn-btn:hover span { transform: translateX(3px); }

/* Responsive */
@media (max-width: 900px) {
  .sn-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .sn-divider { display: none; }
  .sn-hero {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.75rem;
  }
  .sn-hero-left {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px dashed rgba(13,82,38,0.22);
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .sn-hero-num { font-size: 5.5rem; }
  .sn-hero-stats { grid-template-columns: 1fr; }
}

/* ── AMBASSADOR ── */
.ambassador { background: transparent; }
.amb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.benefits-list { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 2rem; }
.benefit {
  display: flex; align-items: center; gap: 0.85rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 0.9rem 1.1rem;
  transition: all 0.25s var(--ease);
}
.benefit:hover { border-color: var(--green-200); transform: translateX(4px); }
.benefit .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--green-50); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit .ico .icon { width: 17px; height: 17px; }
.inline-leaf { color: var(--green-300); display: inline-flex; width: 14px; height: 14px; vertical-align: -2px; margin-right: 2px; }
.inline-leaf .icon { width: 14px; height: 14px; }
.benefit span { font-size: 0.9rem; color: var(--ink); }
.amb-callout {
  margin-top: 1.5rem;
  background-color: #dec18e;
  background-image: url("assets/kraft-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--green-deep);
  border: 1px solid rgba(13,82,38,0.16);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.amb-callout strong { display: block; font-size: 0.95rem; margin-bottom: 0.45rem; color: var(--green-deep); }
.amb-callout p { font-size: 0.84rem; color: rgba(11,82,38,0.7); }
.amb-callout ul { margin-top: 0.7rem; list-style: none; display: flex; flex-direction: column; gap: 0.35rem; padding: 0; }
.amb-callout li { font-size: 0.84rem; color: rgba(11,82,38,0.78); padding-left: 18px; position: relative; }
.amb-callout li::before { content: '→'; position: absolute; left: 0; color: var(--green-dark); font-weight: 700; }
.amb-callout .inline-leaf { color: var(--green-dark); }

/* ── STORIES — slider ── */
.stories { background: transparent; }
.stories-slider {
  position: relative;
  overflow: hidden;
}
.slider-filters {
  display: flex; gap: 0.55rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.slider-filters button {
  background: #fff; border: 1px solid var(--line-2);
  color: var(--muted); padding: 0.5rem 1.1rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  transition: all 0.25s var(--ease);
}
.slider-filters button:hover { border-color: var(--ink); color: var(--ink); }
.slider-filters button.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.slider-track {
  display: flex; gap: 1.25rem;
  transition: transform 0.55s var(--ease-out);
}
.story-slide {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.story-slide::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(22,163,74,0.05), transparent 60%);
}
.story-slide:hover { transform: translateY(-4px); border-color: var(--green-200); box-shadow: var(--shadow-md); }
.story-quote-mark {
  font-size: 2.5rem; font-weight: 800; color: var(--green); line-height: 0.5; margin-bottom: 1rem;
  display: block;
}
.story-text { font-size: 0.98rem; color: var(--ink); line-height: 1.65; }
.story-meta {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem;
  padding-top: 1.25rem; border-top: 1px solid var(--line);
}
.story-init {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--charcoal) 100%);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem;
}
.story-init.green { background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); }
.story-name { font-size: 0.88rem; font-weight: 600; }
.story-role { font-size: 0.76rem; color: var(--muted); margin-top: 1px; }

.slider-nav {
  display: flex; justify-content: space-between; align-items: center; margin-top: 2rem;
}
.slider-dots { display: flex; gap: 6px; }
.slider-dots button {
  width: 8px; height: 8px; border: 0; border-radius: 50%;
  background: var(--line-2); padding: 0;
  transition: all 0.25s var(--ease);
}
.slider-dots button.active { background: var(--green); width: 24px; border-radius: 4px; }
.slider-arrows { display: flex; gap: 0.5rem; }
.slider-arrows button {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-2); background: #fff;
  color: var(--ink); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.slider-arrows button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.slider-arrows button:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── DRIVES / DISTRIBUTION — restructured: centered head + polished tabs ── */
.drives-section { background: transparent; }
.drives-section .sec-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.drives-section .sec-head .h-eyebrow { justify-content: center; }
.drives-section .sec-head .h-eyebrow::before { display: none; }
.drives-section .sec-head .h-title { margin-top: 0.6rem; }
.drives-section .sec-head .h-sub { margin: 1.1rem auto 0; }

/* Tabs row — centered, more breathing room */
.tabs {
  display: inline-flex; gap: 0.4rem;
  margin: 2.5rem auto 2.25rem;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 8px 18px -12px rgba(15,17,21,0.15);
}
.drives-section .tabs {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.tabs button {
  background: transparent; border: 0;
  padding: 0.6rem 1.2rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.45rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.tabs button .icon { width: 15px; height: 15px; }
.tabs button:hover { color: var(--green-deep); background: var(--green-50); }
.tabs button.active {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(11,82,38,0.35);
}
.tabs button.active .icon { color: #fff; }

.drives-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
/* Collapsed state — exactly 2 rows at each breakpoint */
.drives-grid.collapsed > .drive-card:nth-child(n+11) { display: none; }
@media (max-width: 1280px) {
  .drives-grid { grid-template-columns: repeat(4, 1fr); }
  .drives-grid.collapsed > .drive-card:nth-child(n+9)  { display: none; }
}
@media (max-width: 1024px) {
  .drives-grid { grid-template-columns: repeat(3, 1fr); }
  .drives-grid.collapsed > .drive-card:nth-child(n+7)  { display: none; }
}
@media (max-width: 720px) {
  .drives-grid { grid-template-columns: repeat(2, 1fr); }
  .drives-grid.collapsed > .drive-card:nth-child(n+5)  { display: none; }
}
/* ── DRIVE CARD — restructured with typed-color stripe, corner flag, prominent stat ── */
.drive-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.25rem 1.1rem;
  padding-left: 1.5rem;                 /* extra room for the left stripe */
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(20px);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 8px 18px -12px rgba(15,17,21,0.18),
    0 2px 6px -2px rgba(15,17,21,0.06);
}
.drive-card.in { opacity: 1; transform: translateY(0); }

/* Coloured left stripe — anchors the type identity */
.drive-card .dc-stripe {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 5px;
  background: var(--green);
  border-radius: 6px 0 0 6px;
  transition: width 0.35s var(--ease);
  z-index: 1;
}
.drive-card[data-type="corp"] .dc-stripe { background: #d97706; }
.drive-card[data-type="comm"] .dc-stripe { background: #4f46e5; }
.drive-card[data-type="trib"] .dc-stripe { background: #be123c; }
.drive-card[data-type="govt"] .dc-stripe { background: #1e40af; }
.drive-card[data-type="ngo"]  .dc-stripe { background: #0d6e36; }

/* Soft halo per type — subtle ambient color */
.drive-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  transition: opacity 0.35s var(--ease);
}
.drive-card[data-type="corp"]::before { background: radial-gradient(circle, rgba(217,119,6,0.16) 0%, transparent 70%); }
.drive-card[data-type="comm"]::before { background: radial-gradient(circle, rgba(79,70,229,0.14) 0%, transparent 70%); }
.drive-card[data-type="trib"]::before { background: radial-gradient(circle, rgba(190,18,60,0.14) 0%, transparent 70%); }
.drive-card[data-type="govt"]::before { background: radial-gradient(circle, rgba(30,64,175,0.14) 0%, transparent 70%); }
.drive-card[data-type="ngo"]::before  { background: radial-gradient(circle, rgba(13,110,54,0.16) 0%, transparent 70%); }

.drive-card > *:not(.dc-stripe) { position: relative; z-index: 1; }

.drive-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-200);
  box-shadow:
    0 22px 38px -16px rgba(15,17,21,0.20),
    0 8px 14px -4px rgba(15,17,21,0.10);
}
.drive-card:hover .dc-stripe { width: 7px; }
.drive-card:hover::before { opacity: 0.9; }

/* Corner flag — type badge */
.drive-card .dc-flag {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.65rem;
  border-radius: 6px;
  background: var(--green-50);
  color: var(--green-dark);
  z-index: 2;
}
.drive-card .dc-flag.corp { background: #fef3c7; color: #92400e; }
.drive-card .dc-flag.comm { background: #e0e7ff; color: #3730a3; }
.drive-card .dc-flag.trib { background: #fce7f3; color: #9d174d; }
.drive-card .dc-flag.govt { background: #dbeafe; color: #1e40af; }
.drive-card .dc-flag.ngo  { background: #d1fae5; color: var(--green-deep); }

/* Head row — icon only on the left, flag is positioned absolutely */
.drive-card .dc-head {
  display: flex;
  margin-bottom: 0.95rem;
}
.drive-card .dc-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-50) 0%, #ffffff 100%);
  border: 1px solid rgba(22,163,74,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px -4px rgba(15,17,21,0.08);
}
.drive-card[data-type="corp"] .dc-ico { background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%); border-color: rgba(217,119,6,0.20); }
.drive-card[data-type="comm"] .dc-ico { background: linear-gradient(135deg, #e0e7ff 0%, #ffffff 100%); border-color: rgba(79,70,229,0.18); }
.drive-card[data-type="trib"] .dc-ico { background: linear-gradient(135deg, #fce7f3 0%, #ffffff 100%); border-color: rgba(190,18,60,0.18); }
.drive-card[data-type="govt"] .dc-ico { background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%); border-color: rgba(30,64,175,0.18); }
.drive-card[data-type="ngo"]  .dc-ico { background: linear-gradient(135deg, #d1fae5 0%, #ffffff 100%); border-color: rgba(13,110,54,0.18); }

/* Name */
.drive-card .dc-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.28;
  color: var(--ink);
  margin-bottom: 0.4rem;
  padding-right: 60px;       /* leave space for the corner flag */
}

/* Location with pin icon */
.drive-card .dc-loc {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}
.drive-card .dc-pin {
  width: 13px; height: 13px;
  color: var(--green);
  flex-shrink: 0;
}

/* Description */
.drive-card .dc-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.1rem;
  flex: 1;
}

/* Meta row — stat (prominent) + date (muted pill) */
.drive-card .dc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(13,82,38,0.18);
}
.drive-card .dc-stat {
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}
.drive-card .dc-date {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-alt);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.drives-actions { text-align: center; margin-top: 2.5rem; }
.btn-load {
  background: transparent; border: 1px solid var(--ink); color: var(--ink);
  padding: 0.7rem 1.8rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600;
  transition: all 0.25s var(--ease);
}
.btn-load:hover { background: var(--ink); color: #fff; }

/* ── INDIVIDUAL CONTRIBUTION POOL — dark green hero with batch + form ── */
.pool {
  background:
    linear-gradient(135deg, #072c14 0%, #0b4220 60%, #062a14 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.pool::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 320px at 0% 0%, rgba(143,212,169,0.10), transparent 60%),
    radial-gradient(600px 280px at 100% 100%, rgba(143,212,169,0.08), transparent 60%),
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.5px) 0 0 / 28px 28px;
  pointer-events: none;
}
.pool > * { position: relative; z-index: 1; }

.pool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2.5rem;
  align-items: start;
}
.pool-left  { display: flex; flex-direction: column; gap: 1.5rem; }
.pool-right { display: flex; flex-direction: column; gap: 1.25rem; }

/* Head */
.pool-head {
  position: relative;
}
.pool-head .h-eyebrow { color: var(--green-300); font-weight: 700; }
.pool-head .h-eyebrow::before { background: var(--green-300); }
.pool-head .h-title {
  color: #ffffff;
  margin-top: 0.75rem;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.pool-head .h-title em {
  font-style: normal;
  color: var(--green-300);
  font-weight: 800;
  background: linear-gradient(180deg, #a7e8c0 0%, var(--green-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pool-head .h-sub { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.7; max-width: 540px; }

/* Status card — premium glass treatment */
.pool-status {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.6rem 1.6rem 1.4rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 18px 36px -16px rgba(0,0,0,0.30);
  overflow: hidden;
}
.pool-status::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,212,169,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.ps-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 0.85rem; }
.ps-label { font-size: 0.95rem; font-weight: 700; color: #ffffff; }
.ps-label #poolBatch {
  display: inline-block;
  color: var(--green-300);
  background: rgba(143,212,169,0.10);
  border: 1px solid rgba(143,212,169,0.20);
  padding: 0.18rem 0.55rem;
  border-radius: 6px;
  font-family: 'TT Hoves Pro', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  margin-left: 0.25rem;
  transition: color 0.3s var(--ease);
}
.ps-count { font-family: 'TT Hoves Pro', sans-serif; display: inline-flex; align-items: baseline; gap: 0.15rem; }
.ps-count strong {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.ps-count .ps-of { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.55); }
.ps-bar {
  position: relative;
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.ps-bar-fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-300) 50%, var(--green) 100%);
  background-size: 200% 100%;
  border-radius: 999px;
  transition: width 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 0 16px rgba(143,212,169,0.55),
    inset 0 1px 0 rgba(255,255,255,0.25);
  animation: psBarShine 3s linear infinite;
}
@keyframes psBarShine {
  0%   { background-position:   0% 0; }
  100% { background-position: 200% 0; }
}

/* Pulse on the batch number when it rolls over */
#poolBatch.pulse {
  animation: poolBatchPulse 1.4s ease-out;
}
@keyframes poolBatchPulse {
  0%   { color: var(--green-300); text-shadow: 0 0 0 rgba(143,212,169,0); transform: scale(1); }
  30%  { color: #ffffff;          text-shadow: 0 0 24px rgba(143,212,169,0.9); transform: scale(1.15); }
  100% { color: var(--green-300); text-shadow: 0 0 0 rgba(143,212,169,0); transform: scale(1); }
}

/* New name pill entry animation */
.pn-list .pn-new {
  opacity: 0;
  transform: translateY(-6px) scale(0.9);
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0 rgba(22,163,74,0.5);
  transition:
    opacity 0.45s var(--ease),
    transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 1.2s var(--ease),
    background 1.4s var(--ease),
    border-color 1.4s var(--ease);
}
.pn-list .pn-new.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 0 0 6px rgba(22,163,74,0);
}
/* After 1.4s, fade the highlight back to the regular green-tinted pill */
.pn-list .pn-new.in {
  animation: poolNewSettle 1.4s 0.4s forwards;
}
@keyframes poolNewSettle {
  to {
    background: rgba(143,212,169,0.12);
    border-color: rgba(143,212,169,0.22);
  }
}
.ps-sub { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-bottom: 1.1rem; }
.ps-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ps-stats > div { display: flex; flex-direction: column; gap: 0.4rem; }
.ps-stat-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}
.ps-stat-val {
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.6rem; font-weight: 800; letter-spacing: -0.025em;
  color: #ffffff; line-height: 1;
}
.ps-stat-val--green { color: var(--green-300); }

/* Names list */
.pool-names {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
}
.pn-label {
  display: block; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 0.7rem;
}
.pn-list { display: flex; flex-wrap: wrap; gap: 0.35rem; min-height: 32px; margin-bottom: 1rem; }
.pn-list span {
  display: inline-block;
  padding: 0.32rem 0.7rem;
  background: rgba(143,212,169,0.12);
  border: 1px solid rgba(143,212,169,0.22);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
}
.pn-list .pn-empty { font-style: italic; color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.pn-foot { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.55;
  padding-top: 0.85rem; border-top: 1px solid rgba(255,255,255,0.06); }

/* How it works steps */
.pool-steps { list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.7rem; }
.pool-steps li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.95rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.psp-no {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 800;
  box-shadow: 0 6px 12px -4px rgba(22,163,74,0.40);
}
.pool-steps li > div { flex: 1; }
.pool-steps li strong { display: block; font-size: 0.95rem; font-weight: 700; color: #ffffff; margin-bottom: 0.2rem; }
.pool-steps li p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.55; margin: 0; }

/* Pool form — white card */
.pool-form {
  background: #ffffff;
  color: var(--ink);
  border-radius: 22px;
  padding: 2rem 1.9rem 1.85rem;
  box-shadow:
    0 30px 56px -22px rgba(0,0,0,0.55),
    0 12px 22px -10px rgba(0,0,0,0.30);
}
.pool-form h3 {
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 0.4rem;
}
.pf-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.35rem; line-height: 1.55; }
.pool-form .fg { margin-bottom: 1rem; }
.pool-form .fg label {
  display: block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 0.4rem;
}
.pool-form .pf-hint { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 0.75rem; }
.pool-form input {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.92rem; color: var(--ink); background: #ffffff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  font-family: inherit;
}
.pool-form input::placeholder {
  color: rgba(15,17,21,0.40);
  font-weight: 500;
}
.pool-form input:focus {
  border-color: var(--green); outline: none;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.12);
  background: #ffffff;
}
.pool-form input[readonly] {
  background: linear-gradient(135deg, var(--green-50) 0%, #ffffff 100%);
  color: var(--green-deep);
  font-weight: 700;
  cursor: default;
  border-color: rgba(22,163,74,0.25);
}

/* Pool form — select matches the input styling */
.pool-form select {
  width: 100%;
  padding: 0.82rem 2.5rem 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--ink);
  background: #ffffff;
  /* custom chevron — green */
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  color: var(--green-deep);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.pool-form select:hover {
  border-color: var(--green-200);
}
.pool-form select:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.12);
}
.pool-form .fg-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0.75rem; }
.pool-form .err-msg { display: none; font-size: 0.78rem; color: #b91c1c; margin-top: 0.35rem; }
.pool-form .err-msg.show { display: block; }
.pool-form input.err { border-color: #b91c1c; box-shadow: 0 0 0 3px rgba(185,28,28,0.10); }
.pool-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #ffffff;
  border: 0;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; margin-top: 0.85rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 12px 24px -10px rgba(22,163,74,0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pool-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px -10px rgba(22,163,74,0.55);
}
.pool-submit.success { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%); }
.pool-submit .check { font-weight: 800; }
.pf-foot { margin-top: 0.85rem; text-align: center; font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

/* Back-page preview — sticky-note style */
.pool-preview {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border: 1px solid #facc15;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  color: #713f12;
}
.pp-label {
  display: block;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: #92400e; margin-bottom: 0.7rem;
}
.pp-intro { font-size: 0.95rem; margin-bottom: 0.85rem; color: #713f12; }
.pp-intro em { font-style: italic; font-weight: 600; }
.pp-names { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.85rem; }
.pp-names span {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(234,179,8,0.40);
  color: #713f12;
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
}
.pp-names .pp-more { background: transparent; border-color: transparent; font-style: italic; color: #92400e; }

/* "Your name here" pill — highlighted with a dashed gold ring so it stands out */
.pp-names .pp-you {
  background: #ffffff;
  border: 1.5px dashed #ca8a04;
  color: #713f12;
  font-weight: 700;
  font-style: italic;
  position: relative;
}
.pp-names .pp-you::after {
  content: '←';
  margin-left: 4px;
  color: #ca8a04;
  font-style: normal;
  font-weight: 800;
}
.pp-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.7rem; border-top: 1px dashed rgba(133,77,14,0.30);
  font-size: 0.72rem; color: #92400e; font-weight: 600;
}
.pp-sdg {
  background: var(--green-deep); color: #ffffff;
  padding: 0.2rem 0.5rem; border-radius: 4px;
  letter-spacing: 0.08em; font-size: 0.62rem; font-weight: 800;
}

/* Responsive */
@media (max-width: 1024px) {
  .pool-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  .pool-form { padding: 1.5rem 1.35rem 1.6rem; }
  .pool-form h3 { font-size: 1.2rem; }
  .pool-form .fg-row { grid-template-columns: 1fr; }
}

/* ── GALLERY — scrapbook polaroid mosaic + lightbox ── */
.gallery { background: transparent; position: relative; }

.gallery-head {
  max-width: 880px;
  margin: 0 auto 3.25rem;
  text-align: center;
}
.gallery-head .h-eyebrow { justify-content: center; }
.gallery-head .h-eyebrow::before { display: none; }
.gallery-head .h-title { margin-top: 0.6rem; }
.gallery-head .h-sub { margin: 1.1rem auto 0; max-width: 640px; }
.gallery-count {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-left: 0.65rem;
  padding: 0.25rem 0.65rem;
  background: var(--green-50);
  color: var(--green-deep);
  border: 1px solid rgba(22,163,74,0.20);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.gallery-count strong { color: var(--green); font-weight: 800; }

/* Editorial mosaic with varying heights */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  grid-auto-flow: dense;
  gap: 1.1rem;
}

/* Per-card row spans — gives a magazine rhythm */
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 4; }   /* big feature */
.gallery-grid .g-item:nth-child(2) { grid-row: span 2; }
.gallery-grid .g-item:nth-child(3) { grid-row: span 2; }
.gallery-grid .g-item:nth-child(4) { grid-row: span 2; }
.gallery-grid .g-item:nth-child(5) { grid-row: span 2; }
.gallery-grid .g-item:nth-child(6) { grid-row: span 2; grid-column: span 2; }   /* mini-feature */
.gallery-grid .g-item:nth-child(7) { grid-row: span 2; grid-column: span 2; }

/* Polaroid card — frame + image + caption */
.g-item {
  position: relative;
  margin: 0;
  background: #ffffff;
  padding: 8px 8px 8px;
  border-radius: 8px;
  box-shadow:
    0 14px 28px -16px rgba(15,17,21,0.30),
    0 4px 10px -2px rgba(15,17,21,0.10);
  cursor: zoom-in;
  display: flex;
  flex-direction: column;
  overflow: visible;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s var(--ease);
  isolation: isolate;
}

/* Subtle organic rotation per card — scrapbook feel */
.gallery-grid .g-item:nth-child(1) { transform: rotate(-1deg); }
.gallery-grid .g-item:nth-child(2) { transform: rotate(1.2deg); }
.gallery-grid .g-item:nth-child(3) { transform: rotate(-1.8deg); }
.gallery-grid .g-item:nth-child(4) { transform: rotate(0.8deg); }
.gallery-grid .g-item:nth-child(5) { transform: rotate(-0.6deg); }
.gallery-grid .g-item:nth-child(6) { transform: rotate(1deg); }
.gallery-grid .g-item:nth-child(7) { transform: rotate(-1.2deg); }

/* Image frame area */
.g-frame {
  position: relative;
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
  background: #f1f3f5;
}
.g-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

/* Bottom caption strip (polaroid label) */
.g-caption {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.5rem 0.15rem;
  font-size: 0.7rem;
  color: var(--green-deep);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.g-caption .g-num {
  background: var(--green-50);
  color: var(--green-dark);
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
}
.g-caption .g-label {
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.66rem;
}

/* Decorative pin on the feature card */
.g-pin {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ef4444 0%, #b91c1c 70%);
  box-shadow:
    0 4px 8px -2px rgba(0,0,0,0.30),
    inset -1px -2px 3px rgba(0,0,0,0.30),
    inset 2px 2px 3px rgba(255,255,255,0.35);
  z-index: 3;
}

/* Soft green tint overlay on hover */
.g-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,82,38,0.30) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

/* "View" badge appearing on hover */
.g-frame::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%230d6e36' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center no-repeat;
  box-shadow: 0 10px 22px -8px rgba(0,0,0,0.40);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: opacity 0.35s var(--ease), transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  pointer-events: none;
}

.g-item:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow:
    0 28px 44px -16px rgba(15,17,21,0.40),
    0 10px 18px -4px rgba(22,163,74,0.22);
  z-index: 5;
}
.g-item:hover .g-frame img { transform: scale(1.08); }
.g-item:hover .g-frame::after { opacity: 1; }
.g-item:hover .g-frame::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ── Responsive mosaic ── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 120px; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 4; }
  .gallery-grid .g-item:nth-child(6) { grid-column: span 1; }
  .gallery-grid .g-item:nth-child(7) { grid-column: span 1; }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 0.85rem; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 3; }
  .gallery-grid .g-item:nth-child(n) { grid-column: span 1; grid-row: span 2; }
  .gallery-grid .g-item:nth-child(6),
  .gallery-grid .g-item:nth-child(7) { grid-column: span 2; }
  /* Tone down rotation on phones — looks cleaner */
  .gallery-grid .g-item { transform: rotate(0) !important; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-grid .g-item { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ── LIGHTBOX ── */
.g-lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(11, 17, 14, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.g-lightbox.show { opacity: 1; }
.g-lightbox[hidden] { display: none !important; }

.gl-stage {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex; flex-direction: column;
  align-items: center;
  background: #ffffff;
  padding: 14px 14px 12px;
  border-radius: 6px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  margin: 0;
}
.gl-stage img {
  max-width: 100%;
  max-height: calc(88vh - 50px);
  object-fit: contain;
  display: block;
  border-radius: 3px;
}
.gl-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.55rem 0.4rem 0.1rem;
  font-size: 0.78rem;
  color: var(--green-deep);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gl-meta #glCounter {
  background: var(--green-50);
  color: var(--green-dark);
  padding: 0.22rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
}

.gl-close, .gl-prev, .gl-next {
  position: absolute;
  z-index: 2;
  width: 44px; height: 44px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.gl-close:hover, .gl-prev:hover, .gl-next:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.08);
}
.gl-close { top: 20px; right: 20px; }
.gl-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.gl-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.gl-prev:hover { transform: translateY(-50%) scale(1.08); }
.gl-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 720px) {
  .g-lightbox { padding: 1rem; }
  .gl-close, .gl-prev, .gl-next { width: 38px; height: 38px; }
  .gl-prev { left: 8px; }
  .gl-next { right: 8px; }
}

/* ── PARTNERS — restructured: centered head + chips + benefits + impact strip ── */
.partners { /* background + text colors now driven by the global kraft-section rule */ }

.partner-head {
  max-width: 880px;
  margin: 0 auto 3rem;
  text-align: center;
}
.partner-head .h-eyebrow { justify-content: center; }
.partner-head .h-eyebrow::before { display: none; }
.partner-head .h-title { margin-top: 0.6rem; }
.partner-head .h-sub { margin: 1.1rem auto 1.75rem; }

.p-type-chips {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: 0.55rem; margin-top: 0.25rem;
}
.p-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.78);
  color: var(--green-deep);
  border: 1px solid rgba(13,82,38,0.18);
  padding: 0.45rem 0.95rem 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  box-shadow: 0 6px 14px -8px rgba(80,55,20,0.25);
}
.p-chip .icon { width: 14px; height: 14px; color: var(--green-dark); }

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 0;
}

/* Single-column variant — form is centered, max-width capped for readability */
.partner-grid--single {
  grid-template-columns: 1fr;
  max-width: 620px;
  margin: 2.5rem auto 0;
}

.p-section-title {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.005em;
  margin-bottom: 1.25rem;
}
.p-section-title .ps-bar {
  width: 28px; height: 3px; border-radius: 3px;
  background: var(--green);
  flex-shrink: 0;
}

.p-benefits { display: flex; flex-direction: column; gap: 0.7rem; }
.p-benefit {
  display: flex; gap: 0.85rem; align-items: flex-start;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(13,82,38,0.10);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.p-benefit:hover { background: rgba(255,255,255,0.85); transform: translateX(3px); }
.p-benefit .dot {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px -2px rgba(22,163,74,0.35);
}
.p-benefit .dot .icon { width: 14px; height: 14px; stroke-width: 3; }
.p-benefit p { font-size: 0.92rem; color: var(--green-deep); font-weight: 500; line-height: 1.5; margin: 0; }

/* Decorative impact stats strip below benefits */
.p-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(232,247,236,0.65) 100%);
  border: 1.5px dashed rgba(13,82,38,0.25);
  border-radius: 14px;
}
.p-impact-stat { text-align: center; }
.p-impact-stat strong {
  display: block;
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.p-impact-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.66rem;
  color: var(--green-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.p-form-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2rem;
}
.p-form-head {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.p-form-badge {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 12px -4px rgba(22,163,74,0.35);
}
.p-form-badge .icon { width: 18px; height: 18px; }
.p-form-card h3 { font-size: 1.15rem; font-weight: 700; margin: 0; }
.p-form-card .fg label { color: rgba(255,255,255,0.55); }
.p-form-card .fg input, .p-form-card .fg select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.p-form-card .fg input::placeholder { color: rgba(255,255,255,0.3); }
.p-form-card .fg input:focus, .p-form-card .fg select:focus {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(22,163,74,0.15);
}
.p-form-card .sub-btn { background: var(--green); }
.p-form-card .sub-btn:hover { background: var(--green-dark); }

/* ── FOOTER — kraft styling lives at the top of file; layout only here ── */
footer { padding: 4rem 2rem 2rem; }
.foot-in {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(13,82,38,0.15);
}
.foot-brand .logo-img { height: 30px; }
.foot-desc { font-size: 0.86rem; line-height: 1.7; margin-top: 0.85rem; max-width: 280px; }
.foot-nps  { font-size: 0.74rem; margin-top: 0.7rem; }
.foot-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.1rem;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.foot-col a {
  font-size: 0.88rem;
  transition: color 0.2s var(--ease);
  position: relative;
}
.foot-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 1.75rem; padding-bottom: 0.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 2rem;
}
.foot-bottom p { font-size: 0.82rem; margin: 0; line-height: 1.5; }
.foot-bottom .foot-copy   { justify-self: start; color: rgba(255,255,255,0.78); }
.foot-bottom .foot-tag    { justify-self: center; text-align: center; opacity: 0.7; font-style: italic; }
.foot-bottom .foot-credit {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 0.42rem;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.foot-bottom .foot-credit a {
  color: var(--green-300);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(143,212,169,0.45);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.foot-bottom .foot-credit a:hover { color: #fff; border-bottom-color: #fff; }
.foot-bottom .foot-heart {
  width: 14px; height: 14px;
  color: #ff5a78;
  filter: drop-shadow(0 0 6px rgba(255,90,120,0.55));
  animation: heartBeat 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  20%      { transform: scale(1.22); }
  40%      { transform: scale(0.94); }
  60%      { transform: scale(1.12); }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sec { padding: 5.5rem 2.25rem; }
  .hero { padding: 4rem 2.25rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { margin: 0 auto; max-width: 480px; height: 540px; }
  .hv-notebook { width: 320px; }
  .hero-visual::before, .hero-visual::after { width: 80px; height: 80px; bottom: 60px; left: -6px; font-size: 0.5rem; padding: 14px; }
  .hero-visual::after { font-size: 1.35rem; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .contrib-grid { grid-template-columns: 1fr; }
  .prob-grid { grid-template-columns: 1fr; }
  .three-steps { grid-template-columns: 1fr; }
  .inno-grid, .sewa-grid, .amb-grid, .partner-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pledge-cols { grid-template-columns: 1fr; gap: 2rem; }
  .charts-wrap { grid-template-columns: 1fr; }
  .story-slide { flex: 0 0 calc((100% - 1.25rem) / 2); }
  .foot-in { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Process — stack vertically, hide rail, show mini rail */
  .process-flow { grid-template-columns: 1fr; gap: 0; }
  .proc-rail { display: none; }
  .proc-step { min-height: auto; padding: 2.5rem 0; }
  .proc-step-grid {
    position: static;          /* unpin on mobile */
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 0;
    opacity: 1; transform: none;   /* always shown on mobile */
  }
  .proc-step-grid > .proc-step-text,
  .proc-step-grid > .proc-step-visual {
    grid-column: auto;
  }
  .proc-step-num { position: static; top: auto; left: auto; font-size: 4.2rem; margin-bottom: 0.5rem; }

  /* Sticky horizontal mini rail */
  .proc-mini {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    position: sticky;
    top: 76px;
    z-index: 20;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.6rem 1.1rem;
    margin: 0 0 2rem;
    box-shadow: var(--shadow-sm);
  }
  .proc-mini-progress {
    width: 4px; height: 28px; background: var(--line-2); border-radius: 4px; overflow: hidden; flex-shrink: 0;
  }
  .proc-mini-fill {
    width: 100%; height: 0;
    background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 4px;
    transition: height 0.6s var(--ease-out);
  }
  .proc-mini-info { flex: 1; line-height: 1.15; min-width: 0; }
  .proc-mini-step {
    display: block; font-size: 0.62rem; font-weight: 700; color: var(--muted-2);
    letter-spacing: 0.14em; text-transform: uppercase;
    font-variant-numeric: tabular-nums;
  }
  .proc-mini-name {
    display: block; font-size: 0.95rem; font-weight: 600; color: var(--ink);
    margin-top: 2px; letter-spacing: -0.01em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: opacity 0.25s var(--ease);
  }
  .proc-mini-dots { display: flex; gap: 2px; flex-shrink: 0; }
  /* Tap target is 32×32, visible dot is centred inside via gradient/box-shadow */
  .proc-mini-dots button {
    width: 32px; height: 32px; padding: 0;
    background: transparent; border: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.25s var(--ease);
    display: inline-flex; align-items: center; justify-content: center;
  }
  .proc-mini-dots button::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--line-2);
    border-radius: 50%;
    transition: all 0.25s var(--ease);
  }
  .proc-mini-dots button.done::before { background: var(--green-200); }
  .proc-mini-dots button.active::before {
    background: var(--green);
    width: 22px; height: 8px;
    border-radius: 4px;
    box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
  }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 1rem; border-bottom: 1px solid var(--line); }
  .nav-links.show { display: flex; }
  .nav-links li { width: 100%; padding: 0.65rem 0; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .sec { padding: 4rem 1.5rem; }
  .hero { padding: 3rem 1.5rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-visual { max-width: 360px; height: 480px; }
  .hv-notebook { width: 270px; height: auto; }
  .hv-stat { width: 160px; padding: 0.75rem 0.85rem; }
  .hv-stat-val { font-size: 1.35rem; }
  .hv-contrib { width: 180px; padding: 0.7rem 0.85rem; bottom: 18px; }
  .hv-contrib-num { font-size: 0.95rem; }
  .hv-contrib-label { font-size: 0.64rem; }
  .hv-contrib-avs span { width: 24px; height: 24px; font-size: 9px; margin-left: -8px; }
  .hv-live { font-size: 0.7rem; padding: 0.4rem 0.8rem; }
  .hv-tag { font-size: 0.7rem; padding: 0.4rem 0.75rem 0.4rem 0.35rem; }
  .hv-bg-ring { width: 80px; height: 80px; }
  /* Shrink eco-stamp + hide if too crammed */
  .hero-visual::before, .hero-visual::after {
    width: 66px; height: 66px; bottom: 56px; left: 4px;
    font-size: 0.42rem; padding: 11px;
  }
  .hero-visual::after { font-size: 1.05rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; padding: 0; }
  .stat-card { padding: 1rem 0.9rem; }
  .stat-card .ico { width: 28px; height: 28px; }
  .stat-card .ico .icon { width: 14px; height: 14px; }
  .stat-card .num { font-size: 1.3rem; margin-top: 0.4rem; }
  .stat-card .label { font-size: 0.72rem; }
  .proc-step-text { padding-top: 0.5rem; }
  .proc-step-text h3 { font-size: 1.45rem; }
  .proc-step-text p { font-size: 0.92rem; }
  .proc-step-num { font-size: 3.8rem; }
  .proc-illu { padding: 1rem; max-width: 100%; }
  .story-slide { flex: 0 0 100%; }
  .pledge-cols { gap: 1.5rem; }
  .wall-grid { grid-template-columns: 1fr; max-height: 320px; }
  .foot-in { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .foot-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.7rem;
  }
  .foot-bottom .foot-copy,
  .foot-bottom .foot-tag,
  .foot-bottom .foot-credit { justify-self: center; }
  .insight-banner { padding: 2.25rem 1.5rem; }
  .pledge-quote-box { padding: 1.5rem; }
  .bar-row { grid-template-columns: 90px 1fr auto; font-size: 0.78rem; }
  .circ-wrap { gap: 0.85rem; }
  .circ { width: 120px; height: 120px; }
}
@media (max-width: 480px) {
  .pledge-chips { gap: 0.4rem; }
  .pledge-chip { font-size: 0.74rem; padding: 0.45rem 0.85rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  /* Hide the eco-stamp on tiny phones to avoid crowding */
  .hero-visual::before, .hero-visual::after { display: none; }
  .fg-row { grid-template-columns: 1fr; }
  .pledge-wall-head { flex-direction: column; align-items: flex-start; gap: 0.6rem; }

  /* Footer — single-column stack for narrow phones */
  .foot-in { grid-template-columns: 1fr; gap: 1.75rem; padding-bottom: 2rem; }
  .foot-brand .logo-img { height: 26px; }
  .foot-desc { max-width: none; font-size: 0.82rem; }
  .foot-col h4 { margin-bottom: 0.7rem; font-size: 0.68rem; }
  .foot-col a { font-size: 0.84rem; }
  .foot-bottom {
    padding-top: 1.25rem;
    grid-template-columns: 1fr;
    gap: 0.55rem; text-align: center;
  }
  .foot-bottom p { font-size: 0.76rem; }
  .foot-bottom .foot-copy,
  .foot-bottom .foot-tag,
  .foot-bottom .foot-credit { justify-self: center; }

  /* ── Phone responsive fixes (audit punch-list) ── */

  /* 1. Partners impact strip — 3-col cramps "20,000T", collapse to 1-col */
  .p-impact { grid-template-columns: 1fr; gap: 0.55rem; padding: 1rem 0.9rem; }
  .p-impact-stat strong { font-size: 1.2rem; }
  .p-impact-stat span { font-size: 0.62rem; }

  /* 2. Drives + Distributions — 1-col on phone so name + flag don't collide */
  .drives-grid { grid-template-columns: 1fr; }
  .drives-grid.collapsed > .drive-card:nth-child(n+5) { display: none; }

  /* 3. Hero floating cards — pull off negative right so nothing clips off-screen */
  .hv-stat    { right: 0; width: 150px; padding: 0.7rem 0.85rem; }
  .hv-contrib { right: 0; width: 165px; padding: 0.65rem 0.85rem; }
  .hv-live    { left: 0; }
  .hv-tag     { left: 0; }

  /* 5. Nav CTA — drop the long label, keep the chip-only button to save space */
  .nav-cta { padding: 0.3rem !important; gap: 0; }
  .nav-cta span:last-child { display: none; }

  /* 6. CTA visual — actual grid for stat cards (display: flex was overriding) */
  .cta-visual { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
  .cta-stat-num { font-size: 1.5rem; }

  /* 7. Loading skeleton — match wall-grid's 1-col layout on phone */
  .wall-loading { grid-template-columns: 1fr; }

  /* 8. Process mini sticky pill — tighter spacing so it doesn't overflow at 320 */
  .proc-mini { gap: 0.6rem; padding: 0.55rem 0.85rem; }
  .proc-mini-dots button { width: 24px; height: 30px; }
}

/* 4. Ambassador timeline — bigger gap when stacked + room for the overflowing circle */
@media (max-width: 1024px) {
  .amb-timeline { gap: 3.5rem 1rem; padding-top: 32px; }
}

/* Tiny phones (≤360px — older Androids, folded display front screens) */
@media (max-width: 360px) {
  .nav { padding: 0.75rem 1rem; }
  .hero h1 { font-size: 1.85rem; }
  .sec { padding: 3.5rem 1.15rem; }
  footer { padding-left: 1.15rem; padding-right: 1.15rem; padding-top: 5.5rem; }
  /* Force narrowest hero cards to fit inside the 320-360 viewport */
  .hero-visual { max-width: 300px; height: 420px; }
  .hv-notebook { width: 230px; }
  .hv-stat    { width: 130px; padding: 0.55rem 0.7rem; }
  .hv-stat-val { font-size: 1.1rem; }
  .hv-contrib { width: 150px; padding: 0.55rem 0.7rem; }
  .hv-contrib-num { font-size: 0.85rem; }
  .hv-bg-ring { width: 60px; height: 60px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq { background: transparent; }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 4rem;
  align-items: start;
}
.faq-list {
  display: flex; flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(13,82,38,0.12);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
              box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
}
.faq-item:hover {
  border-color: var(--green-200);
  background: #ffffff;
  box-shadow: 0 8px 18px -10px rgba(11,82,38,0.18);
}
.faq-item[open] {
  background: #ffffff;
  border-color: var(--green-200);
  box-shadow: 0 10px 26px -12px rgba(11,82,38,0.20);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.01em;
  line-height: 1.4;
  flex: 1;
}
.faq-toggle {
  position: relative;
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--green-dark);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-toggle::before {
  left: 50%; top: 50%;
  width: 12px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  left: 50%; top: 50%;
  width: 2px; height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-toggle {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: rotate(180deg);
}
.faq-item[open] .faq-toggle::before { background: #fff; }
.faq-item[open] .faq-toggle::after { opacity: 0; }
.faq-a {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(13,82,38,0.18);
  font-size: 0.95rem;
  color: rgba(11,82,38,0.82);
  line-height: 1.7;
  animation: faqFadeIn 0.4s var(--ease-out);
}
.faq-a strong { color: var(--green-deep); }
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   FINAL CTA — bold green hero card with floating decor
   ============================================================ */
.final-cta {
  padding: 4rem 2rem 7rem;
  background: transparent;
}
.cta-card {
  position: relative;
  background:
    linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 55%, #082c14 100%);
  color: #ffffff;
  border-radius: 28px;
  padding: 4rem 3.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  box-shadow:
    0 36px 72px -24px rgba(11,82,38,0.55),
    0 14px 26px -10px rgba(11,82,38,0.30),
    inset 0 1px 0 rgba(255,255,255,0.12);
  overflow: hidden;
  isolation: isolate;
}

/* Subtle paper texture + glowing orbs */
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 380px at 0% 0%,   rgba(143,212,169,0.22), transparent 60%),
    radial-gradient(700px 320px at 100% 100%, rgba(143,212,169,0.16), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* Faint dot grid pattern */
.cta-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
}
.cta-card > * { position: relative; z-index: 1; }

/* Decorative sprouts + orbs floating in the card */
.cta-decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cta-sprout {
  position: absolute;
  color: rgba(143,212,169,0.32);
  width: 130px; height: 130px;
}
.cta-sprout--1 {
  top: -22px; left: -22px;
  transform: rotate(-22deg);
  animation: ctaFloat 9s ease-in-out infinite;
}
.cta-sprout--2 {
  bottom: -28px; right: -18px;
  transform: rotate(18deg) scale(0.9);
  animation: ctaFloat 11s ease-in-out infinite reverse;
}
@keyframes ctaFloat {
  0%, 100% { transform: rotate(-22deg) translateY(0); }
  50%      { transform: rotate(-22deg) translateY(-10px); }
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(143,212,169,0.55), rgba(143,212,169,0));
  filter: blur(2px);
}
.cta-orb--a { width: 80px;  height: 80px;  top: 20%;  right: 18%; opacity: 0.6; }
.cta-orb--b { width: 60px;  height: 60px;  bottom: 28%; left: 12%; opacity: 0.45; }
.cta-orb--c { width: 110px; height: 110px; top: 60%;  right: 8%;  opacity: 0.3; }

/* Text */
.cta-text .h-eyebrow {
  color: var(--green-300);
  font-weight: 700;
}
.cta-text .h-eyebrow::before { background: var(--green-300); }
.cta-text .h-title {
  color: #ffffff !important;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.cta-text .h-sub {
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 1.75rem;
  max-width: 460px;
}
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
}
/* Primary button on green bg — white with green text */
.cta-actions .btn-primary {
  background: #ffffff;
  color: var(--green-deep);
  box-shadow: 0 14px 28px -10px rgba(0,0,0,0.30);
}
.cta-actions .btn-primary:hover {
  background: var(--green-50);
  color: var(--green-deep);
}
.cta-actions .btn-primary .btn-chip {
  background: var(--green); color: #fff;
}
.cta-actions .btn-ghost {
  background: rgba(255,255,255,0.10);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}
.cta-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}
.cta-actions .btn-ghost .btn-chip {
  background: rgba(255,255,255,0.18); color: #fff;
}

/* Stat cards — glass treatment on green */
.cta-visual {
  display: flex; flex-direction: column;
  gap: 0.85rem;
}
.cta-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 14px 28px -14px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.cta-stat:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.14);
  box-shadow:
    0 22px 36px -14px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.22);
}
.cta-stat--alt {
  background: linear-gradient(135deg, #ffffff 0%, var(--green-50) 100%);
  color: var(--green-deep);
  border-color: rgba(255,255,255,0.95);
  box-shadow:
    0 18px 32px -10px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.9);
}
.cta-stat-num {
  font-family: 'TT Hoves Pro', sans-serif;
  font-size: 1.85rem; font-weight: 800; letter-spacing: -0.025em;
  color: #ffffff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cta-stat--alt .cta-stat-num { color: var(--green-deep); }
.cta-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-stat--alt .cta-stat-lbl { color: var(--green-dark); }

/* CTA pill buttons */
.cta-actions .btn-primary,
.cta-actions .btn-ghost { padding: 0.95rem 1.6rem 0.95rem 1.1rem; }
.cta-actions .btn-primary .icon { width: 18px; height: 18px; margin-right: 4px; }

@media (max-width: 900px) {
  .cta-card { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
  .cta-visual { grid-template-columns: 1fr 1fr; }
  .cta-sprout { width: 90px; height: 90px; }
}

/* ============================================================
   SECTION DIVIDERS — editorial-style page breaks
   ============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: 100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 0 0 110px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-2) 50%, transparent);
}
.section-divider .sd-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.section-divider .sd-dots span {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}
.section-divider .sd-dots span:nth-child(1) { opacity: 0.35; }
.section-divider .sd-dots span:nth-child(2) { opacity: 0.65; }
.section-divider .sd-dots span:nth-child(3) {
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.10);
  width: 6px; height: 6px;
}
/* On dark backgrounds */
.section-divider.on-dark::before,
.section-divider.on-dark::after { background: linear-gradient(to right, transparent, rgba(255,255,255,0.12) 50%, transparent); }
.section-divider.on-dark .sd-dots span { background: var(--green-300); }
.section-divider.on-dark .sd-dots span:nth-child(3) { box-shadow: 0 0 0 4px rgba(22,163,74,0.22); }

@media (max-width: 720px) {
  .section-divider { height: 70px; gap: 1rem; }
  .section-divider::before,
  .section-divider::after { flex-basis: 70px; }
}

/* ============================================================
   PLAYFUL & GREEN — child-friendly accents on top of the polish
   ============================================================ */

/* Hand-drawn green underline under emphasized hero word */
.hero h1 em { position: relative; display: inline-block; padding: 0 0.05em; }
.hero h1 em::after {
  content: '';
  position: absolute; left: -2px; right: -2px; bottom: -0.06em;
  height: 0.22em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 18' preserveAspectRatio='none'><path d='M3 12 Q 30 3 60 9 T 120 9 T 180 9 T 237 11' fill='none' stroke='%2316a34a' stroke-width='5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-size: 100% 100%;
  transform-origin: left center; transform: scaleX(0);
  animation: drawUnderline 1.2s var(--ease-out) 0.6s forwards;
  pointer-events: none;
}
@keyframes drawUnderline { to { transform: scaleX(1); } }

/* Marker-style highlight on key phrases */
.mark-green {
  background: linear-gradient(180deg, transparent 62%, rgba(22,163,74,0.28) 62% 92%, transparent 92%);
  padding: 0 0.18em;
  font-weight: 600;
  border-radius: 2px;
}
.mark-kraft {
  background: linear-gradient(180deg, transparent 62%, rgba(193,156,93,0.28) 62% 92%, transparent 92%);
  padding: 0 0.18em;
  font-weight: 600;
  border-radius: 2px;
}




/* Section green tint — for stories / pledge / ambassador */
.stories      { background: transparent !important; }
.ambassador   { background: transparent !important; }


/* Big numbers in stat cards — tiny sparkle bullet before */
.stat-card .num { position: relative; }



/* Buttons — soft squish + green glow on hover */
.btn-primary:hover, .btn-accent:hover { transform: translateY(-2px) scale(1.02); }
.sub-btn:hover { transform: translateY(-2px) scale(1.01); }

/* H-title em — green color is brand, add subtle glow */
.h-title em { text-shadow: 0 1px 0 rgba(22,163,74,0.05); }

/* Small floating leaf chip near "tribal children" / nature mentions */
.leaf-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-50);
  color: var(--green-dark);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.78em; font-weight: 700;
  border: 1px solid var(--green-200);
}
.leaf-chip svg { width: 12px; height: 12px; }

/* ============================================================
   GREEN-FIRST THEME PASS
   Replace every black/ink text with green shades sitewide.
   ============================================================ */

/* All heading-level text → deep brand green */
.h-title, h1, h2, h3, h4, h5 { color: var(--green-deep); }
.hero h1 { color: var(--green-deep); }
.hero h1 em {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Eyebrows / labels */
.h-eyebrow { color: var(--green-dark); }
.h-eyebrow::before { background: var(--green-dark); }

/* Body / paragraph text */
.h-sub { color: rgba(11,82,38,0.78); }
.hero-desc { color: rgba(11,82,38,0.78); }

/* Common emphasis */
strong, b { color: var(--green-deep); }

/* Mark highlight bars use a softer green band */
.mark-green { background: linear-gradient(180deg, transparent 62%, rgba(22,163,74,0.22) 62% 92%, transparent 92%); color: var(--green-deep); }
.mark-kraft { background: linear-gradient(180deg, transparent 62%, rgba(193,156,93,0.32) 62% 92%, transparent 92%); color: var(--green-deep); }

/* ── HERO TRUST ── */
.trust-text { color: rgba(11,82,38,0.72); }
.trust-text strong { color: var(--green-deep); }

/* ── STAT CARDS (counter bar) ── */
.stat-card .num   { color: var(--green-deep); }
.stat-card .label { color: rgba(11,82,38,0.62); }
.stat-card .num .suffix { color: var(--green-dark); }
.stat-card { background: rgba(255,255,255,0.78); }
.stat-card:hover { background: rgba(255,255,255,0.96); border-color: var(--green-200); }
.stat-card .ico { background: var(--green-50); color: var(--green-dark); }
.stat-card:hover .ico { background: var(--green-deep); color: #fff; }

/* ── CONTRIB CARDS ── */
.contrib-card { background: rgba(255,255,255,0.82); }
.contrib-card:hover { background: rgba(255,255,255,0.96); border-color: var(--green-200); }
.contrib-card .num { color: var(--green-deep); }
.contrib-card .sub-label { color: var(--green-dark); }
.contrib-card p { color: rgba(11,82,38,0.7); }
.contrib-card strong { color: var(--green-deep); }
.contrib-card .badge { background: var(--green-50); color: var(--green-dark); }
.contrib-card:hover .badge { background: var(--green-deep); color: #fff; }

/* ── PROBLEM CARDS ── */
.prob-card { background: rgba(255,255,255,0.82); }
.prob-card:hover { background: rgba(255,255,255,0.96); border-color: var(--green-200); }
.prob-card .num-xl { color: var(--green-deep); }
.prob-card.waste .num-xl { color: var(--green-deep); }
.prob-card .note { color: var(--green-dark); }
.prob-card h3 { color: var(--green-deep); }
.prob-card p  { color: rgba(11,82,38,0.74); }
.prob-card .icon-pill { background: var(--green-50); color: var(--green-dark); }

/* ── PROCESS — 3 outcome cards ── */
.ts-card { background: rgba(255,255,255,0.86); }
.ts-card h3 { color: var(--green-deep); }
.ts-card p  { color: rgba(11,82,38,0.74); }
.ts-card strong { color: var(--green-deep); }
.ts-no { color: var(--green-dark); }

/* ── PROCESS — main step text ── */
.proc-step-text h3 { color: var(--green-deep); }
.proc-step-text p  { color: rgba(11,82,38,0.74); }
.proc-step-facts li { color: var(--green-deep); }
.proc-step-facts li strong { color: var(--green-deep); }
.proc-step-num { color: var(--green-deep); }
.proc-step-num::before { background: var(--green-dark); }
.proc-tag { color: var(--green-dark); background: var(--green-50); border-color: var(--green-200); }
.proc-rail-label { color: var(--green-dark); }
.proc-rail-current { color: var(--green-deep); }
.proc-rail-steps li { color: rgba(11,82,38,0.62); }
.proc-rail-steps li.active { color: var(--green-deep); background: rgba(22,163,74,0.06); }
.proc-rail-steps li.active .dot { background: var(--green-deep); border-color: var(--green-deep); }
.proc-rail-steps li.done   { color: rgba(11,82,38,0.72); }
.t-step .t-content { background: rgba(255,255,255,0.86); }
.t-step .t-label { color: var(--green-deep); }
.t-step .t-desc  { color: rgba(11,82,38,0.72); }
.t-step .t-num   { color: var(--green-dark); }

/* ── PLEDGE ── */
.pledge-chip { background: rgba(255,255,255,0.82); border-color: var(--green-200); color: var(--green-deep); }
.pledge-chip:hover { background: var(--green-50); }
.pledge-head .h-eyebrow { color: var(--green-dark); }
.card-frame { background: rgba(255,255,255,0.92); }
.card-frame h3 { color: var(--green-deep); }
.card-frame .form-sub { color: rgba(11,82,38,0.68); }
.pledge-wall-head h3 { color: var(--green-deep); }
.pledge-wall-head .count { color: var(--green-deep); }
.pledge-wall-head .count-sub { color: var(--green-dark); }
.wall-card { background: rgba(255,255,255,0.78); }
.wall-card:hover { background: rgba(255,255,255,0.95); border-color: var(--green-200); }
.wall-card .nm { color: var(--green-deep); }
.wall-card .lc { color: rgba(11,82,38,0.6); }
.donor-feed-wrap { background: rgba(255,255,255,0.92); }
.donor-row { background: rgba(255,255,255,0.65); }
.donor-row:hover { background: rgba(255,255,255,0.95); border-color: var(--green-200); }
.donor-info .nm { color: var(--green-deep); }
.donor-info .lc { color: rgba(11,82,38,0.6); }
.donor-time { color: rgba(11,82,38,0.45); }

/* ── STORY SLIDER ── */
.story-slide { background: rgba(255,255,255,0.86); }
.story-slide:hover { background: rgba(255,255,255,0.96); border-color: var(--green-200); }
.story-text { color: var(--green-deep); }
.story-name { color: var(--green-deep); }
.story-role { color: rgba(11,82,38,0.58); }
.story-quote-mark { color: var(--green-deep); }
.slider-filters button { background: rgba(255,255,255,0.6); color: var(--green-dark); border-color: var(--green-200); }
.slider-filters button:hover { color: var(--green-deep); background: rgba(255,255,255,0.9); }
.slider-filters button.active { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.slider-arrows button { background: rgba(255,255,255,0.85); border-color: var(--green-200); color: var(--green-deep); }
.slider-arrows button:hover { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.slider-dots button { background: var(--green-200); }
.slider-dots button.active { background: var(--green-deep); }

/* ── COLLECTION & DISTRIBUTION DRIVES ── */
.drive-card { background: rgba(255,255,255,0.86); }
.drive-card:hover { background: rgba(255,255,255,0.96); border-color: var(--green-200); }
.drive-card h4 { color: var(--green-deep); }
.drive-card .loc { color: var(--green-dark); }
.drive-card .desc { color: rgba(11,82,38,0.72); }
.drive-card .meta { border-top-color: rgba(13,82,38,0.12); }
.drive-card .meta span { background: var(--green-50); color: var(--green-dark); }
.drive-card .badge { background: var(--green-50); color: var(--green-dark); }
.drive-card .badge.corp { background: rgba(193,156,93,0.18); color: #6e5022; }
.drive-card .badge.comm { background: rgba(15,82,38,0.10); color: var(--green-deep); }
.drive-card .badge.trib { background: rgba(140,90,30,0.14); color: #6e4513; }
.drive-card .badge.govt { background: rgba(22,163,74,0.14); color: var(--green-dark); }
.drive-card .badge.ngo  { background: var(--green-50); color: var(--green-deep); }
.drive-card .ico { background: var(--green-50); color: var(--green-dark); }

/* ── TABS ── */
.tabs { background: rgba(255,255,255,0.72); border-color: var(--green-200); }
.tabs button { color: var(--green-dark); }
.tabs button:hover { color: var(--green-deep); }
.tabs button.active { background: var(--green-deep); color: #fff; }

/* ── BUTTONS — primary CTAs in deep brand green ── */
.btn-primary {
  background: var(--green-deep);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 10px 26px -8px rgba(11,82,38,0.4);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 14px 32px -8px rgba(11,82,38,0.45); }
.btn-ghost { color: var(--green-deep); border-color: var(--green-200); background: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }
.btn-link { color: var(--green-deep); }
.btn-link:hover { color: var(--green); }
.nav-cta {
  background: var(--green-deep) !important;
  color: #fff !important;
}
.nav-cta:hover { background: var(--green) !important; }
.nav-links a { color: var(--green-dark); }
.nav-links a:hover { color: var(--green-deep); }
/* Hand-drawn underline is the SVG background defined in the base .nav-links a::after rule — no need to override colour here. */
.btn-load { color: var(--green-deep); border-color: var(--green-deep); }
.btn-load:hover { background: var(--green-deep); color: #fff; }

/* ── FORMS ── */
.fg label { color: var(--green-dark); }
.fg input, .fg select, .fg textarea {
  border-color: var(--green-200);
  color: var(--green-deep);
  background: rgba(255,255,255,0.78);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.16);
}
.fg input::placeholder { color: rgba(11,82,38,0.45); }
.sub-btn { background: var(--green-deep); }
.sub-btn:hover { background: var(--green-dark); }
.wall-search { background: rgba(255,255,255,0.78); border-color: var(--green-200); color: var(--green-deep); }
.wall-search::placeholder { color: rgba(11,82,38,0.5); }

/* ── HERO VISUAL CHIPS ── */
.hv-live { background: rgba(255,255,255,0.92); color: var(--green-deep); border-color: var(--green-200); }
.hv-tag { background: var(--green-deep); color: #fff; }
.hv-tag-ico { background: rgba(255,255,255,0.16); color: var(--green-300); }
.hv-stat { background: rgba(255,255,255,0.94); border-color: var(--green-200); }
.hv-stat-label { color: var(--green-dark); }
.hv-stat-val { color: var(--green-deep); }
.hv-stat-unit { color: var(--green-dark); }
.hv-stat-trend { color: var(--green-dark); }
.hv-contrib { background: rgba(255,255,255,0.94); border-color: var(--green-200); }
.hv-contrib-num { color: var(--green-deep); }
.hv-contrib-num em { color: var(--green-dark); }
.hv-contrib-label { color: rgba(11,82,38,0.7); }

/* ── BENEFITS ── */
.benefit { background: rgba(255,255,255,0.82); border-color: var(--green-200); }
.benefit:hover { background: rgba(255,255,255,0.95); border-color: var(--green); }
.benefit span { color: var(--green-deep); }
.benefit .ico { background: var(--green-50); color: var(--green-dark); }

/* ── INSIGHT BANNER, PLEDGE QUOTE, AMB CALLOUT — already kraft + green ── */

/* ── SECTION DIVIDER — creative wavy element ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: 120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}
/* Wavy lines on each side */
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 0 0 200px;
  height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' preserveAspectRatio='none'><path d='M2 9 Q 22 1 42 9 T 82 9 T 122 9 T 162 9 T 198 9' fill='none' stroke='%230b5226' stroke-width='2.2' stroke-linecap='round' opacity='0.55'/><circle cx='198' cy='9' r='3' fill='%230b5226'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.section-divider::after {
  transform: scaleX(-1);
}
.section-divider .sd-dots { display: none; }

/* Center medallion */
.section-divider .sd-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #ffffff 0%, #fafefb 55%, #ecfaf1 100%);
  border: 2px solid var(--green);
  color: var(--green-deep);
  box-shadow:
    0 0 0 7px rgba(240,253,244,0.65),
    0 12px 28px -8px rgba(22,163,74,0.32),
    inset 0 1px 0 rgba(255,255,255,0.95);
  position: relative;
  transition: transform 0.4s var(--ease-out);
}
/* Outer rotating dashed ring */
.section-divider .sd-mark::before {
  content: '';
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 1.5px dashed var(--green-200);
  opacity: 0.75;
  animation: sdRingSpin 32s linear infinite;
}
/* Pair of tiny floating green dots above and below */
.section-divider .sd-mark::after {
  content: '';
  position: absolute; inset: -28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0%,   var(--green) 0, var(--green) 3px, transparent 3.5px) no-repeat,
    radial-gradient(circle at 50% 100%, var(--green) 0, var(--green) 3px, transparent 3.5px) no-repeat,
    radial-gradient(circle at 0% 50%,   var(--green-300) 0, var(--green-300) 2px, transparent 2.5px) no-repeat,
    radial-gradient(circle at 100% 50%, var(--green-300) 0, var(--green-300) 2px, transparent 2.5px) no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.section-divider .sd-mark svg {
  width: 24px; height: 24px;
  stroke-width: 1.8;
}
@keyframes sdRingSpin { to { transform: rotate(360deg); } }

/* Hide section dividers when they sit next to a kraft section
   (either side) — kraft sections give enough visual separation on their own */
.innovations + .section-divider,
.sewa + .section-divider,
.partners + .section-divider,
.section-divider:has(+ .innovations),
.section-divider:has(+ .sewa),
.section-divider:has(+ .partners) {
  display: none;
}

@media (max-width: 720px) {
  .section-divider { height: 92px; gap: 0.85rem; }
  .section-divider::before,
  .section-divider::after { flex-basis: 110px; height: 14px; }
  .section-divider .sd-mark { width: 52px; height: 52px; }
  .section-divider .sd-mark svg { width: 20px; height: 20px; }
  .section-divider .sd-mark::before { inset: -10px; }
  .section-divider .sd-mark::after { inset: -22px; }
}

