:root{
      --green:#07532f;
      --green-2:#0f7044;
      --lime:#79ad39;
      --gold:#f1bd28;
      --orange:#ef9a28;
      --text:#173326;
      --muted:#5f756a;
      --cream:#f7fbf5;
      --white:#ffffff;
      --shadow:0 20px 55px rgba(7,83,47,.12);
      --radius:24px;
    }

    *{box-sizing:border-box}

    html{scroll-behavior:smooth}

    body{
      margin:0;
      min-height:100vh;
      font-family:Arial, Helvetica, sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 10% 10%, rgba(121,173,57,.13), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(241,189,40,.12), transparent 25%),
        linear-gradient(180deg,#ffffff 0%,var(--cream) 100%);
    }

    a{text-decoration:none;color:inherit}

    .page{
      width:100%;
      max-width:960px;
      margin:0 auto;
      padding:28px 18px 44px;
    }

    .top{
      display:flex;
      justify-content:center;
      align-items:center;
      padding:4px 0 16px;
    }

    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--green);
      font-size:13px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
    }

    .brand-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--green),var(--gold));
      box-shadow:0 0 0 5px rgba(121,173,57,.10);
    }

    .hero{
      text-align:center;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(7,83,47,.08);
      border-radius:32px;
      box-shadow:var(--shadow);
      padding:34px 22px 30px;
      backdrop-filter:blur(6px);
    }

    .logo-wrap{
      display:flex;
      justify-content:center;
      margin-bottom:18px;
    }

    .logo{
      display:block;
      width:min(100%,430px);
      height:auto;
      border-radius:12px;
    }

    h1{
      margin:8px 0 10px;
      color:var(--green);
      font-size:clamp(29px,5vw,48px);
      line-height:1.05;
      letter-spacing:-.035em;
    }

    .eyebrow{
      margin:0 auto 12px;
      color:var(--green-2);
      font-size:clamp(18px,3vw,24px);
      font-weight:800;
    }

    .intro{
      max-width:700px;
      margin:0 auto;
      color:var(--muted);
      font-size:18px;
      line-height:1.6;
    }

    .actions{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }

    .btn{
      min-width:235px;
      border:0;
      border-radius:999px;
      padding:15px 22px;
      font-size:16px;
      font-weight:800;
      cursor:pointer;
      transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
    }

    .btn:hover{
      transform:translateY(-2px);
      filter:saturate(1.05);
    }

    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--green),var(--green-2));
      box-shadow:0 12px 24px rgba(7,83,47,.20);
    }

    .btn-secondary{
      color:var(--green);
      background:#fff;
      border:1px solid rgba(7,83,47,.18);
    }

    .section{
      margin-top:24px;
      background:#fff;
      border:1px solid rgba(7,83,47,.08);
      border-radius:var(--radius);
      padding:28px 22px;
      box-shadow:0 10px 35px rgba(7,83,47,.07);
    }

    .section h2{
      margin:0 0 18px;
      color:var(--green);
      text-align:center;
      font-size:28px;
    }

    .benefits{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      max-width:760px;
      margin:0 auto;
    }

    .benefit{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:14px 15px;
      border-radius:16px;
      background:linear-gradient(180deg,#fbfffa,#f4faf1);
      border:1px solid rgba(121,173,57,.15);
      line-height:1.45;
      font-size:16px;
    }

    .check{
      flex:0 0 auto;
      width:23px;
      height:23px;
      display:grid;
      place-items:center;
      border-radius:50%;
      color:#fff;
      font-size:13px;
      font-weight:900;
      background:linear-gradient(135deg,var(--green-2),var(--lime));
    }

    .opportunity{
      text-align:center;
    }

    .opportunity p{
      max-width:700px;
      margin:0 auto 20px;
      color:var(--muted);
      font-size:19px;
      line-height:1.55;
    }

    .highlight{
      display:inline-block;
      margin:6px 0 2px;
      padding:7px 13px;
      border-radius:999px;
      background:linear-gradient(135deg,rgba(121,173,57,.16),rgba(241,189,40,.16));
      color:var(--green);
      font-weight:800;
    }

    footer{
      text-align:center;
      color:#82928a;
      font-size:12px;
      padding:20px 5px 0;
    }

    @media (max-width:700px){
      .page{padding:18px 12px 28px}
      .hero{padding:24px 16px 22px;border-radius:24px}
      .section{padding:23px 15px;border-radius:20px}
      .benefits{grid-template-columns:1fr}
      .btn{width:100%;min-width:0}
      .intro{font-size:16px}
      .opportunity p{font-size:17px}
    }
