    :root {
      --orange:      #276749;
      --orange-dark: #1a4f38;
      --orange-soft: #e8f5ee;
      --orange-glow: rgba(39,103,73,.18);
      --accent:      #f57c00;
      --accent-dark: #de6c00;
      --ink: #121212;
      --text: #3b3b3b;
      --muted: #7d7d7d;
      --line: #dde8e3;
      --bg: #f6fdf9;
      --card: #ffffff;
      --radius: 24px;
      --radius-sm: 14px;
      --shadow: 0 12px 36px rgba(18,18,18,.08);
      --shadow-lg: 0 20px 56px rgba(18,18,18,.12);
      --max: 1180px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Mulish', sans-serif;
      color: var(--ink);
      background: linear-gradient(180deg, #f2fbf6 0%, #ffffff 30%, #f2fbf6 100%);
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; line-height: 1.15; }

    /* ── Layout helpers ── */
    .container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
    .section   { padding: 88px 0; }
    .section--tight { padding: 60px 0; }
    .grid { display: grid; gap: 20px; }

    /* ── Card ── */
    .card {
      background: var(--card);
      border: 1px solid rgba(0,0,0,.05);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    /* ── Buttons ── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .92rem;
      padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
      transition: transform .2s, box-shadow .2s, background .2s;
      white-space: nowrap; letter-spacing: .01em;
    }
    .btn:active { transform: scale(.97); }
    .btn-primary {
      background: var(--accent); color: #fff;
      box-shadow: 0 6px 20px rgba(245,124,0,.32);
    }
    .btn-primary:hover { background: var(--accent-dark); box-shadow: 0 8px 28px rgba(245,124,0,.42); transform: translateY(-1px); }
    .btn-secondary {
      background: var(--orange-soft); color: var(--orange);
      border: 1.5px solid rgba(39,103,73,.16);
    }
    .btn-secondary:hover { background: #d0ead9; }
    .btn-ghost {
      background: transparent; color: var(--text); border: 1.5px solid var(--line);
    }
    .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
    .btn-lg { padding: 17px 34px; font-size: 1rem; }
    .btn-full { width: 100%; }
    .btn svg { flex-shrink: 0; }

    /* ── Pill / badge ── */
    .pill {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--orange-soft); color: var(--orange);
      border: 1px solid rgba(39,103,73,.18); border-radius: 999px;
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .72rem;
      padding: 5px 13px; letter-spacing: .06em; text-transform: uppercase;
    }
    .pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 2s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

    /* ── NAV ── */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      background: rgba(255,255,255,.88);
      border-bottom: 1px solid rgba(0,0,0,.05);
    }
    .nav {
      min-height: 74px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
    }
    .brand {
      display: flex; align-items: center; gap: 11px;
      font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: -.04em;
      cursor: pointer; user-select: none;
    }
    .brand-mark {
      width: 42px; height: 42px; border-radius: 13px;
      display: grid; place-items: center;
      background: linear-gradient(135deg, #5aab7c 0%, var(--orange) 100%);
      box-shadow: 0 4px 14px rgba(39,103,73,.32);
      flex-shrink: 0;
    }
    .brand-word .f { color: var(--ink); }
    .brand-word .ff { color: var(--orange); }

    .nav-links {
      display: none; align-items: center; gap: 6px;
    }
    .nav-links a {
      font-family: 'Sora', sans-serif; font-weight: 600; font-size: .85rem;
      color: var(--text); padding: 8px 14px; border-radius: 999px;
      transition: color .2s, background .2s;
    }
    .nav-links a:hover { color: var(--orange); background: var(--orange-soft); }

    .nav-actions {
      display: flex; gap: 6px; align-items: center;
    }

    /* Hide CTA buttons on mobile — show only icon controls */
    @media (max-width: 767px) {
      .nav-actions .btn { display: none !important; }
    }

    /* ── Search ── */
    .nav-search-wrap {
      display: flex; align-items: center; position: relative;
    }
    .search-icon-btn {
      width: 40px; height: 40px; border-radius: 50%;
      border: none; background: transparent; cursor: pointer;
      display: grid; place-items: center;
      color: var(--text); transition: background .2s, color .2s;
      flex-shrink: 0;
    }
    .search-icon-btn:hover { background: var(--orange-soft); color: var(--orange); }
    .search-input-wrap {
      position: absolute; right: 0; top: 50%; transform: translateY(-50%);
      width: 0; overflow: hidden;
      transition: width .35s cubic-bezier(.16,1,.3,1);
      border-radius: 999px;
    }
    .search-input-wrap.open { width: min(260px, 62vw); }
    .nav-search-input {
      width: 100%; height: 40px;
      padding: 0 40px 0 16px;
      border: 1.5px solid var(--line); border-radius: 999px;
      background: #fff; outline: none; font-size: .88rem;
      font-family: 'Sora', sans-serif; color: var(--ink);
      transition: border-color .2s, box-shadow .2s;
      white-space: nowrap;
    }
    .nav-search-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(39,103,73,.10); }
    .search-close-btn {
      position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
      width: 24px; height: 24px; border-radius: 50%; border: none;
      background: var(--line); cursor: pointer; font-size: .7rem;
      display: none; place-items: center; color: var(--muted);
      transition: background .2s;
    }
    .search-close-btn:hover { background: #ddd; }
    .search-input-wrap.open .search-close-btn { display: grid; }

    /* ── Hamburger ── */
    .hamburger {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 5px; background: none; border: none;
      cursor: pointer; transition: background .2s;
    }
    .hamburger:hover { background: var(--orange-soft); }
    .hamburger span {
      display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu drawer */
    .mobile-menu {
      display: none; position: fixed; inset: 74px 0 0;
      background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
      z-index: 99; flex-direction: column; padding: 28px 20px 40px;
      gap: 6px; overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.1rem;
      color: var(--text); padding: 14px 18px; border-radius: var(--radius-sm);
      transition: background .2s, color .2s;
    }
    .mobile-menu a:hover, .mobile-menu a:focus { background: var(--orange-soft); color: var(--orange); }
    .mobile-menu .divider { height: 1px; background: var(--line); margin: 8px 0; }
    .mobile-menu .mob-cta { margin-top: 12px; }

    /* ── HERO ── */
    .hero {
      padding: 72px 0 0;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; top: -80px; right: -120px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(39,103,73,.07) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }
    .hero-inner {
      display: grid; gap: 56px; align-items: end;
    }
    .hero-eyebrow { margin-bottom: 22px; }
    .hero h1 {
      font-size: clamp(2.5rem, 8vw, 4.4rem);
      font-weight: 800; letter-spacing: -.04em; line-height: 1.05;
      margin-bottom: 22px;
    }
    .hero h1 em { font-style: normal; color: var(--orange); }
    .hero-sub {
      font-size: 1.08rem; color: var(--text); line-height: 1.7;
      max-width: 480px; margin-bottom: 36px;
    }
    .hero-cta-row {
      display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 18px;
    }
    .hero-trust {
      display: flex; align-items: center; gap: 7px;
      font-size: .78rem; color: var(--muted); font-weight: 500;
    }
    .hero-trust svg { flex-shrink: 0; }

    /* Floating card in hero visual */
    .hero-visual {
      position: relative;
    }
    .hero-art {
      width: 100%; aspect-ratio: 1 / 1.05;
      max-width: 480px; margin: 0 auto;
      border-radius: 32px; overflow: hidden;
      background: linear-gradient(145deg, #c8e6d4 0%, #66b585 40%, var(--orange) 100%);
      display: flex; align-items: center; justify-content: center;
      box-shadow: var(--shadow-lg);
    }
    .hero-art-emoji { font-size: 9rem; filter: drop-shadow(0 12px 24px rgba(0,0,0,.15)); }
    .hero-float-card {
      position: absolute; bottom: -20px; left: -12px;
      background: white; border-radius: 18px; padding: 14px 18px;
      box-shadow: 0 8px 32px rgba(18,18,18,.13); min-width: 160px;
      animation: float 4s ease-in-out infinite;
    }
    .hero-float-card2 {
      position: absolute; top: 28px; right: -8px;
      background: var(--orange); border-radius: 18px; padding: 12px 16px;
      box-shadow: 0 8px 28px rgba(39,103,73,.40); color: white;
      animation: float 4s ease-in-out infinite .8s;
    }
    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }
    .float-label {
      font-size: .65rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; opacity: .6; margin-bottom: 2px;
    }
    .float-num {
      font-family: 'Sora', sans-serif; font-size: 1.45rem; font-weight: 800;
      line-height: 1; letter-spacing: -.03em;
    }
    .float-sub { font-size: .72rem; opacity: .7; margin-top: 2px; }

    /* ── STATS BAND ── */
    .stats-band {
      background: var(--orange); color: #fff;
      padding: 40px 0; margin-top: 60px;
      position: relative; overflow: hidden;
    }
    .stats-band::before {
      content: '';
      position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
      width: 800px; height: 200px;
      background: rgba(255,255,255,.06); border-radius: 50%;
    }
    .stats-inner {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0; text-align: center; position: relative;
    }
    .stat-item { padding: 12px 16px; }
    .stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.2); }
    .stat-icon { font-size: 1.8rem; margin-bottom: 6px; }
    .stat-num {
      font-family: 'Sora', sans-serif; font-size: clamp(1.6rem, 5vw, 2.4rem);
      font-weight: 800; display: block; letter-spacing: -.04em; line-height: 1;
    }
    .stat-label { font-size: .72rem; opacity: .82; font-weight: 600; margin-top: 4px; letter-spacing: .03em; }
    .stats-tagline {
      text-align: center; font-size: .75rem; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase; opacity: .7;
      margin-bottom: 20px;
    }

    /* ── HOW IT WORKS ── */
    .how-head { text-align: center; margin-bottom: 52px; }
    .how-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: 10px; }
    .how-head p { color: var(--muted); font-size: 1rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card {
      background: var(--card);
      border: 1px solid rgba(0,0,0,.05);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px 28px;
      display: flex; gap: 22px; align-items: flex-start;
      transition: transform .25s, box-shadow .25s;
    }
    .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .step-icon-wrap {
      width: 58px; height: 58px; flex-shrink: 0;
      border-radius: 18px; background: var(--orange-soft);
      display: grid; place-items: center; font-size: 1.7rem;
    }
    .step-num {
      font-family: 'Sora', sans-serif; font-size: .72rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 6px;
    }
    .step-title {
      font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 700;
      margin-bottom: 8px; letter-spacing: -.02em;
    }
    .step-desc { font-size: .9rem; color: var(--text); line-height: 1.65; }

    /* ── CREATORS ── */
    .creators-section { background: var(--orange-soft); }
    .creators-head { text-align: center; margin-bottom: 44px; }
    .creators-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: 10px; }
    .creators-head p { color: var(--muted); font-size: .98rem; }
    .creators-grid { grid-template-columns: 1fr; }
    .creator-card {
      background: var(--card);
      border: 1px solid rgba(0,0,0,.05);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px 20px;
      display: flex; align-items: center; gap: 16px;
      cursor: pointer; transition: transform .22s, box-shadow .22s;
    }
    .creator-card:hover { transform: translateY(-3px) translateX(3px); box-shadow: var(--shadow-lg); }
    .creator-ava {
      width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0;
      display: grid; place-items: center; font-size: 1.6rem;
      background: var(--orange-soft);
      box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(39,103,73,.15);
    }
    .creator-meta { flex: 1; min-width: 0; }
    .creator-name {
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .98rem;
      display: flex; align-items: center; gap: 6px; margin-bottom: 2px;
    }
    .verified {
      width: 16px; height: 16px; border-radius: 50%; background: var(--orange);
      display: inline-grid; place-items: center; font-size: 8px; color: #fff;
    }
    .creator-handle { font-size: .78rem; color: var(--muted); }
    .creator-bar { margin-top: 8px; }
    .mini-progress {
      height: 6px; background: #f0ebe5; border-radius: 999px; overflow: hidden; margin-top: 5px;
    }
    .mini-fill { height: 100%; background: var(--orange); border-radius: 999px; transition: width 1.5s cubic-bezier(.16,1,.3,1); }
    .creator-right { text-align: right; flex-shrink: 0; }
    .creator-meals {
      font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.15rem;
      color: var(--orange); letter-spacing: -.02em;
    }
    .creator-meals-label { font-size: .67rem; color: var(--muted); margin-top: 1px; }
    .creators-cta { text-align: center; margin-top: 36px; }

    /* ── SOCIAL PROOF ── */
    .proof-section { background: #fff; }
    .proof-inner { display: grid; gap: 40px; align-items: center; }
    .proof-text-col h2 {
      font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: 14px;
    }
    .proof-text-col p { color: var(--text); font-size: .98rem; line-height: 1.7; margin-bottom: 28px; }
    .avatars-stack { display: flex; margin-bottom: 12px; }
    .av {
      width: 40px; height: 40px; border-radius: 50%; border: 3px solid #fff;
      margin-left: -10px; display: grid; place-items: center;
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .7rem; color: #fff;
      flex-shrink: 0;
    }
    .av:first-child { margin-left: 0; }
    .av-count {
      background: var(--orange); color: #fff;
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .72rem;
      padding: 4px 11px; border-radius: 999px; margin-left: 10px;
      align-self: center;
    }
    .av-line { font-size: .82rem; color: var(--muted); }
    .av-line strong { color: var(--ink); }

    .testimonials-col { display: flex; flex-direction: column; gap: 16px; }
    .testimonial {
      background: var(--card); border: 1px solid var(--line);
      border-radius: var(--radius); padding: 24px 22px;
      box-shadow: var(--shadow); transition: transform .25s;
    }
    .testimonial:hover { transform: translateY(-3px); }
    .testimonial-q {
      font-size: .95rem; color: var(--text); line-height: 1.65;
      margin-bottom: 16px; font-style: italic;
    }
    .testimonial-q::before { content: '\201C'; font-size: 2rem; line-height: .5; color: var(--orange); opacity: .35; display: block; margin-bottom: 6px; }
    .testimonial-author { display: flex; align-items: center; gap: 10px; }
    .t-av {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      display: grid; place-items: center;
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .65rem; color: #fff;
    }
    .t-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: .85rem; }
    .t-role { font-size: .72rem; color: var(--muted); }

    /* ── HOW GIVING WORKS ── */
    .giving-section { background: var(--bg); }
    .giving-inner { display: grid; gap: 48px; align-items: center; }
    .giving-visual {
      background: var(--accent); border-radius: 32px;
      padding: 36px 28px; color: #fff; position: relative; overflow: hidden;
    }
    .giving-visual::after {
      content: ''; position: absolute; bottom: -60px; right: -60px;
      width: 240px; height: 240px; border-radius: 50%;
      background: rgba(255,255,255,.07);
    }
    .giving-visual h3 {
      font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: 8px;
    }
    .giving-visual p { font-size: .9rem; opacity: .85; margin-bottom: 28px; line-height: 1.6; }
    .giving-amounts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
    .ga-btn {
      background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.3);
      color: #fff; border-radius: 999px; padding: 10px 18px;
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .9rem;
      cursor: pointer; transition: background .2s, border-color .2s, color .2s;
    }
    .ga-btn:hover, .ga-btn.sel {
      background: #fff; color: var(--orange); border-color: #fff;
    }
    .donate-cta {
      background: #fff; color: var(--orange); border: none; border-radius: 999px;
      padding: 15px 28px; width: 100%; font-family: 'Sora', sans-serif;
      font-weight: 800; font-size: 1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      box-shadow: 0 6px 20px rgba(0,0,0,.18); transition: transform .2s, box-shadow .2s;
    }
    .donate-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.22); }
    .donate-trust-note {
      text-align: center; font-size: .72rem; opacity: .7; margin-top: 12px;
      display: flex; align-items: center; justify-content: center; gap: 5px;
    }
    .giving-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -.04em; margin-bottom: 16px; }
    .giving-text p  { color: var(--text); font-size: .98rem; line-height: 1.7; margin-bottom: 20px; }
    .impact-pills { display: flex; flex-wrap: wrap; gap: 10px; }
    .impact-pill {
      background: var(--orange-soft); border: 1px solid rgba(39,103,73,.16);
      border-radius: 999px; padding: 8px 16px;
      font-size: .82rem; font-weight: 600; color: var(--text);
      display: flex; align-items: center; gap: 6px;
    }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: var(--ink); color: #fff;
      border-radius: 32px; padding: 52px 36px;
      text-align: center; position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute;
      top: -80px; left: 50%; transform: translateX(-50%);
      width: 500px; height: 300px;
      background: radial-gradient(circle, rgba(39,103,73,.22) 0%, transparent 70%);
    }
    .cta-banner h2 {
      font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800;
      letter-spacing: -.04em; margin-bottom: 14px; position: relative;
    }
    .cta-banner h2 span { color: var(--orange); }
    .cta-banner p { font-size: 1rem; opacity: .7; margin-bottom: 32px; position: relative; }
    .cta-btn-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; position: relative; }

    /* ── FOOTER ── */
    footer {
      background: var(--ink); color: rgba(255,255,255,.85);
      padding: 64px 0 32px;
    }
    .footer-grid { display: grid; gap: 40px; margin-bottom: 52px; }
    .footer-brand-col .brand { color: #fff; margin-bottom: 14px; }
    .footer-brand-col p { font-size: .87rem; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 280px; }
    .footer-col h4 {
      font-family: 'Sora', sans-serif; font-size: .78rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      color: rgba(255,255,255,.4); margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: .87rem; color: rgba(255,255,255,.65); transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--orange); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex; flex-wrap: wrap; gap: 12px;
      justify-content: space-between; align-items: center;
    }
    .footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }

    /* ── DONATION MODAL ── */
    .modal-backdrop {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.48); backdrop-filter: blur(5px);
      z-index: 200; align-items: flex-end; justify-content: center;
    }
    .modal-backdrop.open { display: flex; }
    .modal-sheet {
      background: #fff; border-radius: 28px 28px 0 0;
      padding: 28px 22px 48px; width: 100%; max-width: 500px;
      animation: sheetUp .38s cubic-bezier(.16,1,.3,1);
    }
    @keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
    .modal-handle { width: 42px; height: 4px; background: #e0dbd5; border-radius: 2px; margin: 0 auto 24px; }
    .modal-close {
      position: absolute; top: 22px; right: 22px;
      width: 34px; height: 34px; border-radius: 50%; border: none;
      background: #f5f5f5; cursor: pointer; font-size: .9rem;
      display: grid; place-items: center; transition: background .2s;
    }
    .modal-close:hover { background: #ecddd1; }
    .modal-title { font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; }
    .modal-subtitle { font-size: .88rem; color: var(--muted); margin-bottom: 24px; }
    .modal-amounts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
    .m-amt {
      background: var(--orange-soft); border: 1.5px solid rgba(39,103,73,.16);
      border-radius: 999px; padding: 10px 20px;
      font-family: 'Sora', sans-serif; font-weight: 700; font-size: .92rem;
      color: var(--text); cursor: pointer; transition: all .18s;
    }
    .m-amt:hover, .m-amt.active { background: var(--orange); color: #fff; border-color: var(--orange); }
    .modal-pay-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
    .pay-btn {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      padding: 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
      background: #fff; font-family: 'Sora', sans-serif; font-weight: 700; font-size: .95rem;
      cursor: pointer; transition: border-color .2s, background .2s;
    }
    .pay-btn:hover { border-color: var(--orange); }
    .pay-btn.apple { background: #000; color: #fff; border-color: #000; }
    .pay-btn.apple:hover { background: #222; }
    .pay-divider { text-align: center; font-size: .78rem; color: var(--muted); margin: 2px 0; }
    .modal-note {
      text-align: center; font-size: .73rem; color: var(--muted);
      display: flex; align-items: center; justify-content: center; gap: 5px;
    }

    /* ── TOAST ── */
    .toast {
      position: fixed; bottom: 28px; left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--ink); color: #fff;
      padding: 14px 22px; border-radius: 999px;
      font-family: 'Sora', sans-serif; font-weight: 600; font-size: .88rem;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 8px 32px rgba(0,0,0,.22);
      z-index: 999; transition: transform .4s cubic-bezier(.16,1,.3,1);
      white-space: nowrap; pointer-events: none;
    }
    .toast.show { transform: translateX(-50%) translateY(0); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (min-width: 600px) {
      .steps-grid    { grid-template-columns: 1fr 1fr; }
      .creators-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 768px) {
      .nav-links  { display: flex; }
      .hamburger  { display: none; }
      .search-input-wrap.open { width: 240px; }
      .hero-inner { grid-template-columns: 1fr 1fr; padding-bottom: 60px; }
      .proof-inner { grid-template-columns: 1fr 1fr; }
      .giving-inner { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
      .section    { padding: 100px 0; }
      .section--tight { padding: 72px 0; }
    }

    @media (min-width: 960px) {
      .steps-grid    { grid-template-columns: repeat(3, 1fr); }
      .creators-grid { grid-template-columns: repeat(2, 1fr); }
    }

/* ── CREATOR PAGE ───────────────────────────────────────── */

.creator-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.creator-hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
}
.creator-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.62) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 20px; color: #fff;
}
.creator-hero-overlay h1 {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 800; letter-spacing: -.04em; margin-bottom: 8px;
}
.creator-hero-overlay p { font-size: .95rem; opacity: .9; margin-bottom: 20px; }
.creator-handle-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  padding: 5px 13px; font-size: .8rem; font-weight: 700;
  margin-bottom: 14px; width: fit-content;
}
.badge-verified {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); display: inline-grid; place-items: center;
  font-size: 9px;
}

.impact-counter-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; margin: -36px 16px 0;
  position: relative; z-index: 10;
  box-shadow: 0 10px 40px rgba(0,0,0,.13);
}
.impact-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.impact-number {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.impact-number span:first-child {
  font-family: 'Sora', sans-serif; font-size: clamp(2.4rem, 8vw, 3.4rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1;
}
.counting-tag {
  font-size: .85rem; font-weight: 600; color: var(--orange);
}
.progress-section { margin-top: 18px; }
.progress-meta {
  display: flex; justify-content: space-between;
  font-size: .78rem; color: var(--muted); margin-bottom: 7px;
}
.progress-meta strong { color: var(--ink); }
.progress-bar {
  height: 10px; background: #f0ebe5; border-radius: 999px;
  overflow: hidden; margin-bottom: 7px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, #5aab7c 100%);
  border-radius: 999px;
  transition: width 1.5s cubic-bezier(.16,1,.3,1);
}
.supporters-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px; flex-wrap: wrap;
}
.supporters-avatars { display: flex; }
.supporters-count { font-size: .8rem; color: var(--muted); }
.supporters-count strong { color: var(--ink); }

.creator-content { padding: 28px 16px 0; }
.section-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}

