        /* -------------------------------------------------------------
           🎨 GLOBAL DESIGN SYSTEM & VARIABLES ARCHITECTURE
           ------------------------------------------------------------- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        .horizontal-scrolling-rail-system {
    overflow-x: auto;
    display: flex;
}

        :root {
            /* Palette Assignment */
            --olive-strategy: #898121;
            --pure-white: #FFFFFF;
            --editorial-magenta: #C539B4;
            --dust-rose: #9E7676;
            --deep-ink: #14130E;
            --editorial-beige: #FAF9F5;
            
            /* Typography Scale mapping Strichpunkt Sans alternatives fallback */
            --font-display: "Space Grotesk", "Cinzel", sans-serif;
            --font-body: "Plus Jakarta Sans", sans-serif;
            --transition-cinematic: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        html {
            scroll-behavior: smooth;
            background-color: var(--pure-white);
            color: var(--deep-ink);
            font-family: var(--font-body);
            -webkit-font-smoothing: antialiased;
        }

        body {
            overflow-x: hidden;
            width: 100%;
            background-color: var(--pure-white);
        }

        /* Architectural Empty Space Helper Utility class */
        .whitespace-breather {
            padding: 12rem 0;
        }

        /* -------------------------------------------------------------
           🌐 FLOATING EDITORIAL NAV SYSTEM (ALL PAGES)
           ------------------------------------------------------------- */
        .hub-floating-header {
            position: fixed;
            height: 100px;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2000;
            padding: 2.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-cinematic);
        }

        .hub-floating-header.scrolled-state {
            padding: 1.2rem 5%;
        }

.hub-editorial-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    top:3rem;

    text-decoration: none;
    cursor: pointer;

    position: relative;
    z-index: 50;
}

.hub-logo-image {
    height: 300px;
    width: auto;

    object-fit: contain;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        filter 0.35s ease;
}

.hub-editorial-logo:hover .hub-logo-image {
    transform: scale(1.04);
    opacity: 0.92;
}

