
            [x-cloak] {
                display: none !important;
            }

            .chrome-hero,
            .chrome-hero * {
                box-sizing: border-box;
                font-family:
                    "Google Sans Text",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            .chrome-hero h1 {
                font-family:
                    "Google Sans Display",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            @media (max-width: 1023px) {
                .chrome-hero {
                    padding-top: 62px;
                }

                .chrome-hero video {
                    margin-top: 10px;
                }
            }

            @media (max-width: 767px) {
                .chrome-hero h1 {
                    font-size: 48px;
                }
            }

            @media (max-width: 479px) {
                .chrome-hero h1 {
                    font-size: 41px;
                }
            }
        

            .gemini-video-section,
            .gemini-video-section * {
                box-sizing: border-box;
                font-family:
                    "Google Sans Text",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            .gemini-video-section h2 {
                font-family:
                    "Google Sans Display",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            @media (max-width: 767px) {
                .gemini-video-section {
                    padding-top: 28px;
                    padding-bottom: 85px;
                }

                .gemini-video-section h2 {
                    font-size: 40px;
                }

                .gemini-video-section iframe {
                    border-radius: 18px;
                }
            }

            @media (max-width: 479px) {
                .gemini-video-section h2 {
                    font-size: 34px;
                }
            }
        

            [x-cloak] {
                display: none !important;
            }

            .chrome-ai-section,
            .chrome-ai-section * {
                box-sizing: border-box;
                font-family:
                    "Google Sans Text",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            .chrome-ai-section h2,
            .chrome-ai-section h3 {
                font-family:
                    "Google Sans Display",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            /* =========================================================
     AI PILL
     ========================================================= */

            .chrome-ai-pill {
                position: relative;
                display: inline-flex;
                min-width: 158px;
                height: 72px;
                align-items: center;
                justify-content: center;
                gap: 4px;
                overflow: hidden;
                border-radius: 999px;
                background:
                    linear-gradient(120deg,
                        #76a7ff 0%,
                        #b6c7ff 45%,
                        #dce3ff 100%);
                color: #202124;
                padding: 0 23px 0 18px;
                box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
                animation: aiPillBreath 3.4s ease-in-out infinite;
            }

            .chrome-ai-pill-shine {
                position: absolute;
                top: -80%;
                left: -45%;
                width: 46%;
                height: 260%;
                transform: rotate(20deg);
                background:
                    linear-gradient(90deg,
                        transparent,
                        rgba(255, 255, 255, 0.58),
                        transparent);
                filter: blur(2px);
                animation: aiPillShine 3.2s ease-in-out infinite;
            }

            .chrome-ai-symbol {
                position: relative;
                z-index: 2;
                display: flex;
                align-items: center;
                justify-content: center;
                transform-origin: center;
                animation: aiSymbolFloat 2.3s ease-in-out infinite;
            }

            .chrome-ai-text {
                position: relative;
                z-index: 2;
                display: flex;
                gap: 1px;
                font-family:
                    "Google Sans Display",
                    "Google Sans",
                    Arial,
                    sans-serif;
                font-size: 49px;
                font-weight: 600;
                line-height: 1;
                letter-spacing: -0.07em;
            }

            .chrome-ai-text span {
                display: inline-block;
                animation: aiLetterRise 2.3s ease-in-out infinite;
            }

            .chrome-ai-text span:nth-child(2) {
                animation-delay: 110ms;
            }

            /* =========================================================
     ANIMATIONS
     ========================================================= */

            @keyframes aiPillBreath {

                0%,
                100% {
                    transform: scale(1);
                    box-shadow:
                        inset 0 0 0 1px rgba(255, 255, 255, .38),
                        0 0 0 rgba(66, 133, 244, 0);
                }

                50% {
                    transform: scale(1.035);
                    box-shadow:
                        inset 0 0 0 1px rgba(255, 255, 255, .52),
                        0 8px 22px rgba(66, 133, 244, .16);
                }
            }

            @keyframes aiPillShine {
                0% {
                    transform: translateX(-70%) rotate(20deg);
                    opacity: 0;
                }

                22% {
                    opacity: 1;
                }

                58% {
                    opacity: 0.9;
                }

                100% {
                    transform: translateX(420%) rotate(20deg);
                    opacity: 0;
                }
            }

            @keyframes aiSymbolFloat {

                0%,
                100% {
                    transform: translateY(0) rotate(0deg);
                }

                50% {
                    transform: translateY(-4px) rotate(-3deg);
                }
            }

            @keyframes aiLetterRise {

                0%,
                100% {
                    transform: translateY(0);
                    opacity: 1;
                }

                45% {
                    transform: translateY(-4px);
                    opacity: 0.9;
                }

                65% {
                    transform: translateY(1px);
                    opacity: 1;
                }
            }

            /* Pause all section animations */
            .ai-animation-paused .chrome-ai-pill,
            .ai-animation-paused .chrome-ai-pill-shine,
            .ai-animation-paused .chrome-ai-symbol,
            .ai-animation-paused .chrome-ai-text span {
                animation-play-state: paused !important;
            }

            /* =========================================================
     RESPONSIVE
     ========================================================= */

            @media (max-width: 767px) {
                .chrome-ai-section {
                    padding-top: 70px;
                    padding-bottom: 95px;
                }

                .chrome-ai-section h2 {
                    font-size: 43px;
                }

                .chrome-ai-section h3 {
                    font-size: 44px;
                }

                .chrome-ai-pill {
                    min-width: 140px;
                    height: 64px;
                }

                .chrome-ai-text {
                    font-size: 43px;
                }

                .chrome-ai-symbol svg {
                    width: 39px;
                    height: 39px;
                }
            }

            @media (max-width: 479px) {
                .chrome-ai-section h2 {
                    font-size: 38px;
                }

                .chrome-ai-section h3 {
                    font-size: 38px;
                }

                .chrome-ai-pill {
                    min-width: 124px;
                    height: 58px;
                    padding-right: 19px;
                    padding-left: 15px;
                }

                .chrome-ai-text {
                    font-size: 38px;
                }

                .chrome-ai-symbol svg {
                    width: 34px;
                    height: 34px;
                }
            }

            @media (prefers-reduced-motion: reduce) {

                .chrome-ai-pill,
                .chrome-ai-pill-shine,
                .chrome-ai-symbol,
                .chrome-ai-text span {
                    animation: none !important;
                }
            }
        

            [x-cloak] {
                display: none !important;
            }

            .gemini-feature-cards,
            .gemini-feature-cards * {
                box-sizing: border-box;
                font-family:
                    "Google Sans Text",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            .gemini-feature-cards h2,
            .gemini-feature-cards h3 {
                font-family:
                    "Google Sans Display",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            @media (max-width: 1023px) {
                .gemini-feature-cards article {
                    min-height: 620px;
                }
            }

            @media (max-width: 767px) {
                .gemini-feature-cards {
                    padding-top: 70px;
                    padding-bottom: 80px;
                }

                .gemini-feature-cards article {
                    min-height: auto;
                    border-radius: 24px;
                }

                .gemini-feature-cards article>div:first-child {
                    min-height: auto;
                    padding: 34px 28px 28px;
                }

                .gemini-feature-cards h2 {
                    font-size: 34px;
                }

                .gemini-feature-cards img {
                    min-height: 360px;
                }
            }

            @media (max-width: 479px) {
                .gemini-feature-cards h2 {
                    font-size: 31px;
                }

                .gemini-feature-cards img {
                    min-height: 310px;
                }
            }
        

            [x-cloak] {
                display: none !important;
            }

            .ai-mode-section,
            .ai-mode-section * {
                box-sizing: border-box;
                font-family:
                    "Google Sans Text",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            .ai-mode-section h2 {
                font-family:
                    "Google Sans Display",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            @media (max-width: 1023px) {
                .ai-mode-section {
                    padding-top: 78px;
                    padding-bottom: 90px;
                }

                .ai-mode-section>div {
                    gap: 48px;
                }
            }

            @media (max-width: 767px) {
                .ai-mode-section h2 {
                    font-size: 42px;
                }

                .ai-mode-section video {
                    object-position: center;
                }
            }

            @media (max-width: 479px) {
                .ai-mode-section h2 {
                    font-size: 37px;
                }

                .ai-mode-section p {
                    font-size: 16px;
                }

                .ai-mode-section>div>div:last-child>div {
                    border-radius: 18px;
                }
            }
        

            .chrome-updates-section,
            .chrome-updates-section * {
                box-sizing: border-box;
                font-family:
                    "Google Sans Text",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            .chrome-updates-section h2,
            .chrome-updates-section h3 {
                font-family:
                    "Google Sans Display",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            @media (max-width: 767px) {
                .chrome-updates-section {
                    padding-top: 75px;
                    padding-bottom: 85px;
                }

                .chrome-updates-section h2,
                .chrome-updates-section h2+div>span:last-child {
                    font-size: 40px;
                }

                .chrome-updates-section h2+div>span:first-child {
                    min-height: 54px;
                    padding-left: 19px;
                    padding-right: 19px;
                    font-size: 38px;
                }

                .chrome-updates-section h3 {
                    font-size: 36px;
                }
            }

            @media (max-width: 479px) {

                .chrome-updates-section h2,
                .chrome-updates-section h2+div>span:last-child {
                    font-size: 34px;
                }

                .chrome-updates-section h2+div>span:first-child {
                    min-height: 50px;
                    font-size: 32px;
                }

                .chrome-updates-section h2+div svg {
                    width: 31px;
                    height: 31px;
                }

                .chrome-updates-section article {
                    min-height: auto;
                    border-radius: 20px;
                }
            }
        

            [x-cloak] {
                display: none !important;
            }

            .chrome-faq-section,
            .chrome-faq-section * {
                box-sizing: border-box;
                font-family:
                    "Google Sans Text",
                    "Google Sans",
                    Arial,
                    sans-serif;
                letter-spacing: normal !important;
            }

            .chrome-faq-section h2 {
                font-family:
                    "Google Sans Display",
                    "Google Sans",
                    Arial,
                    sans-serif;
                letter-spacing: normal !important;
            }

            @media (max-width: 767px) {
                .chrome-faq-section {
                    padding-top: 75px;
                    padding-bottom: 80px;
                }

                .chrome-faq-section h2 {
                    font-size: 38px;
                }

                .chrome-faq-section button span:first-child {
                    font-size: 20px;
                }
            }

            @media (max-width: 479px) {
                .chrome-faq-section h2 {
                    font-size: 34px;
                }

                .chrome-faq-section button {
                    padding-top: 24px;
                    padding-bottom: 24px;
                }

                .chrome-faq-section button span:first-child {
                    font-size: 18px;
                }
            }
        

            .chrome-mobile-cta,
            .chrome-mobile-cta * {
                box-sizing: border-box;
                font-family:
                    "Google Sans Text",
                    "Google Sans",
                    Arial,
                    sans-serif;
                letter-spacing: normal;
            }

            .chrome-mobile-cta h2 {
                font-family:
                    "Google Sans Display",
                    "Google Sans",
                    Arial,
                    sans-serif;
            }

            @media (max-width: 767px) {
                .chrome-mobile-cta {
                    padding-top: 44px;
                    padding-bottom: 44px;
                }

                .chrome-mobile-cta>div {
                    min-height: 410px;
                    border-radius: 20px;
                }

                .chrome-mobile-cta h2 {
                    font-size: 42px;
                }
            }

            @media (max-width: 479px) {
                .chrome-mobile-cta>div {
                    min-height: 380px;
                    padding-left: 24px;
                    padding-right: 24px;
                }

                .chrome-mobile-cta h2 {
                    font-size: 36px;
                }

                .chrome-mobile-cta p {
                    font-size: 15px;
                }
            }
        
