
    :root {
      --green-dark:   #1b5e20;
      --green-mid:    #2e7d32;
      --green-main:   #50C878;
      --green-light:  #ECFFDC;
      --green-soft:   #e8f5e9;
      --green-muted:  #4a7c59;
      --text-dark:    #0d2b0f;
      --text-mid:     #2e4730;
      --text-soft:    #607d67;
      --white:        #ffffff;
      --card-border:  rgba(80,200,120,0.18);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--green-light);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ── CURSOR DOT ── */
    .cursor-dot {
      width: 10px; height: 10px;
      background: var(--green-main);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
      mix-blend-mode: multiply;
    }

    /* ── HEADER ── */
    header {
      display: flex; justify-content: space-between; align-items: center;
      padding: 14px 48px;
      background: rgba(236,255,220,0.8);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      position: sticky; top: 0; z-index: 100;
      border-bottom: 1px solid rgba(80,200,120,0.12);
    }
    .logo-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: linear-gradient(135deg, var(--green-main), var(--green-dark));
      display: flex; align-items: center; justify-content: center; font-size: 20px;
    }
    .brand-name {
      font-family: 'DM Serif Display', serif;
      font-size: 22px; color: var(--green-dark); letter-spacing: -0.2px;
    }
    nav { display: flex; align-items: center; gap: 32px; }
    nav a {
      text-decoration: none; font-size: 14px; font-weight: 500;
      color: var(--green-muted); transition: color 0.2s;
    }
    nav a:hover, nav a.active { color: var(--green-dark); }
    .nav-cta {
      padding: 8px 20px; background: var(--green-main); color: white !important;
      border-radius: 20px; font-weight: 600 !important;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    }
    .nav-cta:hover { background: #3eb364 !important; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(80,200,120,0.35); }

    /* ── HERO ── */
    .hero {
      min-height: 88vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 80px 48px 60px;
      position: relative; overflow: hidden;
    }

    /* floating orbs */
    .orb {
      position: absolute; border-radius: 50%;
      background: radial-gradient(circle, rgba(80,200,120,0.13), transparent 70%);
      pointer-events: none; animation: float 8s ease-in-out infinite;
    }
    .orb1 { width: 420px; height: 420px; top: -80px; left: -100px; animation-delay: 0s; }
    .orb2 { width: 320px; height: 320px; bottom: -60px; right: -60px; animation-delay: 3s; }
    .orb3 { width: 200px; height: 200px; top: 40%; right: 10%; animation-delay: 1.5s; }
    @keyframes float {
      0%,100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-24px) scale(1.04); }
    }

    /* wavy SVG divider bg */
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; border: 1px solid var(--card-border);
      padding: 6px 16px; border-radius: 20px;
      font-size: 13px; font-weight: 500; color: var(--green-muted);
      margin-bottom: 28px;
      animation: fadeUp 0.7s ease both;
    }
    .hero-tag span { width: 8px; height: 8px; border-radius: 50%; background: var(--green-main); display: inline-block; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(80,200,120,0.5)} 50%{box-shadow:0 0 0 6px rgba(80,200,120,0)} }

    .hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(42px, 6vw, 76px);
      line-height: 1.08; color: var(--text-dark);
      max-width: 860px; letter-spacing: -1px;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero h1 em { color: var(--green-mid); font-style: italic; }

    .hero-sub {
      font-size: 18px; color: var(--text-soft); line-height: 1.7;
      max-width: 580px; margin-top: 22px;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-btns {
      display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; justify-content: center;
      animation: fadeUp 0.7s 0.3s ease both;
    }
    .btn-primary {
      padding: 14px 32px; background: var(--green-dark); color: white;
      border-radius: 14px; font-size: 15px; font-weight: 600;
      text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
      border: none; cursor: pointer;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(27,94,32,0.3); }
    .btn-ghost {
      padding: 14px 32px; background: white; color: var(--green-dark);
      border: 1.5px solid var(--card-border); border-radius: 14px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .btn-ghost:hover { border-color: var(--green-main); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(80,200,120,0.15); }

    /* stat strip */
    .stat-strip {
      display: flex; gap: 0; margin-top: 64px;
      background: white; border-radius: 20px;
      border: 1px solid var(--card-border);
      overflow: hidden; width: 100%; max-width: 700px;
      animation: fadeUp 0.7s 0.4s ease both;
    }
    .stat-item {
      flex: 1; padding: 22px 20px; text-align: center;
      border-right: 1px solid var(--card-border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 32px; color: var(--green-dark);
    }
    .stat-lbl { font-size: 12px; color: var(--text-soft); margin-top: 4px; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── DIVIDER ── */
    .wave-divider { line-height: 0; margin-top: -2px; }
    .wave-divider svg { display: block; width: 100%; }

    /* ── SECTION SHARED ── */
    section { padding: 90px 48px; }
    .section-eyebrow {
      display: inline-block; font-size: 12px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 1.5px;
      color: var(--green-main); margin-bottom: 14px;
    }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(30px, 4vw, 48px); color: var(--text-dark);
      line-height: 1.15; letter-spacing: -0.5px; max-width: 560px;
    }
    .section-title em { color: var(--green-mid); font-style: italic; }
    .section-body {
      font-size: 16px; color: var(--text-soft); line-height: 1.8;
      max-width: 520px; margin-top: 16px;
    }

    /* ── MISSION ── */
    .mission-wrap {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center; max-width: 1100px; margin: 0 auto;
    }
    .mission-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .mission-circle {
      width: 340px; height: 340px; border-radius: 50%;
      border: 2px solid rgba(80,200,120,0.2);
      display: flex; align-items: center; justify-content: center;
      position: relative; animation: spin-slow 20s linear infinite;
    }
    @keyframes spin-slow { to { transform: rotate(360deg); } }
    .mission-inner {
      width: 240px; height: 240px; border-radius: 50%;
      background: white; border: 1px solid var(--card-border);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      animation: spin-slow 20s linear infinite reverse;
      box-shadow: 0 20px 60px rgba(80,200,120,0.12);
    }
    .mission-inner .big-icon { font-size: 52px; }
    .mission-inner p {
      font-family: 'DM Serif Display', serif;
      font-size: 15px; color: var(--green-dark); margin-top: 8px; text-align: center;
      padding: 0 20px;
    }
    /* orbit dots */
    .orbit-dot {
      position: absolute; width: 40px; height: 40px;
      border-radius: 50%; background: white;
      border: 1px solid var(--card-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    }
    .od1 { top: -10px; left: 50%; transform: translateX(-50%); }
    .od2 { right: -10px; top: 50%; transform: translateY(-50%); }
    .od3 { bottom: -10px; left: 50%; transform: translateX(-50%); }
    .od4 { left: -10px; top: 50%; transform: translateY(-50%); }

    /* ── FEATURES ── */
    .features-section { background: white; }
    .features-wrap { max-width: 1100px; margin: 0 auto; }
    .features-header { text-align: center; margin-bottom: 60px; }
    .features-header .section-title, .features-header .section-body { max-width: 100%; }

    .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

    .feat-card {
      border-radius: 24px; padding: 36px 28px;
      border: 1px solid var(--card-border);
      position: relative; overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
      cursor: default;
    }
    .feat-card:hover { transform: translateY(-10px); box-shadow: 0 28px 56px rgba(80,200,120,0.14); }
    .feat-card.f1 { background: var(--green-soft); }
    .feat-card.f2 { background: #e3f2fd; }
    .feat-card.f3 { background: #fce4ec; }

    .feat-card::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,255,255,0.35);
      transform: skewX(-18deg) translateX(-120%);
      pointer-events: none;
      transition: transform 0.55s ease;
    }
    .feat-card:hover::after { transform: skewX(-18deg) translateX(220%); }

    .feat-icon-wrap {
      width: 64px; height: 64px; border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; margin-bottom: 22px;
    }
    .f1 .feat-icon-wrap { background: rgba(80,200,120,0.25); }
    .f2 .feat-icon-wrap { background: rgba(100,181,246,0.3); }
    .f3 .feat-icon-wrap { background: rgba(244,143,177,0.3); }

    .feat-title {
      font-family: 'DM Serif Display', serif;
      font-size: 22px; color: var(--text-dark); margin-bottom: 12px;
    }
    .feat-desc { font-size: 14px; color: var(--text-soft); line-height: 1.75; }

    .feat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
    .pill {
      font-size: 11px; font-weight: 600; padding: 4px 12px;
      border-radius: 20px; letter-spacing: 0.3px;
    }
    .f1 .pill { background: rgba(80,200,120,0.2); color: var(--green-dark); }
    .f2 .pill { background: rgba(100,181,246,0.25); color: #1565c0; }
    .f3 .pill { background: rgba(244,143,177,0.25); color: #880e4f; }

    /* ── HOW IT WORKS ── */
    .how-wrap { max-width: 1100px; margin: 0 auto; }
    .how-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; position: relative; }
    .how-grid::before {
      content: '';
      position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
      background: linear-gradient(to right, var(--green-main), rgba(80,200,120,0.1));
      border-radius: 2px; z-index: 0;
    }
    .how-step {
      display: flex; flex-direction: column; align-items: center; text-align: center;
      position: relative; z-index: 1;
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .how-step.visible { opacity: 1; transform: translateY(0); }
    .step-num {
      width: 72px; height: 72px; border-radius: 50%;
      background: white; border: 2px solid var(--green-main);
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; margin-bottom: 18px;
      box-shadow: 0 8px 24px rgba(80,200,120,0.15);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .how-step:hover .step-num {
      transform: scale(1.12);
      box-shadow: 0 14px 32px rgba(80,200,120,0.25);
    }
    .step-title { font-weight: 600; font-size: 15px; color: var(--text-dark); margin-bottom: 8px; }
    .step-desc  { font-size: 13px; color: var(--text-soft); line-height: 1.65; }

    /* ── TEAM ── */
    .team-section { background: var(--green-dark); padding: 90px 48px; }
    .team-wrap { max-width: 1100px; margin: 0 auto; }
    .team-header { text-align: center; margin-bottom: 56px; }
    .team-header .section-eyebrow { color: var(--green-main); }
    .team-header .section-title { color: white; max-width: 100%; }
    .team-header .section-body  { color: rgba(255,255,255,0.6); max-width: 500px; margin: 16px auto 0; }

    .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .team-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 22px; padding: 32px 24px;
      text-align: center;
      transition: transform 0.3s, background 0.3s;
    }
    .team-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.12); }
    .team-avatar {
      width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; font-weight: 700; color: white;
    }
    .team-name { font-family: 'DM Serif Display', serif; font-size: 19px; color: white; margin-bottom: 4px; }
    .team-role { font-size: 12px; color: var(--green-main); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }
    .team-bio  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

    /* ── VALUES ── */
    .values-wrap { max-width: 1100px; margin: 0 auto; }
    .values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 52px; }
    .val-card {
      display: flex; gap: 20px; align-items: flex-start;
      background: white; border-radius: 18px;
      border: 1px solid var(--card-border);
      padding: 26px 24px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .val-card:hover { transform: translateX(6px); box-shadow: 0 10px 28px rgba(80,200,120,0.1); }
    .val-icon {
      width: 48px; height: 48px; border-radius: 14px;
      background: var(--green-soft); display: flex; align-items: center;
      justify-content: center; font-size: 22px; flex-shrink: 0;
    }
    .val-title { font-weight: 600; font-size: 16px; color: var(--text-dark); margin-bottom: 6px; }
    .val-desc  { font-size: 13px; color: var(--text-soft); line-height: 1.7; }

    /* ── CTA BANNER ── */
    .cta-section {
      background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
      padding: 100px 48px; text-align: center; position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; top: -120px; left: -80px;
      width: 500px; height: 500px; border-radius: 50%;
      background: rgba(80,200,120,0.08); pointer-events: none;
    }
    .cta-section::after {
      content: '';
      position: absolute; bottom: -100px; right: -60px;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(255,255,255,0.04); pointer-events: none;
    }
    .cta-section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(30px, 4.5vw, 54px); color: white;
      line-height: 1.1; letter-spacing: -0.5px; max-width: 680px; margin: 0 auto;
    }
    .cta-section p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 480px; margin: 18px auto 40px; line-height: 1.7; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-white {
      padding: 14px 32px; background: white; color: var(--green-dark);
      border-radius: 14px; font-size: 15px; font-weight: 600;
      text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
    .btn-outline-white {
      padding: 14px 32px; background: transparent; color: white;
      border: 1.5px solid rgba(255,255,255,0.4); border-radius: 14px;
      font-size: 15px; font-weight: 600; text-decoration: none;
      transition: border-color 0.2s, transform 0.2s;
    }
    .btn-outline-white:hover { border-color: white; transform: translateY(-3px); }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark); color: rgba(255,255,255,0.45);
      padding: 40px 48px; text-align: center;
      font-size: 13px; line-height: 1.7;
    }
    footer strong { color: var(--green-main); }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .mission-wrap { grid-template-columns: 1fr; gap: 40px; }
      .features-grid { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: repeat(2,1fr); }
      .how-grid::before { display: none; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      section { padding: 60px 24px; }
      header { padding: 14px 24px; }
      nav { gap: 18px; }
    }
    @media (max-width: 600px) {
      .team-grid { grid-template-columns: 1fr; }
      .how-grid  { grid-template-columns: 1fr; }
      .stat-strip { flex-direction: column; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--card-border); }
      .stat-item:last-child { border-bottom: none; }
      nav a:not(.nav-cta) { display: none; }
    }
  