@media (max-width: 768px) {

    .hub-logo-image {
        height: 90px;
    }
}

        .hub-nav-links-wrapper {
            display: flex;
            gap: 3.5rem;
            list-style: none;
        }

        .hub-nav-links-wrapper li a {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--deep-ink);
            text-decoration: none;
            cursor: pointer;
            position: relative;
            padding-bottom: 0.4rem;
            transition: var(--transition-fast);
        }

        .hub-nav-links-wrapper li a:hover {
            color: var(--editorial-magenta);
            letter-spacing: 0.18em;
        }

        .hub-nav-links-wrapper li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--editorial-magenta);
            transition: var(--transition-fast);
            transform: translateX(-50%);
        }

        .hub-nav-links-wrapper li a:hover::after {
            width: 100%;
        }

        .hub-nav-links-wrapper li a.active-route-node {
            color: var(--olive-strategy);
            font-weight: 700;
        }

        /* Mobile Layout Menu Button Trigger */
        .hub-menu-burger-trigger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 8px;
        }

        .hub-menu-burger-trigger span {
            display: block;
            width: 26px;
            height: 1px;
            background: var(--deep-ink);
            transition: var(--transition-fast);
        }

        /* -------------------------------------------------------------
           📄 MULTIPAGE APPLICATION TRANSITION CANVAS CONTAINER
           ------------------------------------------------------------- */
        .page-view-segment {
            display: none;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .page-view-segment.active-segment {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* -------------------------------------------------------------
           🏠 HOME PAGE ENGINE STRUCTURAL COMPOSITION
           ------------------------------------------------------------- */
        
        /* HERO SECTION — “THE FUTURE OF SYSTEMS” */
        .hero-cinematic-stage {
            height: 120vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0 5%;
        }

        .hero-fixed-parallax-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 140%;
            background-image: url('https://i.pinimg.com/736x/4f/7b/e4/4f7be4b4374b125058518a3516c339a1.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
            z-index: 1;
            will-change: transform;
        }

        .hero-editorial-label {
            position: absolute;
            top: 25vh;
            left: 5%;
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--olive-strategy);
            z-index: 10;
        }

        .hero-layered-typography-stack {
            position: relative;
            z-index: 5;
            display: flex;
            flex-direction: column;
            gap: 4rem;
            pointer-events: none;
            width: 50%;
        }

        .hero-layered-typography-stack h1 {
            font-family: var(--font-display);
            font-size: clamp(4rem, 12vw, 9rem);
            line-height: 0.8;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            color: var(--deep-ink);
            will-change: transform;
        }

        .hero-layered-typography-stack .word-smith {
            padding-left: 10vw;
            color: var(--editorial-magenta);
            font-weight: 600;
        }

        .hero-layered-typography-stack .word-hub {
            padding-left: 22vw;
            color: var(--olive-strategy);
        }

        .hero-floating-transparent-block {
            position: absolute;
            right: 8%;            width: 360px;
            border: 1px solid rgba(20, 19, 14, 0.05);
            padding: 3.5rem;
            z-index: 10;
        }

        .hero-floating-transparent-block p {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 10rem;
            font-weight: 300;
            color: rgba(20, 19, 14, 0.8);
        }

        /* Hero Layered Composite Image Layout Grid Elements */
        .hero-composite-img-center {
            position: absolute;
            right: 55%;
            top: -8vh;
            width: 25vw;
            height: 60vh;
            background-image: url('l.png');
            background-size: cover;
            background-position: center;
            opacity: 0.6;
            z-index: 2;
            will-change: transform;
        }

        .hero-composite-img-floating {
            position: absolute;
            right: -5vw;
            bottom: 10vh;
            width: 28vw;
            height: 85vh;
            background-image: url('f.png');
            background-size: cover;
            background-position: center;
            z-index: 4;
            will-change: transform;
        }

        .hero-composite-strip-side {
            position: absolute;
            left: 45vw;
            bottom: -5vh;
            width: 6vw;
            height: 45vh;
            background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=600&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 3;
            filter: grayscale(100%);
            will-change: transform;
        }

        .hero-scrolling-quotes-ticker {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--deep-ink);
            color: var(--pure-white);
            padding: 1.5rem 0;
            overflow: hidden;
            z-index: 20;
        }

        .ticker-rail-track {
            display: flex;
            white-space: nowrap;
            gap: 6rem;
            animation: tickerMovementLinear 35s linear infinite;
            font-family: var(--font-display);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.2em;
        }

        @keyframes tickerMovementLinear {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* SECTION 2 — “THE STRATEGY FRAGMENTS” */
        .strategy-fragments-container {
            background-color: var(--pure-white);
            padding: 15rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
        }

        .fragments-left-visual-wrapper {
            width: 45%;
            position: relative;
        }

        .fragments-giant-image {
            width: 100%;
            height: 105vh;
            background-image: url('https://i.pinimg.com/736x/a9/67/27/a96727d343d319c458c757cef37a1379.jpg');
            background-position: center;
            will-change: transform;
        }

        .fragments-right-content-stream {
            width: 45%;
            display: flex;
            flex-direction: column;
            gap: 10rem;
            padding-top: 15vh;
        }

        .editorial-fragment-block {
            will-change: transform;
        }

        .editorial-fragment-block h3 {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 300;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
            color: var(--olive-strategy);
        }

        .editorial-fragment-block blockquote {
            font-family: var(--font-display);
            font-style: italic;
            font-size: 1.25rem;
            color: var(--editorial-magenta);
            margin-bottom: 1.5rem;
            line-height: 1.5;
            border-left: 2px solid var(--editorial-magenta);
            padding-left: 1.5rem;
        }

        .editorial-fragment-block p {
            font-size: 1rem;
            line-height: 1.8;
            color: rgba(20, 19, 14, 0.75);
            font-weight: 300;
            margin-bottom: 2rem;
        }

        .fragment-thin-divider-line {
            height: 1px;
            width: 100%;
            background: rgba(137, 129, 33, 0.15);
        }

        /* SECTION 3 — “THE GROWTH WALL” */
        .growth-wall-sticky-wrapper {
            background-color: var(--olive-strategy);
            color: var(--pure-white);
            display: flex;
            position: relative;
            padding: 14rem 5%;
        }

        .growth-wall-left-sticky-box {
            position: sticky;
            top: 20vh;
            width: 35%;
            height: fit-content;
        }

        .growth-wall-left-sticky-box h2 {
            font-family: var(--font-display);
            font-weight: 300;
            font-size: clamp(3rem, 6vw, 5.5rem);
            line-height: 0.95;
            text-transform: uppercase;
            letter-spacing: -0.04em;
        }

        .growth-wall-right-scrolling-narrative {
            width: 55%;
            margin-left: auto;
            display: flex;
            flex-direction: column;
            gap: 12rem;
        }

        .growth-narrative-node {
            max-width: 580px;
            position: relative;
        }

        .growth-narrative-node p {
            font-size: 1.4rem;
            font-weight: 300;
            line-height: 1.8;
            opacity: 0.95;
            margin-bottom: 3rem;
        }

        .growth-detached-metric-badge {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--editorial-magenta);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .growth-floating-embedded-img {
            width: 100%;
            height: 40vh;
            background-size: cover;
            background-position: center;
            margin: 4rem 0;
            border-left: 3px solid var(--dust-rose);
        }

        .growth-tiny-business-note {
            font-family: var(--font-display);
            font-size: 0.75rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            opacity: 0.5;
        }

        /* SECTION 4 — “THE TOOL ARCHIVE” */
        .tool-archive-section-canvas {
            background-color: var(--pure-white);
            padding: 14rem 5%;
        }

        .tool-archive-title-header {
            margin-bottom: 10rem;
            max-width: 700px;
        }

        .tool-archive-title-header h2 {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            margin-bottom: 2rem;
        }

        .asymmetric-modular-card-matrix {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            row-gap: 14rem;
            column-gap: 3rem;
        }

        .modular-archive-card {
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        .card-image-lens-box {
            width: 100%;
            overflow: hidden;
            position: relative;
            background-color: var(--editorial-beige);
            transition: var(--transition-cinematic);
        }

        .card-image-lens-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-cinematic);
            display: block;
        }

        .card-olive-overlay-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(137, 129, 33, 0.75);
            opacity: 0;
            transition: var(--transition-cinematic);
            z-index: 2;
        }

        .modular-archive-card h4 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            text-transform: uppercase;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
            transition: var(--transition-cinematic);
        }

        .modular-archive-card p {
            font-size: 0.9rem;
            color: rgba(20, 19, 14, 0.6);
            font-weight: 300;
        }

        /* Dynamic Sizes Map Strategy Configurations */
        .card-size-tall { grid-column: 1 / span 5; }
        .card-size-tall .card-image-lens-box { height: 75vh; }

        .card-size-wide { grid-column: 7 / span 6; transform: translateY(80px); }
        .card-size-wide .card-image-lens-box { height: 48vh; }

        .card-size-square { grid-column: 2 / span 4; transform: translateY(-40px); }
        .card-size-square .card-image-lens-box { height: 45vh; }

        .card-size-cinematic-alt { grid-column: 7 / span 5; }
        .card-size-cinematic-alt .card-image-lens-box { height: 55vh; }

        /* Hover Mechanics Configurations */
        .modular-archive-card:hover .card-image-lens-box img {
            transform: scale(1.08);
        }

        .modular-archive-card:hover .card-olive-overlay-mask {
            opacity: 1;
        }

        .modular-archive-card:hover h4 {
            color: var(--editorial-magenta);
            transform: translateY(-5px);
        }

        /* SECTION 5 — “HORIZONTAL STORY STRIP” */
        .horizontal-story-strip-viewport {
            background-color: var(--dust-rose);
            color: var(--pure-white);
            width: 100%;
            overflow: hidden;
            padding: 12rem 0;
            position: relative;
        }

        .horizontal-scrolling-rail-system {
            display: flex;
            width: 480vw;
            gap: 10vw;
            padding-left: 5%;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: transform;
        }

        .horizontal-editorial-panel {
            width: 55vw;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .horizontal-panel-image-frame {
            width: 100%;
            height: 45vh;
            background-size: cover;
            background-position: center;
            margin-bottom: 3rem;
            position: relative;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .horizontal-editorial-panel h3 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 6rem);
            font-weight: 300;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -0.04em;
            margin-bottom: 1.5rem;
        }

        .horizontal-panel-quote {
            font-family: var(--font-display);
            font-style: italic;
            font-size: 1.3rem;
            max-width: 500px;
            color: var(--deep-ink);
            background: rgba(255, 255, 255, 0.9);
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .horizontal-panel-thin-graphics {
            height: 1px;
            width: 100%;
            background: rgba(255, 255, 255, 0.3);
            position: relative;
            margin-top: 2rem;
        }

        .horizontal-panel-thin-graphics::before {
            content: '';
            position: absolute;
            left: 0;
            top: -5px;
            width: 10px;
            height: 10px;
            background: var(--pure-white);
            border-radius: 50%;
        }

        .horizontal-strip-navigation-deck {
            padding: 2rem 5%;
            background-color: var(--dust-rose);
            display: flex;
            gap: 2.5rem;
        }

        .strip-deck-action-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--pure-white);
            font-family: var(--font-display);
            font-size: 0.8rem;
            text-transform: uppercase;
            padding: 1rem 2.5rem;
            cursor: pointer;
            letter-spacing: 0.1em;
            transition: var(--transition-fast);
        }

        .strip-deck-action-btn:hover {
            border-color: var(--pure-white);
            background: var(--pure-white);
            color: var(--dust-rose);
        }

        /* SECTION 6 — “IMMERSIVE PARALLAX IMAGE” */
        .immersive-parallax-fixed-window {
            height: 90vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .immersive-parallax-fixed-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1455849318743-b2233052fcff?auto=format&fit=crop&w=1800&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            filter: contrast(1.1) brightness(0.9);
            opacity: 0.15;
            z-index: 1;
        }

        .immersive-parallax-outlined-text {
            font-family: var(--font-display);
            font-size: clamp(5rem, 16vw, 14rem);
            font-weight: 700;
            text-transform: uppercase;
            color: transparent;
            -webkit-text-stroke: 1px rgba(20, 19, 14, 0.25);
            line-height: 1;
            z-index: 2;
            letter-spacing: 0.08em;
            user-select: none;
        }

        .immersive-parallax-foreground-floating-box {
            position: absolute;
            bottom: 10%;
            left: 8%;
            max-width: 420px;
            z-index: 5;
            background: var(--pure-white);
            padding: 3rem;
            border-left: 4px solid var(--olive-strategy);
        }

        /* SECTION 7 — “THE INTELLIGENCE GRID” */
        .intelligence-grid-container {
            background-color: var(--pure-white);
            padding: 15rem 5%;
        }

        .intelligence-editorial-layout-matrix {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 3.5rem;
            align-items: center;
        }

        .intel-matrix-node-img-giant {
            grid-column: 1 / span 6;
            height: 75vh;
            background-image: url('https://images.unsplash.com/photo-1542744094-3a31f103e35f?auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
        }

        .intel-matrix-node-typography-oversized {
            grid-column: 8 / span 5;
        }

        .intel-matrix-node-typography-oversized h2 {
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 300;
            text-transform: uppercase;
            line-height: 1;
            color: var(--editorial-magenta);
            margin-bottom: 2rem;
        }

        .intel-matrix-node-quote-block {
            grid-column: 2 / span 5;
            font-family: var(--font-display);
            font-size: 1.6rem;
            line-height: 1.6;
            color: var(--olive-strategy);
            border-top: 1px solid var(--deep-ink);
            padding-top: 2rem;
            margin-top: 4rem;
        }

        /* SECTION 8 — “SUBSCRIBE EXPERIENCE” */
        .subscribe-experience-wrapper {
            background-color: var(--editorial-beige);
            padding: 12rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .subscribe-left-storytelling-image-box {
            width: 45%;
            height: 80vh;
            background-image: url('https://images.unsplash.com/photo-1431540015161-0bf868a2d407?auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
        }

        .subscribe-right-form-architecture {
            width: 45%;
        }

        .subscribe-right-form-architecture p {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 4rem;
            color: rgba(20, 19, 14, 0.7);
        }

        .cinematic-form-field {
            position: relative;
            margin-bottom: 3.5rem;
        }

        .cinematic-line-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(20, 19, 14, 0.2);
            padding: 1rem 0.5rem;
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 300;
            outline: none;
            color: var(--deep-ink);
            transition: var(--transition-fast);
        }

        .cinematic-line-input:focus {
            border-bottom-color: var(--editorial-magenta);
        }

        .cinematic-floating-label {
            position: absolute;
            left: 0.5rem;
            top: 1rem;
            font-family: var(--font-display);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(20, 19, 14, 0.4);
            pointer-events: none;
            transition: var(--transition-fast);
        }

        .cinematic-line-input:focus ~ .cinematic-floating-label,
        .cinematic-line-input:not(:placeholder-shown) ~ .cinematic-floating-label {
            top: -1.2rem;
            font-size: 0.75rem;
            color: var(--editorial-magenta);
        }

        .editorial-action-submit-btn {
            background-color: var(--editorial-magenta);
            color: var(--pure-white);
            font-family: var(--font-display);
            font-weight: 400;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            padding: 1.2rem 3rem;
            border: none;
            cursor: pointer;
            transition: var(--transition-fast);
            width: 100%;
        }

        .editorial-action-submit-btn:hover {
            background-color: var(--olive-strategy);
        }

        /* -------------------------------------------------------------
           🌐 DETACHED EDITORIAL FOOTER SYSTEM (NOT CENTERED)
           ------------------------------------------------------------- */
        .hub-editorial-footer-canvas {
            background-color: var(--pure-white);
            color: var(--olive-strategy);
            padding: 10rem 5% 4rem 5%;
            border-top: 1px solid rgba(137, 129, 33, 0.1);
        }

        .footer-asymmetric-columns-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 4rem;
            margin-bottom: 6rem;
        }

        .footer-oversized-typography-fragment {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            line-height: 0.9;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            color: rgba(20, 19, 14, 0.05);
            max-width: 400px;
        }

        .footer-links-column-node h5 {
            font-family: var(--font-display);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            margin-bottom: 1.5rem;
            color: var(--deep-ink);
        }

        .footer-links-column-node ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links-column-node ul li a {
            color: var(--olive-strategy);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 300;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .footer-links-column-node ul li a:hover {
            color: var(--editorial-magenta);
            padding-left: 4px;
        }

        .footer-regulatory-meta-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: rgba(20, 19, 14, 0.4);
            font-weight: 300;
            border-top: 1px solid var(--editorial-beige);
            padding-top: 2.5rem;
            flex-wrap: wrap;
            gap: 2rem;
        }

        /* -------------------------------------------------------------
           💡 VIEW SECTOR COUPLING: INNOVATION PAGE
           ------------------------------------------------------------- */
        .interior-magazine-hero-block {
            background-color: var(--editorial-beige);
            padding: 16rem 5% 8rem 5%;
            border-bottom: 1px solid rgba(20, 19, 14, 0.05);
                        color:#2b0326;

            position: relative;
        }

        .interior-magazine-hero-block h1 {
            font-family: var(--font-display);
            font-size: clamp(3.5rem, 8vw, 7.5rem);
            font-weight: 300;
            text-transform: uppercase;
            line-height: 0.9;
            letter-spacing: -0.04em;
            color:#2b0326;
        }

        .interior-magazine-layout-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 4rem;
            padding: 12rem 5%;
            background-color: var(--pure-white);
        }

        /* -------------------------------------------------------------
           📊 INTERNAL REGULATORY MODAL OVERLAYS
           ------------------------------------------------------------- */
        .regulatory-system-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            z-index: 5000;
            display: none;
            overflow-y: auto;
            padding: 8rem 5%;
        }

        .regulatory-document-paper {
            max-width: 800px;
            margin: 0 auto;
            background: var(--pure-white);
            padding: 5rem;
            border: 1px solid rgba(20, 19, 14, 0.1);
            position: relative;
        }

        .regulatory-close-trigger-btn {
            position: absolute;
            top: 3rem;
            right: 3rem;
            background: transparent;
            border: 1px solid var(--deep-ink);
            padding: 0.6rem 1.5rem;
            font-family: var(--font-display);
            font-size: 0.75rem;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 0.1em;
            transition: var(--transition-fast);
        }

        .regulatory-close-trigger-btn:hover {
            background-color: var(--deep-ink);
            color: var(--pure-white);
        }

        /* -------------------------------------------------------------
           📱 RESPONSIVE MEDIA GRID RUNTIME SCALING OVERRIDES
           ------------------------------------------------------------- */
        @media (max-width: 1024px) {
            .hub-nav-links-wrapper {
                display: none;
            }

            .hub-nav-links-wrapper.drawer-visible {
                display: flex;
                position: fixed;
                top: 6rem;
                left: 0;
                width: 100%;
                background: var(--pure-white);
                flex-direction: column;
                padding: 4rem 5%;
                gap: 2.5rem;
                border-bottom: 1px solid var(--editorial-beige);
                z-index: 1900;
                box-shadow: 0 30px 60px rgba(0,0,0,0.02);
            }

            .hub-menu-burger-trigger {
                display: flex;
            }

            .hero-cinematic-stage {
                height: auto;
                padding: 12rem 5% 6rem 5%;
                flex-direction: column;
                align-items: flex-start;
                gap: 4rem;
            }

            .hero-layered-typography-stack {
                width: 100%;
            }

            .hero-floating-transparent-block {
                position: static;
                width: 100%;
                padding: 2rem;
            }

            .hero-composite-img-center,
            .hero-composite-img-floating,
            .hero-composite-strip-side {
                display: none; /* Strip off layout decorations on smaller device viewport frames */
            }

            .strategy-fragments-container {
                flex-direction: column;
                padding: 8rem 5%;
                gap: 4rem;
            }

            .fragments-left-visual-wrapper,
            .fragments-right-content-stream {
                width: 100%;
            }

            .fragments-giant-image {
                height: 50vh;
            }

            .fragments-right-content-stream {
                padding-top: 0;
            }

            .growth-wall-sticky-wrapper {
                flex-direction: column;
                gap: 5rem;
                padding: 8rem 5%;
            }

            .growth-wall-left-sticky-box {
                position: static;
                width: 100%;
            }

            .growth-wall-right-scrolling-narrative {
                width: 100%;
                gap: 6rem;
            }

            .asymmetric-modular-card-matrix {
                grid-template-columns: 1fr;
                row-gap: 6rem;
            }

            .modular-archive-card {
                grid-column: auto !important;
                transform: none !important;
            }

            .card-image-lens-box {
                height: 45vh !important;
            }

            .horizontal-story-strip-viewport {
                display: none; /* Multi-directional rails fall out of scope for handheld gestures */
            }

            .intelligence-editorial-layout-matrix {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .intel-matrix-node-img-giant,
            .intel-matrix-node-typography-oversized,
            .intel-matrix-node-quote-block {
                grid-column: auto !important;
            }

            .intel-matrix-node-img-giant {
                height: 45vh;
            }

            .subscribe-experience-wrapper {
                flex-direction: column;
                gap: 5rem;
                padding: 8rem 5%;
            }

            .subscribe-left-storytelling-image-box,
            .subscribe-right-form-architecture {
                width: 100%;
            }

            .subscribe-left-storytelling-image-box {
                height: 45vh;
            }

            .interior-magazine-layout-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
        }

        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f1115;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    padding: 60px 24px;
}

