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

      body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Oxygen, Ubuntu, Cantarell, sans-serif;
        background: #0e100f;
        color: #fff;
        overflow-x: hidden;
      }

      /* Shape Overlays Loader */
      .shape-overlays {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
        pointer-events: none;
      }

      .container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 2rem;
        opacity: 0;
      }

      .bg-gradient {
        position: fixed;
        width: 250vw;
        height: 250vw;
        top: -50%;
        left: -50%;
        background: radial-gradient(
            circle at 50% 50%,
            rgba(139, 92, 246, 0.15) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 20%,
            rgba(236, 72, 153, 0.15) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 20% 80%,
            rgba(59, 130, 246, 0.15) 0%,
            transparent 50%
          );
        z-index: 0;
      }

      .shapes {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        pointer-events: none;
      }

      .shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.3;
      }

      .shape1 {
        width: 400px;
        height: 400px;
        background: linear-gradient(45deg, #8b5cf6, #ec4899);
        top: 10%;
        left: 10%;
      }

      .shape2 {
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        bottom: 15%;
        right: 15%;
      }

      .shape3 {
        width: 250px;
        height: 250px;
        background: linear-gradient(225deg, #ec4899, #f97316);
        top: 50%;
        right: 20%;
      }

      .content {
        position: relative;
        z-index: 10;
        text-align: center;
        max-width: 1200px;
      }

      .logo {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        opacity: 0;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        background: linear-gradient(90deg, #8b5cf6, #ec4899, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      h1 {
        font-size: clamp(3rem, 10vw, 7rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 2rem;
        letter-spacing: -0.02em;
      }

      .title-line {
        display: block;
        overflow: hidden;
      }

      .title-word {
        opacity: 0;
        margin-top: -90px;
      }

      .subtitle {
        font-size: clamp(1.2rem, 3vw, 2rem);
        margin-bottom: 3rem;
        opacity: 0;
        color: #a1a1aa;
        font-weight: 300;
        letter-spacing: 0.02em;
      }

      .cta {
        margin-top: 3rem;
        opacity: 0;
      }

      .email-form {
        display: flex;
        gap: 1rem;
        max-width: 600px;
        margin: 0 auto;
        flex-wrap: wrap;
        justify-content: center;
      }

      input[type="email"] {
        flex: 1;
        min-width: 250px;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        color: #fff;
        font-size: 1rem;
        outline: none;
        transition: all 0.3s ease;
      }

      input[type="email"]:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: #8b5cf6;
      }

      input[type="email"]::placeholder {
        color: #71717a;
      }

      button {
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, #8b5cf6, #ec4899);
        border: none;
        border-radius: 50px;
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
      }

      .features {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 3rem;
        opacity: 0;
      }

      .feature {
        text-align: center;
        font-size: 0.9rem;
        color: #71717a;
      }

      .feature strong {
        display: block;
        color: #fff;
        margin-bottom: 0.3rem;
        font-size: 1.1rem;
      }

      @media (max-width: 768px) {
        .features {
          flex-direction: column;
          gap: 1rem;
        }

        .graphic-item {
          width: 100px;
          height: 100px;
        }
      }