        :root {
            --primary-yellow: #FBE555;
            --finance-green: #007F5C;
            --cream-bg: #F7F4EA;
            --black: #111111;
            --white: #FFFFFF;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'PT Sans Narrow', sans-serif;
            background-color: var(--cream-bg);
            color: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography Presets */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            text-transform: uppercase;
            line-height: 0.85;
            letter-spacing: -1px;
        }

        p {
            font-weight: 400;
            font-size: 1.3rem;
            line-height: 1.4;
        }

        .label-mono {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            color: var(--finance-green);
            margin-bottom: 10px;
            display: inline-block;
        }

        /* App Layout Base Sheets */
        .magazine-sheet {
            display: none;
            margin-top: 90px;
            width: 100%;
        }

        .magazine-sheet.active-sheet {
            display: block;
        }

        /* Top Masthead Architecture */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background-color: var(--white);
            border-bottom: 2px solid var(--black);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            z-index: 1000;
        }

        .masthead-logo img {
            height: 210px;
            width: auto;
            object-fit: contain;
            cursor: pointer;
        }

        .editorial-nav-links {
            display: flex;
            gap: 40px;
        }

        .editorial-nav-links a {
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--black);
            position: relative;
            cursor: pointer;
        }

        .editorial-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--finance-green);
            transition: width 0.25s ease;
        }

        .editorial-nav-links a:hover::after, .editorial-nav-links a.active-tab::after {
            width: 100%;
        }

        /* Responsible Hamburger Infrastructure */
        .editorial-hamburger-trigger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1010;
        }

        .editorial-hamburger-trigger span {
            display: block;
            width: 26px;
            height: 3px;
            background-color: var(--black);
            transition: all 0.3s ease;
        }

        .editorial-mobile-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--primary-yellow);
            z-index: 1005;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 25px;
            transition: right 0.4s cubic-bezier(0.1, 1, 0.1, 1);
            border-left: 4px solid var(--black);
        }

        .editorial-mobile-drawer.drawer-open {
            right: 0;
        }

        .editorial-mobile-drawer a {
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--black);
            text-decoration: none;
            cursor: pointer;
        }

        /* Generic Premium Interface Buttons */
        .editorial-btn {
            display: inline-block;
            padding: 18px 36px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            text-decoration: none;
            background-color: transparent;
            color: var(--black);
            border: 2px solid var(--black);
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .editorial-btn:hover {
            background-color: var(--black);
            color: var(--white);
        }

        /* HOME PAGE GRIDS */
        /* Section 01: Hero Newspaper Layout */
        .hero-newspaper-grid {
            height: calc(100vh - 90px);
            display: grid;
            grid-template-columns: 1fr 7fr 4fr;
            background-color: var(--cream-bg);
            border-bottom: 2px solid var(--black);
            position: relative;
        }

        .hero-left-sticky {
            border-right: 2px solid var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .rotated-est-stamp {
            transform: rotate(-90deg);
            white-space: nowrap;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--finance-green);
        }

        .hero-center-massive {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        .hero-center-massive h1 {
            font-size: 7.5rem;
            margin-top: 20px;
        }

        .hero-right-side {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            border-left: 2px solid var(--black);
            background-color: var(--white);
        }

        .clipped-polygon-portrait {
            width: 100%;
            height: 90%;
            background-image: url('https://i.pinimg.com/736x/85/35/45/8535450d6d82042fe19fd018e5773746.jpg');
            background-size: cover;
            background-position: center;
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
        }

        .bg-outline-circle-decor {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px dashed rgba(0, 127, 92, 0.2);
            border-radius: 50%;
            top: 10%;
            right: 5%;
            pointer-events: none;
        }

        /* Section 02: Manifesto Layout */
        .manifesto-newspaper-grid {
            background-color: var(--white);
            padding: 120px 40px;
            display: grid;
            grid-template-columns: 2fr 7fr 3fr;
            gap: 40px;
            border-bottom: 2px solid var(--black);
        }

        /* Section 03: Scrolling Financial Wall */
        .scrolling-financial-wall {
            background-color: var(--primary-yellow);
            display: grid;
            grid-template-columns: 4fr 8fr;
            border-bottom: 2px solid var(--black);
        }

        .wall-left-sticky {
            position: sticky;
            top: 90px;
            height: calc(100vh - 90px);
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-right: 2px solid var(--black);
        }

        .wall-right-stack {
            display: flex;
            flex-direction: column;
        }

        .wall-article-block {
            padding: 60px;
            border-bottom: 2px solid var(--black);
            background-color: var(--white);
        }
        .wall-article-block:nth-child(even) {
            background-color: var(--cream-bg);
        }

        .wall-article-block .num {
            font-size: 3rem;
            font-weight: 700;
            color: var(--finance-green);
        }

        /* Section 04: Giant Image + Floating Story */
        .giant-image-story-sec {
            background-color: var(--white);
            position: relative;
            border-bottom: 2px solid var(--black);
        }

        .giant-image-sticky-box {
            position: sticky;
            top: 90px;
            height: 70vh;
            background-image: url('https://i.pinimg.com/736x/0f/0b/2b/0f0b2bc7e15295b63744dee9de2862f0.jpg');
            background-size: cover;
            background-position: center;
            border-bottom: 2px solid var(--black);
        }

        .floating-scrolling-stories {
            position: relative;
            padding: 80px 40px;
            max-width: 700px;
            margin-left: auto;
            display: flex;
            flex-direction: column;
            gap: 60px;
            z-index: 2;
        }

        .story-scrolling-card {
            background-color: var(--white);
            padding: 40px;
            border: 2px solid var(--black);
        }

        /* Section 05: Financial Report Carousel */
        .carousel-track-container {
            background-color: var(--finance-green);
            color: var(--white);
            padding: 100px 0;
            overflow-x: auto;
            border-bottom: 2px solid var(--black);
        }

        .carousel-slider-row {
            display: flex;
            gap: 30px;
            padding: 0 40px;
            width: max-content;
        }

        .carousel-oversized-card {
            background-color: var(--white);
            color: var(--black);
            width: 360px;
            height: 440px;
            padding: 40px;
            border: 3px solid var(--black);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .carousel-oversized-card .label {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--finance-green);
        }

        .carousel-oversized-card h3 {
            font-size: 2.8rem;
        }

        /* Section 06: Split Typography Experience */
        .split-typography-sec {
            background-color: var(--white);
            border-bottom: 2px solid var(--black);
            position: relative;
        }

        .split-halves-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 50vh;
        }

        .split-half-pane {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9vw;
            font-weight: 700;
        }

        .split-half-pane.left-pane {
            background-color: var(--cream-bg);
            border-right: 2px solid var(--black);
        }

        .crossing-centered-quote {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--primary-yellow);
            border: 2px solid var(--black);
            padding: 30px 50px;
            text-align: center;
            max-width: 600px;
            font-size: 1.8rem;
            font-weight: 700;
        }

        /* Section 07: Data Archive */
        .data-archive-sec {
            background-color: var(--black);
            color: var(--white);
            padding: 120px 40px;
            border-bottom: 2px solid var(--black);
        }

        .data-archive-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .data-stat-giant-node .huge-metric {
            font-size: 7.5rem;
            color: var(--primary-yellow);
            line-height: 1;
            margin-bottom: 15px;
        }

        /* Section 08: Horizontal Image Strip */
        .horizontal-strip-sec {
            background-color: var(--white);
            padding: 80px 0;
            overflow-x: auto;
            border-bottom: 2px solid var(--black);
        }

        .gallery-strip-wrapper {
            display: flex;
            gap: 40px;
            padding: 0 40px;
            width: max-content;
        }

        .gallery-strip-item {
            width: 400px;
        }

        .gallery-strip-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border: 2px solid var(--black);
            margin-bottom: 15px;
        }

        /* Section 09: Finance Principles */
        .principles-stack-container {
            background-color: var(--cream-bg);
        }

        .viewport-principle-row {
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 2px solid var(--black);
        }

        .viewport-principle-row:nth-child(even) {
            grid-template-columns: 1fr 1fr;
        }
        .viewport-principle-row:nth-child(even) .principle-img-side {
            order: 2;
        }

        .principle-img-side {
            background-size: cover;
            background-position: center;
        }

        .principle-text-side {
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--white);
        }

        .principle-text-side h2 {
            font-size: 4rem;
            margin-bottom: 25px;
        }

        /* Section 10: Newsroom */
        .newsroom-sec {
            background-color: var(--white);
            padding: 100px 40px;
            border-bottom: 2px solid var(--black);
        }

        .newsroom-featured-block {
            display: grid;
            grid-template-columns: 7fr 5fr;
            border: 2px solid var(--black);
            margin-bottom: 60px;
            background-color: var(--cream-bg);
        }

        .newsroom-featured-block img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .newsroom-grid-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .news-magazine-card {
            border-bottom: 1px dashed var(--black);
            padding-bottom: 30px;
        }

        .news-magazine-card h3 {
            font-size: 2rem;
            margin-top: 15px;
            margin-bottom: 10px;
        }

        /* Section 11: Financial Timeline */
        .timeline-green-sec {
            background-color: var(--finance-green);
            color: var(--white);
            padding: 120px 40px;
            border-bottom: 2px solid var(--black);
        }

        .timeline-row-flex {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .timeline-step-node {
            border-top: 3px solid var(--white);
            padding-top: 25px;
        }

        .timeline-step-node .year-label {
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--primary-yellow);
        }

        /* Section 12: Fullscreen Quote Break */
        .fullscreen-quote-break {
            height: 100vh;
            background-color: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
            border-bottom: 2px solid var(--black);
        }

        .outlined-quote-typography {
            font-size: 8vw;
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 2px var(--white);
            line-height: 0.9;
        }

        /* Section 13: Subscribe Lab */
        .subscribe-lab-sec {
            background-color: var(--primary-yellow);
            padding: 100px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            border-bottom: 2px solid var(--black);
        }

        .oversized-form-panel {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .oversized-form-panel input {
            width: 100%;
            padding: 20px;
            font-size: 1.3rem;
            border: 2px solid var(--black);
            background-color: var(--white);
            font-family: inherit;
        }

        /* Section 14: Experimental Image Collage */
        .experimental-collage-sec {
            background-color: var(--white);
            padding: 120px 40px;
            border-bottom: 2px solid var(--black);
        }

        .collage-scatter-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .collage-photo-block img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border: 2px solid var(--black);
        }

        .collage-photo-block.offset-down {
            transform: translateY(40px);
        }

        /* Section 15: Final Impact Section */
        .final-impact-sec {
            background-color: var(--finance-green);
            color: var(--white);
            padding: 140px 40px;
            text-align: center;
            border-bottom: 2px solid var(--black);
        }

        .final-impact-sec h2 {
            font-size: 6.5rem;
        }

        /* ABOUT PAGE MODULES */
        .about-hero-layout {
            display: grid;
            grid-template-columns: 5fr 7fr;
            background-color: var(--white);
            height: 80vh;
            border-bottom: 2px solid var(--black);
        }

        .about-hero-layout .portrait-side {
            background-image: url('https://i.pinimg.com/736x/55/b7/10/55b7108af8548660bc73c1c0c137b749.jpg');
            background-size: cover;
            background-position: center;
        }

        .about-hero-layout .typography-side {
            padding: 80px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 6rem;
            border-left: 2px solid var(--black);
        }

        /* SERVICES PAGE MODULES */
        .services-wall-hero {
            background-color: var(--black);
            color: var(--white);
            padding: 120px 40px;
            text-align: center;
            border-bottom: 2px solid var(--black);
        }

        .services-asymmetric-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background-color: var(--black);
            border-bottom: 2px solid var(--black);
        }

        .service-matrix-node {
            background-color: var(--white);
            padding: 50px;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .service-matrix-node:nth-child(even) {
            background-color: var(--cream-bg);
        }

        /* BLOG PAGE MODULES */
        .blog-newspaper-wrapper {
            padding: 80px 40px;
            background-color: var(--white);
            border-bottom: 2px solid var(--black);
        }

        /* BLOG DETAILS PAGE MODULES */
        .blog-details-reading-pane {
            max-width: 900px;
            margin: 60px auto;
            background-color: var(--white);
            padding: 60px;
            border: 2px solid var(--black);
        }

        .blog-details-reading-pane p::first-letter {
            font-size: 4.5rem;
            font-weight: 700;
            float: left;
            line-height: 0.8;
            padding-right: 12px;
            color: var(--finance-green);
        }

        .pull-quote-block {
            font-size: 2rem;
            font-weight: 700;
            color: var(--finance-green);
            border-left: 6px solid var(--primary-yellow);
            padding-left: 25px;
            margin: 40px 0;
            line-height: 1.2;
        }

        /* CONTACT PAGE MODULES */
        .contact-hero-billboard {
            padding: 100px 40px;
            background-color: var(--white);
            border-bottom: 2px solid var(--black);
            font-size: 5rem;
        }

        /* REGULATORY STANDARDS & PRIVACY LEGAL PANEL */
        .legal-document-layout {
            max-width: 950px;
            margin: 80px auto;
            background-color: var(--white);
            padding: 60px;
            border: 2px solid var(--black);
        }

        .legal-document-layout h1 {
            font-size: 4rem;
            margin-bottom: 30px;
        }

        .legal-document-layout h3 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 15px;
            color: var(--finance-green);
        }

        /* UNIQUE ULTRA EDITORIAL FOOTER ARCHITECTURE */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 100px 40px 40px 40px;
            position: relative;
        }

        .footer-reveal-text-container {
            overflow: hidden;
            margin-bottom: 80px;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding-bottom: 20px;
        }

        .footer-ultra-outlined-logo {
            font-size: 13.5vw;
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
            white-space: nowrap;
            transition: transform 0.25s cubic-bezier(0.1, 1, 0.1, 1);
            will-change: transform;
        }

        .footer-columns-matrix {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .footer-matrix-col h4 {
            font-size: 1.3rem;
            color: var(--primary-yellow);
            margin-bottom: 30px;
        }

        .footer-matrix-col ul {
            list-style: none;
        }

        .footer-matrix-col ul li {
            margin-bottom: 14px;
        }

        .footer-matrix-col ul li a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .footer-matrix-col ul li a:hover {
            color: var(--white);
        }

        .footer-bottom-baseline {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            color: rgba(255,255,255,0.4);
        }

        /* RESPONSIVE LAYOUT MATRIX RULES */
        @media (max-width: 1024px) {
            .editorial-nav-links { display: none; }
            .editorial-hamburger-trigger { display: flex; }

            .hero-newspaper-grid {
                grid-template-columns: 1fr;
                height: auto;
            }
            .hero-left-sticky { display: none; }
            .hero-right-side { min-height: 350px; border-left: none; border-top: 2px solid var(--black); }
            .hero-center-massive h1 { font-size: 4.5rem; }

            .manifesto-newspaper-grid, .scrolling-financial-wall, .split-halves-row,
            .data-archive-layout, .viewport-principle-row, .newsroom-featured-block,
            .newsroom-grid-cards, .timeline-row-flex, .subscribe-lab-sec,
            .collage-scatter-container, .about-hero-layout, .services-asymmetric-matrix,
            .footer-columns-matrix {
                grid-template-columns: 1fr !important;
                gap: 35px;
            }

            .wall-left-sticky { position: relative; height: auto; border-right: none; border-bottom: 2px solid var(--black); }
            .split-half-pane { height: 200px; font-size: 4rem; }
            .crossing-centered-quote { position: relative; top: 0; left: 0; transform: none; margin: 20px auto; }
            .viewport-principle-row { height: auto; }
            .principle-img-side { min-height: 300px; }
            .about-hero-layout { height: auto; }
            .about-hero-layout .typography-side { font-size: 3.5rem; border-left: none; border-top: 2px solid var(--black); }
            .final-impact-sec h2 { font-size: 3.5rem; }
            .footer-bottom-baseline { flex-direction: column; gap: 20px; text-align: center; }
        }
