        /* Global Reset Rules */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #000000;
            line-height: 1.3;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Direct structural replication of container constraints from reference images */
        .container {
            width: 100%;
            max-width: 1050px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero Wrapper - Rich Solid Theme Background block */
        header {
            background-color: #4C0081;
            padding: 60px 0 50px 0;
            color: #ffffff;
            height: 75vh;
            position: relative; 
    overflow: visible;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 30px;
            align-items: center;
        }

        .brand-logo {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            margin-bottom: 35px;
            display: inline-block;
            letter-spacing: -1.5px;
        }

        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -1.5px;
        }

        /* Container Box Enhancement */
        .onboarding-action-center {
            max-width: 1050px;
            /* Slightly wider for the chunky layout */
        }

        /* Chunky Input Row Layout */
        .unified-input-field-row {
            display: flex;
            gap: 16px;
            width: 100%;
            margin-top: 30px;
            align-items: center;
        }

        /* 3D-styled Chunky Input Field */
        .unified-input-field-row input {
            flex: 1;
            border: 4px solid #4C0081;
            border-radius: 20px;
            font-size: 1rem;
            font-family: inherit;
            font-weight: 600;
            color: #111111;
            outline: none;
            box-shadow: 0 6px 0px rgba(76, 0, 129, 0.15);
            /* Matches browser frame depth */
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }

        .unified-input-field-row input:focus {
            transform: translateY(2px);
            box-shadow: 0 4px 0px rgba(76, 0, 129, 0.15);
        }

        /* Chunky 3D Vinyl Button to match Hero Button style */
        .unified-input-field-row button {
            color: #ffffff;
            border: none;
            padding: 18px 36px;
            border-radius: 20px;
            font-weight: 800;
            font-size: 1.1rem;
            cursor: pointer;
            font-family: inherit;
            white-space: nowrap;
            box-shadow: 0 8px 0 #2A0047;
            /* Thick bottom depth layer */
            transform: translateY(-4px);
            transition: transform 0.1s ease, box-shadow 0.1s ease;
        }

        .unified-input-field-row button:active {
            transform: translateY(4px);
            box-shadow: 0 0px 0 #2A0047;
        }

        /* Responsive Stacking for Mobile Viewports */
        @media (max-width: 878px) {
            .unified-input-field-row {
                flex-direction: column;
                gap: 20px;
            }

            .unified-input-field-row input,
            .unified-input-field-row button {
                width: 100%;
            }

            .unified-input-field-row button {
                transform: none;
                box-shadow: 0 6px 0 #2A0047;
            }
        }

        /* App Store Badge Containers layout rules */
        .store-badge-row {
            display: flex;
            gap: 12px;
        }

    

        /* Interactive App Interface Frame matching specific placement angles */
        .hero-media-showcase {
            width: 100%;
            max-width: 440px;
            aspect-ratio: 1.25;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 600;
            font-size: 0.9rem;
            transform: rotate(4deg);
            /* Replicates subtle layout accent tilts */
            justify-self: center;
        }

        /* Mid-Section Header Content Styling */
        .section-space {
            padding: 70px 0;
        }

        .section-headline {
            font-size: 1.8rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 45px;
            color: #000000;
            letter-spacing: -0.5px;
        }

        /* 3-Column Feature Cards Layout Grid Block */
        .features-grid-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-card-item {
            background-color: rgba(76, 0, 129, 0.05);
            /* Soft premium tint background using #4C0081 */
            border-radius: 24px;
            padding: 40px 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-icon-box {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4C0081;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .feature-title-text {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #000000;
            line-height: 1.2;
        }

        .feature-body-text {
            font-size: 0.9rem;
            color: #444444;
            line-height: 1.4;
        }

        /* Detailed Courses/Tracks Grid Component Layout */
        .roster-grid-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px 20px;
        }

        .roster-card-cell {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .roster-avatar-placeholder {
            width: 100%;
            max-width: 150px;
            aspect-ratio: 1;
            background-color: #ffffff;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4C0081;
            font-size: 0.8rem;
        }

        .roster-price-badge {
            background-color: #4C0081;
            /* Inverted contrast setup matching the brand theme color rules */
            color: #ffffff;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 5px 16px;
            border-radius: 20px;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }

        .roster-label-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: #111111;
        }

        /* Conversion Form Capture UI Box Elements */
        .onboarding-action-center {
            max-width: 480px;
            margin: 20px auto;
            text-align: center;
        }

        .unified-input-field-row {
            display: flex;
            gap: 12px;
            width: 100%;
            margin-top: 24px;
        }

        .unified-input-field-row input {
            flex: 1;
            padding: 15px 24px;
            border: 2px solid rgba(76, 0, 129, 0.15);
            border-radius: 50px;
            font-size: 0.95rem;
            font-family: inherit;
            outline: none;
        }

        .unified-input-field-row input:focus {
            border-color: #4C0081;
        }

        .unified-input-field-row button {
            background-color: #4C0081;
            color: #ffffff;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            font-family: inherit;
            transition: opacity 0.2s;
            white-space: nowrap;
        }

        .unified-input-field-row button:hover {
            opacity: 0.9;
        }

        /* Footer Alignment Elements mimicking structural assets layout matrix */
        footer {
            background-color: rgba(76, 0, 129, 0.05);
            padding: 50px 0;
            margin-top: 40px;
        }

        .footer-split-layout {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .footer-brand-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-brand-title {
            font-size: 1.9rem;
            font-weight: 800;
            color: #4C0081;
            text-decoration: none;
            letter-spacing: -1px;
        }

        .footer-nav-links-side {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-nav-links-side a {
            color: #000000;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .footer-nav-links-side a:hover {
            text-decoration: underline;
        }

        /* ==========================================================================
           100% RESPONSIVE REPLICATION RULES
           Matches parameters found in "www.toingit.com_(Samsung Galaxy S8+)_2.jpg"
           ========================================================================== */
        @media (max-width: 878px) {
            header {
                padding: 45px 0 55px 0;
                text-align: center;
            }

            .hero-layout {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .brand-logo {
                margin-bottom: 25px;
            }

            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 25px;
            }

            .store-badge-row {
                justify-content: center;
            }

            .hero-media-showcase {
                transform: none;
                max-width: 300px;
            }

            /* Stack structural system cards line-by-line vertically */
            .features-grid-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card-item {
                padding: 35px 20px;
            }

            /* Responsive 2-column grid alignment conversion for small profile viewport screens */
            .roster-grid-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px 12px;
            }

            .roster-avatar-placeholder {
                max-width: 130px;
            }

            /* Mobile structural layouts updating input form blocks & footers */
            .unified-input-field-row {
                flex-direction: column;
            }

            .footer-split-layout {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 40px;
            }

            .footer-brand-side {
                align-items: center;
            }
        }

        /* Update this existing class block to activate the smooth 3D space */
        .hero-media-showcase {
            width: 100%;
            max-width: 440px;
            aspect-ratio: 1.25;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 600;
            font-size: 0.9rem;
            justify-self: center;

            /* NEW: Add perspective to allow the child image to pop out in 3D space */
            perspective: 1000px;
            transform-style: preserve-3d;
        }

        /* Target your exact image asset inside the showcase container */
        .hero-media-showcase img {
            height: 120%;
            z-index: 1;
            scale: calc(1.05);           
        }

    


        /* Disable or tone down the rotational animations on responsive screens for crisp rendering */
        @media (max-width: 878px) {
            .hero-media-showcase {
                transform: none;
            }

            .hero-media-showcase img {
                animation: enrollizeMobileBob 4s ease-in-out infinite alternate;
            }

            @keyframes enrollizeMobileBob {
                0% {
                    transform: translateY(0px) scale(1);
                }

                100% {
                    transform: translateY(-10px) scale(1.02);
                }
            }
        }