.video-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--ink); position: relative;
  height: 210px; cursor: pointer; box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.video-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #8B4513, var(--orange));
  opacity: .8;
}
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 40%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
}
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -58%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  transition: transform .2s;
}
.video-card:hover .play-btn { transform: translate(-50%, -58%) scale(1.1); }
.play-icon {
  width: 0; height: 0; border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--orange);
  margin-left: 3px;
}
.video-caption { color: #fff; font-size: .88rem; font-weight: 600; }
.video-duration { font-size: .72rem; opacity: .7; margin-top: 2px; color: #fff; }

.donate-widget {
  background: var(--orange); border-radius: var(--radius);
  padding: 28px 22px; color: #fff; margin-bottom: 8px;
}
.donate-widget-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; opacity: .85; margin-bottom: 4px;
}
.donate-widget-heading {
  font-family: 'Sora', sans-serif; font-size: 1.35rem;
  font-weight: 800; margin-bottom: 20px;
}
.donate-trust-note {
  text-align: center; font-size: .72rem; opacity: .75;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

.leaderboard-section { padding: 28px 16px 48px; }
.leaderboard-list { display: flex; flex-direction: column; gap: 10px; }
.leaderboard-item {
  background: #fff; border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius-sm); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow); cursor: pointer; text-decoration: none;
  color: var(--ink); transition: transform .2s, box-shadow .2s;
}
.leaderboard-item:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.leaderboard-rank {
  font-family: 'Sora', sans-serif; font-weight: 900;
  font-size: 1.1rem; width: 28px; text-align: center; color: var(--muted);
}
.leaderboard-creator { flex: 1; min-width: 0; }
.leaderboard-name {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: .95rem; display: flex; align-items: center; gap: 6px;
}
.leaderboard-sub { font-size: .75rem; color: var(--muted); }

@media (min-width: 768px) {
  .creator-hero { height: 480px; }
  .impact-counter-card { margin: -44px 40px 0; }
  .creator-content { padding: 36px 40px 0; }
  .leaderboard-section { padding: 36px 40px 60px; }
}
@media (min-width: 1024px) {
  .impact-counter-card { margin: -44px 80px 0; }
  .creator-content { padding: 44px 80px 0; }
  .leaderboard-section { padding: 44px 80px 60px; }
}