.horizontal-story-strip-viewport {
    width: 100%;
    overflow: hidden;
}

.horizontal-scrolling-rail-system {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 18px;

    scrollbar-width: none;
}

.horizontal-scrolling-rail-system::-webkit-scrollbar {
    display: none;
}

.horizontal-editorial-panel {
    min-width: 360px;
    max-width: 360px;
    background: #171a20;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.horizontal-editorial-panel:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.18);
}

.horizontal-panel-image-frame {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.horizontal-panel-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.1)
    );
}

.horizontal-panel-content {
    padding: 28px;
}

.horizontal-panel-index {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #8f98a3;
    margin-bottom: 14px;
}

.horizontal-panel-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.horizontal-panel-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #c8cdd4;
}

.horizontal-strip-navigation-deck {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 28px;
}

.strip-deck-action-btn {
    border: 1px solid rgba(255,255,255,0.12);
    background: #1d222b;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.strip-deck-action-btn:hover {
    background: #ffffff;
    color: #111111;
}

@media (max-width: 768px) {
    body {
        padding: 30px 16px;
    }

    .horizontal-editorial-panel {
        min-width: 88vw;
        max-width: 88vw;
    }

    .horizontal-panel-image-frame {
        height: 220px;
    }

    .horizontal-panel-content h3 {
        font-size: 22px;
    }
}

