/* --- Mother Wrapper & Variable Scope --- */
        .carbon_content-wrapper {
            --bg-color: #fcfaf8;
            --text-dark: #222;
            --text-light: #555;
            --accent-red: #c54a50;
            --font-serif: 'Lora', serif;
            --font-sans: 'Open Sans', sans-serif;
            --font-handwriting: 'Caveat', cursive;
            --section-gap: 6rem; 
            --large-gap: 8rem;

            background-color: var(--bg-color);
            font-family: var(--font-serif);
            color: var(--text-dark);
            line-height: 1.6;
            width: 100%;
            overflow-x: hidden;
        }

        /* --- Scoped Reset --- */
        .carbon_content-wrapper * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
        }

        /* --- Article Layout --- */
        .carbon_content-wrapper .article-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 2rem 2rem;
        }

        /* --- Global Typography (Nesting prevents global h2/h3 leaks) --- */
        .carbon_content-wrapper h2 { font-size: 2.2rem; font-weight: 400; margin-bottom: 1rem; line-height: 1.2; }
        .carbon_content-wrapper h3 { font-size: 1.85rem; margin-bottom: 1.25rem; font-weight: 400; color: #444; }
        .carbon_content-wrapper .body-text { font-size: 1.1rem; margin-bottom: 1.2rem; color: var(--text-dark); }
        .carbon_content-wrapper .small-text { font-family: var(--font-sans); font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; }
        .carbon_content-wrapper .highlight-red { color: var(--accent-red); font-weight: 700; }
        .carbon_content-wrapper .kicker { font-size: 1.5rem; font-weight: 400; margin-bottom: 2.5rem; line-height: 1.65; font-style: italic;}

        .carbon_content-wrapper .quote-text { font-size: 2.8rem; line-height: 0.95; margin-bottom: 1.5rem; letter-spacing: -1px; font-weight: 400; }
        .carbon_content-wrapper .quote-end { display: block; font-size: 1.8rem; margin-top: 0.2rem; }

        .carbon_content-wrapper .highlight-gradient {
            font-size: 5rem;
            font-weight: 700;
            background: linear-gradient(90deg, #fed191 0%, #f28631 50%, #cf5325 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- Hero Section --- */
        .carbon_content-wrapper .hero { text-align: center; padding: 4rem 0 6rem; }
        .carbon_content-wrapper .hero-graphic { position: relative; display: inline-block; margin-bottom: 1.5rem; }
        .carbon_content-wrapper .main-title { font-family: var(--font-sans); font-weight: 700; color: #fff; position: relative; z-index: 2; }
        .carbon_content-wrapper .line-one, 
        .carbon_content-wrapper .line-three { font-size: 2.5rem; text-transform: lowercase; }
        .carbon_content-wrapper .line-three { color: var(--text-dark); display: block; margin-top: -0.5rem; }
        .carbon_content-wrapper .line-two {
            display: block; font-family: var(--font-handwriting); font-size: 8rem;
            font-weight: 400; margin: -1.5rem 0; transform: rotate(-3deg);
        }
        .carbon_content-wrapper .byline { font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; color: var(--text-light); }

        /* --- Content Row System --- */
        .carbon_content-wrapper .content-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: var(--section-gap);
            gap: 6%;
        }

        .carbon_content-wrapper .row-reverse { flex-direction: row-reverse !important; }
        .carbon_content-wrapper .text-wrapper { flex: 1; }
        .carbon_content-wrapper .graphic-wrapper { flex: 1; position: relative; display: flex; justify-content: center; }

        .carbon_content-wrapper .large-layout { align-items: flex-end; margin-bottom: var(--large-gap); }
        .carbon_content-wrapper .large-layout .graphic-wrapper { flex: 1.6; }
        .carbon_content-wrapper .large-layout .text-wrapper { padding-bottom: 2rem; }

        .carbon_content-wrapper .standalone-text { justify-content: center; text-align: left; margin: 4rem auto; }
        .carbon_content-wrapper .standalone-text .text-wrapper { max-width: 650px; }

        /* Utility */
        .carbon_content-wrapper .spacer-sm { margin-bottom: 3rem; }

        /* Images & Blobs */
        .carbon_content-wrapper .player-img { width: 100%; max-width: 450px; position: relative; z-index: 2; mix-blend-mode: multiply; }
        .carbon_content-wrapper .large-img { max-width: 700px !important; width: 115%; }

        .carbon_content-wrapper .watercolor-blob {
            position: absolute; width: 110%; height: 110%;
            z-index: 1; filter: blur(35px); opacity: 0.4; border-radius: 50%;
        }
        .carbon_content-wrapper .red-blob { background: #c54a50; width: 350px; height: 350px; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.8; }
        .carbon_content-wrapper .purple-blob { background: #a18cd1; top: -5%; left: -5%; }
        .carbon_content-wrapper .yellow-blob { background: #f6d365; top: -5%; right: -5%; }
        .carbon_content-wrapper .brown-blob { background: #cf5325 50%; top: -5%; right: -5%; }
        .carbon_content-wrapper .pink-blob-large { 
            background: radial-gradient(circle, #fda085 0%, #f5576c 100%); 
            top: 50%; 
            left: 50%;
            transform: translate(-50%, -50%); 
            opacity: 0.25; 
            filter: blur(120px); 
            pointer-events: none; 
        }

        /* --- Diagnostic Full Width Section --- */
        .carbon_content-wrapper .diagnostic-section {
            width: 100vw;
            margin-left: calc(50% - 50vw);
            display: flex;
            align-items: center;
            padding: 5rem 10%;
            background-color: var(--bg-color);
            margin-bottom: var(--large-gap);
        }

        .carbon_content-wrapper .diagnostic-text { flex: 1; padding-right: 5%; }
        .carbon_content-wrapper .diagnostic-text .label { font-size: 1rem; color: var(--text-light); margin-bottom: 1rem; display: block; }
        .carbon_content-wrapper .diagnostic-text h2 { font-size: 3rem; margin-bottom: 0.2rem; font-weight: 400; }
        .carbon_content-wrapper .diagnostic-text h3 { font-size: 1.85rem; margin-bottom: 1.25rem; font-weight: 400; color: #444; }
        .carbon_content-wrapper .diagnostic-text .explanation { font-size: 1.05rem; max-width: 500px; color: var(--text-dark); border-top: 1px solid #ddd; padding-top: 1.5rem; }
        .carbon_content-wrapper .diagnostic-graphic { flex: 1.5; position: relative; }

        /* --- Footer --- */
        .carbon_content-wrapper .article-footer {
            padding: 3rem 2rem;
            background: #fff;
            border-top: 1px solid #eee;
            color: #888;
            font-family: var(--font-sans);
            font-size: 0.85rem;
        }
        .carbon_content-wrapper .footer-content { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
        .carbon_content-wrapper .footer-links { list-style: none; display: flex; gap: 2rem; }

        /* --- Animations --- */
        .carbon_content-wrapper .section-reveal { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
        .carbon_content-wrapper .section-reveal.is-visible { opacity: 1; transform: translateY(0); }

        /* --- Responsive Layout --- */
        @media (max-width: 900px) {
            .carbon_content-wrapper .content-row, 
            .carbon_content-wrapper .row-reverse, 
            .carbon_content-wrapper .diagnostic-section { 
                flex-direction: column !important; 
                text-align: center; 
                gap: 3rem; 
                padding: 0.5rem 2rem; 
            }
            .carbon_content-wrapper .diagnostic-section {
                width: 100%;
                margin-left: 0;
            }
            .carbon_content-wrapper .diagnostic-text { padding-right: 0; }
            .carbon_content-wrapper .diagnostic-text .explanation { margin: 0 auto; }
            .carbon_content-wrapper .large-img { width: 100%; transform: none; }
            .carbon_content-wrapper .hero { padding-bottom: 4rem; }
        }

        /* --- Mother Wrapper --- */
        .carbon_content-wrapper {
            position: relative;
            width: 100%;
        }

        /* --- Scoped CSS --- */
        .carbon_content-wrapper .header {
            position: relative;
            margin: 0 auto;
            width: 100%;
            height: 100vh;
            min-height: 560px;
            overflow: hidden;
        }

        .carbon_content-wrapper .bg-img {
            position: absolute;
            overflow: hidden;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .carbon_content-wrapper .bg-img img {
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            min-width: 100%;
            min-height: 100%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: right;
        }

        .carbon_content-wrapper .title {
            z-index: 1000;
            margin: 0 auto;
            padding: 0 1.25em;
            width: 100%;
            text-align: center;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
        }

        .carbon_content-wrapper .title h1 {
            padding: 0 0 0.2em;
            color: #fff;
            font-weight: 800;
            font-size: 3.25em;
            margin: 0 auto;
        }

        .carbon_content-wrapper .title p {
            color: #fff;
            padding: 0 0 0.6em;
            font-weight: 300;
            font-size: 0.85em;
            margin: 0 auto;
        }

        .carbon_content-wrapper .title h1 {
            line-height: 1.4;
        }

        .carbon_content-wrapper .title p.subline {
            line-height: 1.95;
            margin-top: 20px;
        }

        .carbon_content-wrapper .title p.subline {
            font-size: 1.75em;
        }

        /* Side Effect Transitions */
        .carbon_content-wrapper .intro-effect-side:not(.notrans) .bg-img::before,
        .carbon_content-wrapper .intro-effect-side:not(.notrans) .title {
            -webkit-transition-property: -webkit-transform;
            transition-property: transform;
        }

        .carbon_content-wrapper .intro-effect-side:not(.notrans) .bg-img::after {
            -webkit-transition-property: top, left, bottom, right, background-color;
            transition-property: top, left, bottom, right, background-color;
        }

        .carbon_content-wrapper .intro-effect-side:not(.notrans) .header p {
            -webkit-transition-property: -webkit-transform, opacity;
            transition-property: transform, opacity;
        }

        .carbon_content-wrapper .intro-effect-side:not(.notrans) .content > div {
            -webkit-transition-property: opacity;
            transition-property: opacity;
        }

        .carbon_content-wrapper .intro-effect-side:not(.notrans) .bg-img::before,
        .carbon_content-wrapper .intro-effect-side:not(.notrans) .bg-img::after,
        .carbon_content-wrapper .intro-effect-side:not(.notrans) .title,
        .carbon_content-wrapper .intro-effect-side:not(.notrans) .header p,
        .carbon_content-wrapper .intro-effect-side:not(.notrans) .content > div {
            -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
            transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
            -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
        }

        .carbon_content-wrapper .intro-effect-side .bg-img::before,
        .carbon_content-wrapper .intro-effect-side .bg-img::after {
            content: '';
            position: absolute;
            z-index: 100;
        }

        .carbon_content-wrapper .intro-effect-side .bg-img::before {
            background: #fff;
            top: 0;
            left: 0;
            width: 60%;
            height: 100%;
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
        }

        .carbon_content-wrapper .intro-effect-side.modify .bg-img::before {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }

        .carbon_content-wrapper .intro-effect-side .bg-img::after {
            border: 80px solid #fff;
            top: -80px;
            right: -80px;
            bottom: -80px;
            left: -80px;
            background-color: rgba(255, 255, 255, 0.5);
        }

        .carbon_content-wrapper .intro-effect-side.modify .bg-img::after {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(255, 255, 255, 0);
        }

        .carbon_content-wrapper .intro-effect-side .title {
            text-align: right;
            left: 0;
            padding: 0 3em 0 2em;
            width: 60%;
            -webkit-transform: translateX(33.3%) translateY(-50%);
            transform: translateX(33.3%) translateY(-50%);
        }

        .carbon_content-wrapper .intro-effect-side.modify .title {
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .carbon_content-wrapper .intro-effect-side .header h1 {
            font-family: 'Lora', serif;
            font-style: italic;
            font-weight: 400;
            padding: 0 0.25em 0.15em 0.5em;
            color: #516165;
            /* text-shadow: 0 1px 8px rgba(0,0,0,0.2); */
        }

        .carbon_content-wrapper .intro-effect-side.modify .header h1 {
            color: #516165;
            text-shadow: none;
        }

        .carbon_content-wrapper .intro-effect-side .header p {
            opacity: 0;
            color: rgba(255,255,240,0.95);
            -webkit-transform: translateY(100px);
            transform: translateY(100px);
            text-shadow: 0 1px 4px rgba(0,0,0,0.1);
        }

        .carbon_content-wrapper .intro-effect-side.modify .header p {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
            color: #7b8d92;
            text-shadow: none;
        }

        .carbon_content-wrapper .article-container > div {
            opacity: 0;
        }

        .carbon_content-wrapper .intro-effect-side.modify .article-container > div {
            opacity: 1;
        }

        .carbon_content-wrapper .trigger {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 40px;
            font-family: monospace;
            font-size: 0.9rem;
            cursor: pointer;
            z-index: 200;
            transition: opacity 0.4s;
            pointer-events: auto;
        }

        .carbon_content-wrapper .intro-effect-side.modify .trigger {
            opacity: 0;
            pointer-events: none;
        }

        /* Delays */
        .carbon_content-wrapper .intro-effect-side:not(.notrans) .title,
        .carbon_content-wrapper .intro-effect-side:not(.notrans) .bg-img::before,
        .carbon_content-wrapper .intro-effect-side:not(.notrans) .bg-img::after {
            -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
        }

        .carbon_content-wrapper .intro-effect-side.modify:not(.notrans) .title,
        .carbon_content-wrapper .intro-effect-side.modify:not(.notrans) .bg-img::before,
        .carbon_content-wrapper .intro-effect-side.modify:not(.notrans) .bg-img::after {
            -webkit-transition-delay: 0s;
            transition-delay: 0s;
        }

        .carbon_content-wrapper .intro-effect-side.modify:not(.notrans) .header p:nth-last-child(2) {
            -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
        }

        .carbon_content-wrapper .intro-effect-side.modify:not(.notrans) .header p:last-child {
            -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
        }

        .carbon_content-wrapper .intro-effect-side.modify:not(.notrans) .content > div {
            -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
        }

        /* Responsive */
        @media screen and (max-width: 47em) {
            .carbon_content-wrapper .title, 
            .carbon_content-wrapper .article-container {
                font-size: 70%;
            }
            .carbon_content-wrapper .title {
                top: 80% !important;
            }
            .carbon_content-wrapper .intro-effect-side .title {
                width: 100%;
                padding: 0 1em;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
            }
            .carbon_content-wrapper .intro-effect-side.modify .bg-img::before {
                -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
            }
            .carbon_content-wrapper .intro-effect-side .bg-img::after {
                border-left-width: 0px;
                border-right-width: 0px;
                right: 0px;
                left: 0px;
                background: rgba(255,255,255,0.1);
            }
            .carbon_content-wrapper .intro-effect-side.modify .bg-img::after {
                background: rgba(255,255,255,0.8);
            }
        }

        .carbon_content-wrapper #ant_canvas {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
        }

        .carbon_content-wrapper .manual {
            position: absolute;
            z-index: 99999;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px;
            font-size: 12px;
            font-family: arial;
            color: #999;
            bottom: 0;
            pointer-events: none;
        }

        /* Base highlight */
        .carbon_content-wrapper .title .highlight {
            display: inline;
            padding: 1em 2em;
            color: #222;

            box-decoration-break: clone;
            -webkit-box-decoration-break: clone;

            background-repeat: no-repeat;

            background-image:
                /* center strip */
                linear-gradient(#fff, #fff),

                /* left tilted edge */
                linear-gradient(
                100deg,
                transparent 20%,
                #fff 21%
                ),

                /* right tilted edge */
                linear-gradient(
                1000deg,
                transparent 20%,
                #fff 21%
                );

            background-size:
            calc(100% - 1.99em) 100%,
            1.2em 100%,
            1em 100%;

            background-position:
                center,
                left center,
                right center;
        }