/* ---- Reset / Base Styles ---- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: sans-serif;
      background: linear-gradient(180deg, #1A012E 0%, #090013 100%);
      color: #fff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* ---- Header & Nav ---- */
    header {
      padding: 1rem 2rem;
      background: linear-gradient(135deg, #1e3c72, #2a5298); /* Gradient background */
    }

    .logo {
      height: 40px;
    }

    /* ---- Hero Section ---- */
    .hero {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: calc(100vh - 60px);
      overflow: hidden;
    }

    .background-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    @media (prefers-reduced-motion: reduce) {
        canvas {
            display: none;
        }

        .background-overlay {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
        }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 2rem;
    }

    .hero-title {
      font-size: 4rem;
      margin-bottom: 1rem;
      color: #C39EFF;
    }

    .hero-subtitle {
      max-width: 600px;
      font-size: 1.25rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    /* ---- Waitlist Form ---- */
    .waitlist-form {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .waitlist-form input[type="email"] {
      padding: 0.75rem 1rem;
      border: none;
      border-radius: 4px;
      min-width: 250px;
      font-size: 1rem;
      outline: none;
    }

    .submit-btn {
      padding: 0.75rem 1.25rem;
      background-color: #a970ff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 1rem;
      color: #fff;
      transition: background-color 0.2s ease-in-out;
    }

    .submit-btn:hover {
      background-color: #9063e6;
    }

    /* ---- Already Onboard ---- */
    .already-onboard {
      margin-top: 1rem;
      font-size: 1rem;
    }

    /* ---- Footer ---- */
    footer {
      text-align: center;
      padding: 2rem 1rem;
      background-color: transparent;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 0.5rem;
    }

    .social-icons img {
      width: 24px;
      height: 24px;
      filter: brightness(0) invert(1);
    }

    .footer-text {
      font-size: 0.875rem;
      opacity: 0.8;
    }

    footer {
      background: transparent;
    }

    /* Responsive */
    @media (max-width: 600px) {
      .hero-title {
        font-size: 2.5rem;
      }
      .waitlist-form {
        flex-direction: column;
      }
      .waitlist-form input[type="email"] {
        min-width: 100%;
      }
      .submit-btn {
        width: 100%;
      }
    }