.page-view-segment {
    width: 100%;
    padding-bottom: 10rem;
    background: #f7f2ea;
}

.interior-magazine-hero-block {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 8rem;
    overflow: hidden;
}

.innovation-hero {
    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.45)
        ),
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80');

    background-size: cover;
    background-position: center;
}

.growth-hero {
    background: var(--olive-strategy);
}

.hero-editorial-content {
    position: relative;
    max-width: 760px;
    z-index: 2;
}

.hero-section-index {
    display: inline-block;
    margin-bottom: 2rem;

    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;

    color: var(--editorial-magenta);
    font-family: var(--font-display);
}

.light-index {
    color: rgba(255,255,255,0.7);
}

.interior-magazine-hero-block h1 {
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.95;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: var(--pure-white);
}

.light-title {
    color: var(--pure-white);
}

.hero-editorial-subtext {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 620px;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
}

.light-subtext {
    color: rgba(255,255,255,0.8);
}

.hero-long-copy {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255,255,255,0.82);
    max-width: 700px;
    font-weight: 300;
}

.light-copy {
    color: rgba(255,255,255,0.82);
}

.interior-magazine-layout-grid {
    width: min(1400px, 92%);
    margin: 8rem auto 0 auto;

    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
}

.editorial-text-column {
    grid-column: span 5;
}

