
    @font-face {
      font-family: 'Satoshi';
      src: url('./fonts/Satoshi-Regular.otf') format('opentype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Satoshi';
      src: url('./fonts/Satoshi-Medium.otf') format('opentype');
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Satoshi';
      src: url('./fonts/Satoshi-Bold.otf') format('opentype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --blue: #a5b9ff;
      --green: #1b4440;
      --soft-green: #17433f;
      --soft-yellow: #f9ffb1;
      --bg: #F2F2F9;
      --muted: #5f6f73;
    }

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

    body {
      font-family: 'Satoshi', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      height: 100vh;
      overflow: hidden;
    }

    /* ---------- Background SVG ---------- */
    .bg-gradient {
      position: fixed;
      inset: 0;
      background: url("Gradient effect_svg.svg") no-repeat left bottom;
      background-size: 85%;
      z-index: 0;
      pointer-events: none;
    }
    #bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

    /* ---------- Page ---------- */
    .page {
      position: relative;
      height: 100vh;
      padding: 32px 56px;
      display: flex;
      flex-direction: column;
      z-index: 1;
    }

    /* ---------- Header ---------- */
    header img {
      height: 11px;
    }

    /* ---------- Hero ---------- */
    .hero {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-top: 60px;

    }

    .hero-content {
      max-width: 1000px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 35px;
      /* 🔹 SAME gap between all 3 */
    }

    /* ---------- Heading ---------- */
    h1 {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.15;
      white-space: nowrap;
      padding:2px
    }

    .gradient-text {
      background: linear-gradient(90deg,
          var(--blue) -10%,
          var(--green) 60%,
          var(--soft-yellow) 130%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* ---------- Description ---------- */
    .hero p {
      max-width: 450px;
      font-size: 14px;
      line-height: 1.6;
      color: #014945;
    }

    /* ---------- Button ---------- */
    .cta {
      width: 200px;
      height: 43px;
      border-radius: 10px;
      background: var(--green);
      color: #F2F2F9;
      border: none;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(192, 215, 213, 0.25);
    }

    /* ---------- Footer ---------- */
    footer.footer {
      margin-top: 24px;
      padding: 20px 28px;
      border-radius: 14px;
      height: 150px;
      box-shadow: inset 0 0 0 0.5px rgba(56, 56, 56, 0.20);
        /* box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.04); */

      /* Soft blended gradient */
      background: linear-gradient(90deg,
          rgba(165, 185, 255, 0.25),
          rgba(242, 242, 249, 0.6),
          rgba(222, 222, 215, 0.15));


      /* Blend effect */
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      align-items: stretch;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;

      color: var(--muted);
      font-size: 12px;
    }

    /* Left text */
    .footer-left {
      max-width: 300px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      text-align: left;
    }

    .footer-left span {
      color: #014945;
      font-size: 24px;
      font-weight: 700;
    }

    /* Center text */
    .footer-center {
      text-align: center;
      font-size: 12px;
      padding-top: 100px;
      color: #014945;
    }

    /* Right logo */
    .footer-right {
      display: flex;
      justify-content: flex-end;
    }

    .footer-right img {
      height: 20px;
      opacity: 0.9;
    }



    /* ---------- Responsive ---------- */
    @media (max-width: 900px) {
      h1 {
        white-space: normal;
        font-size: 40px;
      }
    }


@media (max-width: 768px) {
  .bg-gradient {
    background-size: 130%;           /* 🔑 bigger gradient */
    background-position: 5% bottom; /* 🔑 move inward */
    opacity: 0.9;                    /* optional polish */
  }
}


@media (max-width: 600px) {
  .bg-gradient {
    background-size: 170%;
    background-position: 5% bottom;
    opacity: 0.85;
  }
}



    @media (max-width: 750px) {
      .page {
        padding: 24px;
      }

      h1 {
        font-size: 32px;
      }

  footer.footer {
    grid-template-columns: 1fr;
    gap: 12px;
    height: auto;          
    padding: 16px 20px;
  }

  .footer-left {
     order: 1;
    max-width: 100%;
    text-align: center;
  }

  .footer-left span {
    font-size: 18px;       
    line-height: 1.3;
  }

  .footer-center {
    order: 3;
    padding-top: 0;   
    text-align: center;     
    font-size: 11px;
    opacity: 0.8;
  }

  .footer-right {
    order: 2;
    justify-content: center;
  }
    .footer-right img {
      height: 18px;
      opacity: 0.9;
    }


    }