        @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700;900&display=swap');

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

        body {
            font-family: 'Source Sans 3', sans-serif;
            background: #fff;
            color: #1f2937;
            line-height: 1.6;
        }

        /* SIMPLIFIED HEADER WITH POP ART ACCENT */
        .header {
            background: #fff;
            border-bottom: 6px solid #dd4298;
            padding: 2rem 8%;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-header {
            max-width: 300px;
        }

        .logo-header img {
            width: 100%;
            height: auto;
            filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.15));
        }

        .header-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: #1f2937;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: #dd4298;
            transform: translateX(-3px);
        }

        .btn-submit {
            background: #dd4298;
            color: #fff;
            padding: 1rem 2.5rem;
            border: none;
            font-weight: 900;
            text-decoration: none;
            font-size: 1rem;
            box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-submit:hover {
            background: #000;
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.2);
        }

        /* PAGE TITLE SECTION - POP ART STYLE */
        .page-title-section {
            background: #dd4298;
            padding: 4rem 8%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Halftone pattern */
        .page-title-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle, rgba(0,0,0,0.15) 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.4;
        }

        .page-title {
            font-family: 'Source Sans 3', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            color: #fff;
            position: relative;
            z-index: 10;
            text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
            letter-spacing: -2px;
            text-transform: uppercase;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: #fff;
            margin-top: 1rem;
            font-weight: 700;
            position: relative;
            z-index: 10;
            text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
        }

        /* MAIN CONTENT */
        .content-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            padding: 4rem 8%;
        }

        .deadline-box {
            background: #000;
            color: #fff;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 6px 6px 0px #dd4298;
            position: relative;
        }

        .deadline-box::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: -10px;
            bottom: -10px;
            border: 3px solid #bed745;
            z-index: -1;
        }

        .deadline-box h2 {
            font-family: 'Source Sans 3', sans-serif;
            color: #bed745;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .deadline-box p {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .content-section {
            margin-bottom: 3rem;
        }

        .section-title {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 2rem;
            color: #dd4298;
            margin-bottom: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
            border-bottom: 5px solid #bed745;
            padding-bottom: 0.5rem;
            text-shadow: 2px 2px 0px rgba(221, 66, 152, 0.1);
        }

        .section-subtitle {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1.4rem;
            color: #1f2937;
            margin: 2rem 0 1rem 0;
            font-weight: 900;
            text-transform: uppercase;
        }

        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .content-section ul, .content-section ol {
            margin: 1.5rem 0 1.5rem 2rem;
        }

        .content-section li {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .highlight-box {
            background: #fff;
            border: 4px solid #dd4298;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .highlight-box::after {
            content: '!';
            position: absolute;
            top: -15px;
            right: 20px;
            background: #dd4298;
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.5rem;
            box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
        }

        .highlight-box h3 {
            font-family: 'Source Sans 3', sans-serif;
            color: #dd4298;
            margin-bottom: 1rem;
            font-weight: 900;
            font-size: 1.3rem;
            text-transform: uppercase;
        }

        .new-badge {
            display: inline-block;
            background: #bed745;
            color: #000;
            padding: 0.8rem 1.5rem;
            font-weight: 900;
            font-size: 1rem;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
        }

        /* CTA SECTION - POP ART STYLE */
        .cta-section {
            background: #000;
            padding: 5rem 8%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.05) 2px, transparent 2px);
            background-size: 30px 30px;
        }

        .cta-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .cta-title {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 3rem;
            color: #fff;
            margin-bottom: 1.5rem;
            font-weight: 900;
            text-shadow: 4px 4px 0px #dd4298;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .cta-text {
            font-size: 1.2rem;
            color: #d1d5db;
            margin-bottom: 3rem;
            font-weight: 600;
        }

        .btn-submit-large {
            display: inline-block;
            background: #dd4298;
            color: #fff;
            padding: 2rem 5rem;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1.5rem;
            font-weight: 900;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 6px 6px 0px #bed745;
            transition: all 0.3s ease;
        }

        .btn-submit-large:hover {
            background: #bed745;
            color: #000;
            transform: translate(-3px, -3px);
            box-shadow: 9px 9px 0px #dd4298;
        }

        /* IMMERSIVE FINAL CTA - From Landing Page */
        .final-cta {
            background: #fff;
            padding: 0;
            position: relative;
        }

        /* Split design */
        .cta-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .cta-left {
            background: #dd4298;
            padding: 8rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-left::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('../images/_3000-600-SPLATTER.png') center/cover;
            opacity: 0.2;
            mix-blend-mode: multiply;
        }

        .cta-lightbulb-big {
            width: 80%;
            max-width: 400px;
            height: auto;
            filter: brightness(0) invert(1) drop-shadow(0 0 60px rgba(255, 255, 255, 0.5));
            position: relative;
            animation: pulse 4s ease-in-out infinite;
            transition: filter 0.6s ease, transform 0.3s ease;
            cursor: pointer;
        }

        /* Illuminate on hover - reveal color lightbulb */
        .cta-lightbulb-big:hover {
            filter: drop-shadow(0 0 80px rgba(221, 66, 152, 0.8)) drop-shadow(0 0 40px rgba(190, 231, 69, 0.6));
            transform: scale(1.08);
            animation: none;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .cta-right {
            background: #000;
            padding: 8rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: #fff;
        }

        .cta-final-title {
            font-family: 'Source Sans 3', sans-serif;
            font-size: clamp(4rem, 8vw, 9rem);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -4px;
            margin-bottom: 3rem;
            color: #fff;
        }

        .cta-final-title span {
            color: #bed745;
        }

        .cta-final-text {
            font-size: 1.6rem;
            line-height: 1.7;
            color: #d1d5db;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .cta-final-location {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 1.3rem;
            font-weight: 900;
            color: #f19235;
            margin-bottom: 4rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .cta-final-button {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2.5rem 5rem;
            background: #fff;
            color: #000;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 900;
            transition: all 0.4s ease;
            align-self: flex-start;
            margin-bottom: 2rem;
        }

        .cta-final-button:hover {
            background: #bed745;
            transform: translateX(10px);
        }

        .cta-final-subtext {
            font-size: 1.1rem;
            color: #9ca3af;
            font-weight: 600;
            line-height: 1.6;
            margin: 0;
        }

        /* FOOTER - POP ART STYLE */
        /* ===== PRE-FOOTER: BLACK WITH GREEN ACCENT ===== */
        .pre-footer {
            background: #000;
            padding: 4rem 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 4rem;
            position: relative;
            overflow: hidden;
        }

        .pre-footer::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -10%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            background: url('../images/_26-ILLUMINATE-ICON.png') center/contain no-repeat;
            opacity: 0.08;
        }

        .pre-footer-content {
            position: relative;
            z-index: 10;
        }

        .pre-footer-eyebrow {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #bed745;
            font-weight: 900;
            margin-bottom: 0.75rem;
        }

        .pre-footer-title {
            font-family: 'Source Sans 3', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 0.5rem;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .pre-footer-details {
            font-size: 1.1rem;
            color: #9ca3af;
            font-weight: 600;
        }

        .pre-footer-logo {
            max-width: 150px;
            position: relative;
            z-index: 10;
        }

        .pre-footer-logo img {
            width: 100%;
            height: auto;
        }

        /* ===== UTILITY FOOTER: MINIMAL LINE ===== */
        .utility-footer-minimal {
            background: #000;
            padding: 1rem 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .utility-footer-minimal .copyright {
            font-size: 0.85rem;
            color: #6b7280;
            font-weight: 500;
        }

        .utility-footer-minimal-group {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .utility-footer-minimal-links {
            display: flex;
            gap: 2rem;
        }

        .utility-footer-minimal-links a {
            font-size: 0.85rem;
            color: #9ca3af;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .utility-footer-minimal-links a:hover {
            color: #bed745;
        }

        .utility-footer-minimal-social {
            display: flex;
            gap: 1rem;
        }

        .utility-footer-minimal-social a {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .utility-footer-minimal-social a:hover {
            color: #dd4298;
            transform: scale(1.2);
        }

        .utility-footer-minimal-social svg {
            width: 100%;
            height: 100%;
            fill: currentColor;
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .cta-split {
                grid-template-columns: 1fr;
            }

            .cta-left {
                min-height: 60vh;
            }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 1.5rem;
            }

            .header-nav {
                flex-direction: column;
                gap: 1rem;
            }

            .content-wrapper {
                padding: 2rem 5%;
            }

            .page-title-section {
                padding: 3rem 5%;
            }

            .cta-left,
            .cta-right {
                padding: 5rem 5%;
            }

            .deadline-box::before {
                display: none;
            }

            .pre-footer {
                flex-direction: column;
                text-align: center;
                padding: 3rem 5%;
            }

            .pre-footer::before {
                right: 50%;
                transform: translate(50%, -50%);
            }

            .pre-footer-title {
                font-size: 1.8rem;
            }

            .pre-footer-details {
                font-size: 1rem;
            }

            .pre-footer-logo {
                max-width: 120px;
            }

            .utility-footer-minimal {
                flex-direction: column;
            }

            .utility-footer-minimal-group {
                flex-direction: column;
                gap: 1.5rem;
            }

            .utility-footer-minimal-links {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }
        }