.innovation-copy-block {
    grid-column: 1 / span 5;
}

.growth-copy-block {
    grid-column: 7 / span 5;
}

.editorial-label {
    display: inline-block;

    margin-bottom: 2rem;

    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    color: var(--olive-strategy);
}

.growth-label {
    color: var(--editorial-magenta);
}

.editorial-text-column h3 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 300;
    text-transform: uppercase;

    margin-bottom: 2rem;
    color: var(--olive-strategy);
}

.growth-title {
    color: var(--editorial-magenta);
}

.editorial-text-column p {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: rgba(20,19,14,0.76);
    font-weight: 300;
}

.editorial-image-column {
    border-radius: 2rem;
    min-height: 75vh;
    overflow: hidden;
}

.innovation-image-large {
    grid-column: 7 / span 6;

    background-image:
        url('https://images.unsplash.com/photo-1497215842964-222b430dc094?auto=format&fit=crop&w=1200&q=80');

    background-size: cover;
    background-position: center;
}

.growth-image-large {
    grid-column: 1 / span 5;

    background-image:
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80');

    background-size: cover;
    background-position: center;
}

.editorial-quote-panel {
    margin-top: 4rem;

    padding: 2rem;

    border-left: 2px solid var(--editorial-magenta);

    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;

    color: var(--olive-strategy);
}

