@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

        :root {
            --primary-color: #FF3184;
            --secondary-color: #8B5CF6;
            --silver: #FAFAFD;
            --graphite:#3F587C;
            --softgraphite:#899EBC;
            --darkbg: #24004B;
            --round-corner: 40px;
            --display-txt: clamp(1.1rem, 2vw, 1.5rem);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --spacing-xl: 120px;
            --spacing-l: 60px;
            --spacing-m: 40px;
            --spacing-s: 20px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            font-optical-sizing: auto;
            background: white;
            min-height: 100vh;
            padding: var(--spacing-l);
        }

        .container {
            display: block;
            margin:0 auto;
            padding: 0;
            width: 100%;
            max-width: 1920px;

        }


        .mainbtn {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 15px 50px;
            color: #fff;
            text-decoration: none;
            position: relative;
            z-index: 99;
            height: 64px;
            font-size: 1.2rem;
            font-weight: 300;
            background: linear-gradient(180deg, rgba(255, 49, 132, 0.8) 0%, rgba(253, 0, 68, 0.8) 100%);
            box-shadow: 0px 14px 16px rgba(255, 249, 251, 0.2), 0px 4px 16px rgba(255, 0, 77, 0.6), 0px 22px 64px rgba(255, 0, 77, 0.2), 0px 34px 128px rgba(255, 0, 77, 0.3), inset 0px 2px 2px rgba(255, 255, 255, 0.8);
            border-radius: 32px;
            border: 1px solid #E70D47;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .waitlistbtn {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 15px 50px;
            color: #fff;
            text-decoration: none;
            position: relative;
            z-index: 99;
            height: 64px;
            font-size: 1.2rem;
            font-weight: 300;
            background: linear-gradient(180deg, rgba(255, 49, 132, 0.8) 0%, rgba(253, 0, 68, 0.8) 100%);
            box-shadow: 0px 14px 16px rgba(255, 249, 251, 0.2), 0px 4px 16px rgba(255, 0, 77, 0.6), 0px 22px 64px rgba(255, 0, 77, 0.2), 0px 34px 128px rgba(255, 0, 77, 0.3), inset 0px 2px 2px rgba(255, 255, 255, 0.8);
            border-radius: 32px;
            border: 1px solid #E70D47;
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 1;
        }

        .waitlistbtn:disabled {
            opacity: 0.4;
            
        }

        .mainbtn:hover, .waitlistbtn:hover {
            transform: translateY(-2px);
            box-shadow: 0px 14px 16px rgba(255, 249, 251, 0.3), 0px 4px 20px rgba(255, 0, 77, 0.4), 0px 22px 64px rgba(255, 0, 77, 0.4), 0px 34px 128px rgba(255, 0, 77, 0.4), inset 0px 2px 2px rgba(255, 255, 255, 0.8), 0px 0px 80px rgba(255, 0, 77, 0.2);
            filter: brightness(1.2);
        }

        .hero {
            width: 100%;
            height: 100vh;
            background: var(--silver);
            border-radius: var(--round-corner);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            align-items: center;
            margin-bottom: var(--spacing-xl);
            padding: var(--spacing-l);
            position: relative;
            overflow: hidden;
        }


        .herolead {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(100%, 15.4vw, 14rem);
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    position: relative;
  }

  .word {
    display: inline-block;
    background-size: auto 100%;  /* height matches text size */
    background-repeat: repeat-x;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .learn {
    background-image: url('i/1.jpg'); /* wide strip with 4 images */
    animation: scroll-learn 120s linear infinite;
  }

  .anything {
    background-image: url('i/2.jpg'); /* wide strip with 4 images */
    animation: scroll-anything 90s linear infinite;
  }

  @keyframes scroll-learn {
    0%   { background-position: 0 50%; }
    100% { background-position: 100% 50%; }
  }

  @keyframes scroll-anything {
    0%   { background-position: 0 50%; }
    100% { background-position: -100% 50%; }
  }



        .herosubheading {
            display: block;
            font-size: clamp(1.3rem, 2.1vw, 1.8rem);
            color: var(--graphite);
            font-weight: 300;
            text-align: center;
        }

        .features-container {
            position: relative;
            margin-top: var(--spacing-xl);
            height: 400vh;
            max-width: 1440px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-l);
            align-items: center;
            padding-top: var(--spacing-l);
            padding-bottom: var(--spacing-l);
        }

        .feature-image-container {
            height: 100%;
            position: relative;
            background: var(--silver);
            border-radius: var(--round-corner);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-image {
            position: absolute;
            width: 100%;
            height: calc(100vh - var(--spacing-l) * 2);
            background: #FAFAFA;
            color: white;
            font-size: 4rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--round-corner);
            overflow: hidden;
        }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        .feature-text-container {
            height: 100%;
            position: relative;
            background: var(--silver);
            border-radius: var(--round-corner);
            padding: var(--spacing-l);
            display: flex;
            align-items: center;
        }

        .feature-text {
            position: absolute;
            width: calc(100% - var(--spacing-xl) * 2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-text.active {
            opacity: 1;
        }

        .feature-text h2 {
            font-size: 3rem;
            line-height: 2.8rem;
            color: #000;
            margin-bottom: var(--spacing-s);
        }

        .feature-text p {
            color: var(--graphite);
            font-size: var(--display-txt);
            font-weight: 300;
            line-height: 1.7rem;
        }

        .hook {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            width: 100%;
            max-width: 1440px;
            padding: 0 var(--spacing-xl);
            margin:0 auto;
        }


        .hook p {
            color: var(--graphite);
            font-size: var(--display-txt);
            font-weight: 300;
            text-align: center;
            margin-bottom:var(--spacing-s);
        }



.magic {
position: relative;
}


.hook-container {
            display: flex;
            align-items: stretch;
            gap: 20px;
            max-width: 800px;
            width: 100%;
            background: linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.5) 100%);
            border-radius: 60px;
            overflow: hidden;
            padding: 60px;
            position: relative;
            z-index: 3;
        }


        .ellipse {
            width: 100%;
            max-width: 1220px;
            height: auto;
            position: absolute;
        }

        .ellipse img {
            width: 100%;
            opacity: 0.7;
        }

        .typing-container {
            background: linear-gradient(180deg, #F4F4F6 0%, #FFFFFF 100%);
box-shadow: inset 0px 4px 4px rgba(255, 255, 255, 0.9);
            border: 2px solid var(--softgraphite);
            border-radius: 20px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;

        }

        

        .icon {
            width: 24px;
            height: 24px;
            color: rgba(100, 100, 100, 0.8);
            flex-shrink: 0;
        }

        .text-container {
            font-size: 1.4rem;
            font-weight: 300;
            color: #333;
            display: flex;
            align-items: center;
        }

        .typing-text {
            position: relative;
        }

        .cursor {
            display: inline-block;
            width: 3px;
            height: 1.2em;
            background-color: var(--graphite);
            border-radius: 10px;
            margin-left: 2px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .quick-essay {
            background: linear-gradient(180deg, rgba(122, 133, 150, 0.8) 0%, rgba(87, 106, 136, 0.8) 100%);
box-shadow: 0px 14px 16px rgba(249, 252, 255, 0.2), inset 0px 2px 1px rgba(255, 255, 255, 0.5);
border-radius: 16px;
            border: 2px solid var(--graphite);
            border-radius: 20px;
            padding: 16px;
            color: white;
            font-size: 1.2rem;
            font-weight: 300;
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: center;
            flex-shrink: 0;
        }

        

        .diamond {
            width: 24px;
            height: 24px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

.ellipse {
    display: none;
}

.hook {
    padding: 0;
}

            .hook-container {
                flex-direction: column;
                gap: 10px;
                background-color: var(--silver);
                border-radius: 20px;
                background-image:linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(i/ellipse.png);
        border-radius: 20px;
        background-size: 200%;
        background-position: center;
            }
            
            .typing-container {
                width: 100%;
                padding: 16px;
                flex-direction: row;
                text-align: center;
                gap: 10px;
            }

            

            .quick-essay {
                width: 100%;
                padding: 16px;
                align-items: stretch;
                justify-content: space-between;
                
            }
        }

        @media (max-width: 480px) {
            .typing-container {
                padding: 16px 8px;
            }

           

            .quick-essay {
                padding: 16px 8px;
            }
        }




        .mailheading {
            font-size: clamp(3rem, 12vw, 10rem);
            background: black;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: var(--spacing-s);
            padding: 0 clamp(1rem, 10vw, 12rem);
            text-align: center;
            font-weight: 900;
            line-height: 0.9;
            
        }

        .email-block {
            width: 100%;
            max-width: 1440px;
            margin:0 auto;
            min-height: 100vh;
            background: var(--silver);
            border-radius: var(--round-corner);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap:40px;
            margin-top: var(--spacing-xl);
            margin-bottom: var(--spacing-xl);
            padding: var(--spacing-l);
        }

        .email-block p {
            display: block;
            font-size: var(--display-txt);
            color: var(--graphite);
            font-weight: 300;
            text-align: center;
        }

        .email-form {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-s);
            max-width: 500px;
            width: 100%;
        }



        .email-form h2 {
            
        }

        input[type="email"] {
            padding: 20px 25px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1.1rem;
            transition: all 0.3s;
            background: white;
        }

        input[type="email"]:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(254, 9, 72, 0.1);
        }

        .gdpr-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: var(--spacing-s);
        }

        .gdpr-container input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 30px;
            height: 30px;
            cursor: pointer;
            border: 2px solid var(--graphite);
            border-radius: 6px;
            position: relative;
            transition: all 0.3s ease;
            background: white;
        }

        .gdpr-container input[type="checkbox"]:checked {
            background: linear-gradient(180deg, rgba(255, 49, 132, 0.8) 0%, rgba(253, 0, 68, 0.8) 100%);
            border: 2px solid #E70D47;
            box-shadow: 0px 2px 4px rgba(255, 0, 77, 0.3), inset 0px 1px 1px rgba(255, 255, 255, 0.4);
        }

        .gdpr-container input[type="checkbox"]:checked::after {
            content: '✔';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .gdpr-container label {
            color: var(--graphite);
            font-size: 0.9rem;
            cursor: pointer;
        }


        .success-text {
    color: #4CAF50;
    font-weight: 600;
    font-size: 1.2em;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

        /* Success message styles */
        .success-message {
            display: none;
            padding: 15px 20px;
            background: #10b981;
            color: white;
            border-radius: 12px;
            font-size: 1rem;
            text-align: center;
        }

        .success-message.show {
            display: block;
        }

        .footer {
            width: 100%;
            min-height: 100vh;
            background: var(--darkbg);
            border-radius: var(--round-corner);
            display: flex;
            gap: 60px;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            color: white;
            text-align: center;
            overflow: hidden; 
            position: relative;
        }

        .footercontent {
            padding-bottom: var(--spacing-xl);
        }


        .footerbrandwrapper {
            position: absolute;
    z-index: 999;
    height: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
        }

        .ft_carousel {
    width: 100%;
    overflow: hidden;
  }

  .track {
    display: flex;
    width: max-content; /* shrink to fit children */
    animation: scroll 60s linear infinite;
  }

  .track video {
    width: 20vw; /* 100% / 8 videos = 12.5% */
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
  }

  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* move exactly one full set */
  }

        .footerbrand {
            font-size: clamp(3rem, 12vw, 10rem);
            padding: 0 ;
            text-align: center;
            font-weight: 900;
            color: #fff;
        }

        .footercontent {
            font-weight: 300;
            color: #a78bfa;
        }

        .footer h2 {
            font-size: 2rem;
            font-weight: 300;
        }

        .footer-links {
            display: flex;
            gap: var(--spacing-m);
            margin-top: 0.6rem;
            
        }

        .footer-links a {
            color: #a78bfa;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }

        /* Hide mobile features by default */
        .mobile-features {
            display: none;
        }

        /* Tablet styles */
        @media (max-width: 1024px) {
            :root {
                --spacing-xl: 80px;
                --spacing-l: 40px;
                --spacing-m: 30px;
            }

            .features-wrapper {
                gap: var(--spacing-m);
            }

            .feature-image {
                font-size: 3rem;
                height: calc(100vh - var(--spacing-l) * 2);
            }

            .feature-text h2 {
                font-size: 1.75rem;
            }
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            :root {
                --spacing-xl: 60px;
                --spacing-l: 30px;
                --spacing-m: 20px;
                --spacing-s: 15px;
                --round-corner: 20px;
            }

            body {
                padding: var(--spacing-s);
            }

            .hero {
                height: 80vh;
                padding: var(--spacing-m);
            }

            .features-container {
                height: auto;
                margin-top: var(--spacing-m);
            }

            .features-wrapper {
                position: relative;
                height: auto;
                display: block;
                padding: 0;
            }

            .feature-image-container,
            .feature-text-container {
                display: none;
            }

            .mobile-features {
                display: block;
            }

            .mobile-feature-block {
                margin-bottom: var(--spacing-xl);
            }

            .mobile-feature-block .feature-image {
                position: relative;
                width: 100%;
                height: 420px;
                transform: none;
                margin-bottom: var(--spacing-s);
            }

            .mobile-feature-block .feature-text {
                position: relative;
                width: 100%;
                opacity: 1;
                background: var(--silver);
                border-radius: var(--round-corner);
                padding: var(--spacing-m);
            }

            .mobile-feature-block .feature-text h2 {
                font-size: 1.5rem;
            }

            .mobile-feature-block .feature-text p {
                
            }

            h1 {
                text-align: center;
            }

            .hero p {
                text-align: center;
            }

            .email-block {
                padding: var(--spacing-m);
                min-height: 80vh;
            }

            .email-form h2 {
                font-size: 2rem;
            }

            .footer {
                min-height: 80vh;
            }

            .track video {
                width: 40vw;
            }

            .footerbrandwrapper {
                height: 40vw;
            }

            .footer-links {
                flex-direction: column;
                text-align: center;
            }
        }