.growth-quote {
    border-left-color: var(--olive-strategy);
    color: var(--editorial-magenta);
}

@media (max-width: 992px) {

    .interior-magazine-hero-block {
        padding: 5rem 2rem;
        min-height: auto;
    }

    .interior-magazine-layout-grid {
        grid-template-columns: 1fr;
    }

    .editorial-text-column,
    .editorial-image-column,
    .innovation-copy-block,
    .growth-copy-block,
    .innovation-image-large,
    .growth-image-large {
        grid-column: span 1;
    }

    .editorial-image-column {
        min-height: 50vh;
    }

    .interior-magazine-hero-block h1 {
        font-size: 3.8rem;
    }

    .editorial-text-column h3 {
        font-size: 2.2rem;
    }
}

.tools-view-section {
    background: #f7f2ea;
    padding-bottom: 10rem;
}

.tools-hero-block {
    background:
        linear-gradient(
            rgba(255,255,255,0.78),
            rgba(255,255,255,0.78)
        ),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80');

    background-size: cover;
    background-position: center;
}

.tools-subtext {
    color: var(--olive-strategy);
}

.tools-copy {
    color: rgba(20,19,14,0.72);
}

.tools-editorial-grid {
    width: min(1450px, 92%);
    margin: 7rem auto 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tool-editorial-card {
    background: var(--pure-white);

    padding: 4rem;

    min-height: 620px;

    display: flex;
    flex-direction: column;

    border-radius: 2rem;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.tool-editorial-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.08);
}

.magenta-card {
    border-top: 4px solid var(--editorial-magenta);
}

.olive-card {
    border-top: 4px solid var(--olive-strategy);
}

.dark-card {
    border-top: 4px solid #14130e;
}

.tool-card-index {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    color: rgba(20,19,14,0.45);

    margin-bottom: 2rem;
}

.tool-editorial-card h4 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 300;
    text-transform: uppercase;

    margin-bottom: 2rem;

    color: var(--olive-strategy);
}

.tool-editorial-card p {
    font-size: 1rem;
    line-height: 2;
    font-weight: 300;

    color: rgba(20,19,14,0.72);

    margin-bottom: 2rem;
}

.tool-card-footer {
    margin-top: auto;

    padding-top: 2rem;

    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: rgba(20,19,14,0.45);

    border-top: 1px solid rgba(20,19,14,0.08);
}





.about-view-section {
    background: var(--editorial-beige);
    padding-bottom: 12rem;
}

.about-hero-block {
    background: var(--dust-rose);
}

.about-editorial-layout {
    width: min(1400px, 92%);
    margin: 8rem auto 0 auto;
}

.about-large-statement {
    width: min(900px, 100%);
    margin: 0 auto 8rem auto;
}

.about-large-statement p {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.7;
    font-weight: 300;

    color: var(--olive-strategy);

    text-align: center;
}

.about-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-panel {
    min-height: 85vh;

    border-radius: 2rem;

    background-image:
        url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1400&q=80');

    background-size: cover;
    background-position: center;
}

.about-copy-panel h3 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 300;
    text-transform: uppercase;

    margin-bottom: 2rem;

    color: var(--olive-strategy);
}

.about-copy-panel p {
    font-size: 1rem;
    line-height: 2;
    font-weight: 300;

    color: rgba(20,19,14,0.72);

    margin-bottom: 2rem;
}

.about-label {
    color: var(--editorial-magenta);
}

.about-quote {
    margin-top: 4rem;
}

@media (max-width: 1100px) {

    .tools-editorial-grid {
        grid-template-columns: 1fr;
    }

    .tool-editorial-card {
        min-height: auto;
    }

    .about-two-column-layout {
        grid-template-columns: 1fr;
    }

    .about-image-panel {
        min-height: 50vh;
    }

    .about-large-statement p {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {

    .tool-editorial-card {
        padding: 2.5rem;
    }

    .tool-editorial-card h4 {
        font-size: 1.6rem;
    }

    .about-copy-panel h3 {
        font-size: 2.2rem;
    }
}
