        /* --- 🎨 DESIGN SYSTEM & ANCHORED RESET --- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --business-red: #D92C54;
            --corporate-blue: #0D5EA6;
            --white: #FFFFFF;
            --muted-black: #111417;
            --slate-grey: #5A6573;
            --grid-border: #E2E8F0;
            --grid-border-dark: rgba(255, 255, 255, 0.15);
            --font-figtree: "Figtree", sans-serif;
        }

        html, body {
            background-color: var(--white);
            color: var(--muted-black);
            font-family: var(--font-figtree);
            font-weight: 400;
            font-size: 15px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-figtree);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            line-height: 1.1;
        }

        p {
            font-weight: 400;
            font-size: 0.95rem;
            color: var(--slate-grey);
        }

        /* --- 🌐 GLOBAL TABULAR UTILITIES --- */
        .sheet-panel {
            padding: 120px 6%;
            position: relative;
            width: 100%;
        }

        .border-matrix-x {
            border-left: 1px solid var(--grid-border);
            border-right: 1px solid var(--grid-border);
        }

        .border-matrix-bottom {
            border-bottom: 1px solid var(--grid-border);
        }

        .tag-indicator {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 700;
            color: var(--business-red);
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .img-fill-frame {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(1) contrast(1.1);
            display: block;
        }


        /* =========================================================
   🔥 ADVANCED TRADING SYSTEM DESIGN EXTENSIONS
   Premium Institutional Visual Layer
========================================================= */

/* --- HERO ENHANCEMENTS --- */
.hero-copy-zone {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 800;
    color: var(--business-red);
    margin-bottom: 2rem;
}

.hero-label::before {
    content: '';
    width: 50px;
    height: 1px;
    background-color: var(--business-red);
}

.hero-paragraph {
    max-width: 650px;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.hero-button-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    text-decoration: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    padding: 1rem 2rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background-color: var(--business-red);
    color: var(--white);
    border: 1px solid var(--business-red);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--business-red);
}

.secondary-btn {
    border: 1px solid var(--grid-border);
    color: var(--muted-black);
    background-color: var(--white);
}

.secondary-btn:hover {
    border-color: var(--corporate-blue);
    color: var(--corporate-blue);
    transform: translateY(-2px);
}

/* --- HERO STATS GRID --- */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--grid-border);
    border: 1px solid var(--grid-border);
}

.hero-stat-card {
    background-color: var(--white);
    padding: 2.5rem;
    transition: all 0.25s ease;
    position: relative;
}

.hero-stat-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: var(--business-red);
    transition: width 0.35s ease;
}

.hero-stat-card:hover::after {
    width: 100%;
}

.hero-stat-card:hover {
    background-color: #F8FAFC;
    transform: translateY(-4px);
}

.hero-stat-card span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--slate-grey);
    margin-bottom: 1rem;
}

.hero-stat-card h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--corporate-blue);
    margin-bottom: 0.8rem;
}

.hero-stat-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- SECTION HEADINGS --- */
.section-heading {
    margin-bottom: 5rem;
    max-width: 850px;
}

.section-heading.dark h2,
.section-heading.dark p {
    color: var(--white);
}

.section-heading .mini-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--business-red);
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin-bottom: 1.5rem;
    color: var(--muted-black);
}

.section-heading p {
    font-size: 1rem;
    line-height: 1.8;
}

/* --- DASHBOARD MAIN --- */
.dashboard-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--muted-black);
}

.dashboard-description {
    margin-bottom: 1.8rem;
    line-height: 1.9;
    max-width: 90%;
}

/* --- IMAGE PANEL --- */
.mini-graph-area {
    width: 100%;
    height: 340px;
    overflow: hidden;
    margin-top: 3rem;
    border: 1px solid var(--grid-border);
    position: relative;
}

.mini-graph-area img {
    transition: transform 0.6s ease;
}

.mini-graph-area:hover img {
    transform: scale(1.05);
}

/* --- EXECUTION HIGHLIGHTS --- */
.execution-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 4rem;
    background-color: var(--grid-border);
}

.execution-highlight-card {
    background-color: var(--white);
    padding: 2rem;
    transition: all 0.25s ease;
}

.execution-highlight-card:hover {
    background-color: #F8FAFC;
    transform: translateY(-3px);
}

.execution-highlight-card span {
    font-size: 2rem;
    font-weight: 900;
    color: var(--business-red);
    display: block;
    margin-bottom: 1rem;
}

.execution-highlight-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.execution-highlight-card p {
    font-size: 0.88rem;
    line-height: 1.7;
}

/* --- SIDEBAR BLOCKS --- */
.sidebar-block {
    margin-bottom: 4rem;
}

.sidebar-block:last-child {
    margin-bottom: 0;
}

.sidebar-block h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.sidebar-text {
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* --- LIVE FEED --- */
.live-feed-item {
    border-top: 1px solid var(--grid-border);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.live-feed-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: var(--muted-black);
}

/* --- ANALYTICS SHOWCASE --- */
.analytics-showcase {
    background-color: var(--muted-black);
    padding: 120px 6%;
    position: relative;
    overflow: hidden;
}

.analytics-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}

.analytics-card {
    background-color: #15191D;
    padding: 3rem;
    transition: all 0.3s ease;
}

.analytics-card.large {
    grid-column: span 2;
}

.analytics-card:hover {
    background-color: #1D2329;
    transform: translateY(-4px);
}

.analytics-card span {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--business-red);
    margin-bottom: 1rem;
    font-weight: 700;
}

.analytics-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.analytics-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
}

/* --- TIMELINE --- */
.timeline-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--grid-border);
}

.timeline-item {
    background-color: var(--white);
    padding: 3rem;
    transition: all 0.25s ease;
}

.timeline-item:hover {
    background-color: #F8FAFC;
}

.timeline-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(13, 94, 166, 0.08);
    margin-bottom: 2rem;
}

.timeline-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.timeline-item p {
    line-height: 1.8;
}

/* --- CTA PANEL --- */
.final-cta-panel {
    background:
        linear-gradient(
            135deg,
            rgba(13,94,166,0.95),
            rgba(217,44,84,0.92)
        );
    padding: 140px 6%;
    position: relative;
    overflow: hidden;
}

.final-cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 70px 70px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.cta-content .mini-label {
    display: inline-block;
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.cta-content p {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 700px;
}

/* --- PREMIUM TABLE DESIGN --- */
.risk-matrix-table {
    overflow: hidden;
}

.risk-matrix-table th {
    background:
        linear-gradient(
            90deg,
            var(--muted-black),
            #1A2027
        );
}

.risk-matrix-table tbody tr {
    transition: background-color 0.25s ease;
}

.risk-matrix-table tbody tr:hover {
    background-color: rgba(13,94,166,0.04);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #EEF2F7;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        var(--business-red),
        var(--corporate-blue)
    );
}

/* =========================================================
   📱 RESPONSIVE EXTENSIONS
========================================================= */

@media (max-width: 1100px) {

    .execution-highlight-grid,
    .timeline-layout,
    .analytics-grid {
        grid-template-columns: 1fr 1fr;
    }

    .analytics-card.large {
        grid-column: span 2;
    }
}

@media (max-width: 850px) {

    .hero-stats-grid,
    .execution-highlight-grid,
    .timeline-layout,
    .analytics-grid {
        grid-template-columns: 1fr;
    }

    .analytics-card.large {
        grid-column: span 1;
    }

    .hero-button-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .dashboard-description {
        max-width: 100%;
    }
}

@media (max-width: 650px) {

    .hero-stat-card {
        padding: 2rem;
    }

    .analytics-card,
    .timeline-item,
    .execution-highlight-card {
        padding: 2rem;
    }

    .section-heading {
        margin-bottom: 3rem;
    }

    .cta-content h2 {
        line-height: 1.2;
    }
}
        /* --- 🌐 GLOBAL HEADER --- */
        header {
            background-color: var(--white);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid var(--grid-border);
        }

        .header-container {
            padding: 0 6%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 85px;
        }

.brand-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
    padding: 0 1.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Logo Image */
.brand-logo img {
    width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
    transition:
        transform 0.35s ease,
        filter 0.35s ease,
        opacity 0.35s ease;
}

/* Hover Animation */
.brand-logo:hover img {
    transform: scale(1.04);
    filter: brightness(1.05) contrast(1.05);
}

/* Animated Underline */
.brand-logo::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 50%;
    width: 0%;
    height: 100px;
    background:
        linear-gradient(
            90deg,
            var(--business-red),
            var(--corporate-blue)
        );
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.brand-logo:hover::after {
    width: 100%;
}

/* Optional Glow */
.brand-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(217,44,84,0.08),
            transparent 70%
        );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.brand-logo:hover::before {
    opacity: 1;
}

/* Mobile Optimization */
@media (max-width: 950px) {

    .brand-logo {
        height: 100px;
        padding: 0;
    }

    .brand-logo img {
        width: 145px;
    }
}

@media (max-width: 650px) {

    .brand-logo img {
        width: 125px;
    }
}

        .header-structural-line {
            flex-grow: 1;
            height: 85px;
            border-left: 1px solid var(--grid-border);
            border-right: 1px solid var(--grid-border);
            margin: 0 4rem;
        }

        .navigation-dock {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .menu-list {
            display: flex;
            list-style: none;
            height: 100%;
        }

        .menu-list li {
            height: 100%;
            display: flex;
            align-items: center;
        }

        .menu-list li a {
            color: var(--muted-black);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            padding: 0 2rem;
            height: 100%;
            display: flex;
            align-items: center;
            transition: all 0.2s ease;
            cursor: pointer;
            border-left: 1px solid var(--grid-border);
        }

        .menu-list li:last-child a {
            border-right: 1px solid var(--grid-border);
        }

        .menu-list li a:hover,
        .menu-list li a.active-node {
            color: var(--white);
            background-color: var(--business-red);
        }

        /* Responsive Architecture Components */
        .hamburger-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 24px;
            height: 14px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1010;
        }

        .hamburger-toggle span {
            width: 100%;
            height: 2px;
            background-color: var(--muted-black);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        }

        /* --- APPLICATION ROUTER PANEL ENGINE --- */
        .view-segment {
            display: none;
        }

        .view-segment.active-segment {
            display: block;
        }

        /* --- 🏠 HOME PAGE SPECIFIC STRUCTURING --- */
        /* Hero Tabular Financial Layout */
        .hero-tabular-composition {
            display: grid;
            grid-template-columns: 1.1fr 1fr 0.9fr;
            width: 100%;
            min-height: calc(100vh - 85px);
            margin-top: 85px;
            border-bottom: 1px solid var(--grid-border);
        }

        .hero-left-block {
            background-color: var(--business-red);
            color: var(--white);
            padding: 5rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hero-left-block h1 {
            font-size: clamp(2.5rem, 4vw, 4.2rem);
            line-height: 1.05;
            font-weight: 900;
        }

        .hero-left-block .statement-box {
            border-top: 1px solid rgba(255,255,255,0.25);
            padding-top: 2rem;
            margin-top: 4rem;
        }

        .hero-left-block h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .hero-left-block p {
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
        }

        .hero-center-block {
            position: relative;
            background-color: #F8FAFC;
        }

        .hero-right-block {
            background-color: var(--corporate-blue);
            color: var(--white);
            padding: 5rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-left: 1px solid var(--grid-border);
        }

        .metric-row-stack {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .metric-node-item {
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding-bottom: 1.5rem;
        }

        .metric-node-item h4 {
            font-size: 2.5rem;
            font-weight: 800;
        }

        .metric-node-item span {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: rgba(255,255,255,0.7);
        }

        .hero-right-block p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Connected Grid Cards */
        .connected-grid-tray {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            width: 100%;
            background-color: var(--white);
        }

        .connected-grid-card {
            border-right: 1px solid var(--grid-border);
            border-bottom: 1px solid var(--grid-border);
            padding: 3rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 240px;
            transition: background-color 0.2s ease;
        }

        .connected-grid-card:last-child {
            border-right: none;
        }

        .connected-grid-card:nth-child(odd) {
            border-top: 3px solid var(--business-red);
        }

        .connected-grid-card:nth-child(even) {
            border-top: 3px solid var(--corporate-blue);
        }

        .connected-grid-card h4 {
            font-size: 1.1rem;
            color: var(--muted-black);
            margin-bottom: 1rem;
        }

        .connected-grid-card p {
            font-size: 0.85rem;
        }

        .connected-grid-card .action-ticker {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--muted-black);
            margin-top: 2rem;
        }

        .connected-grid-card:hover {
            background-color: #F8FAFC;
        }

        /* Section 2 — Market Analysis Grid */
        .market-analysis-header {
            margin-bottom: 4rem;
        }

        .market-analysis-header h2 {
            font-size: 2.8rem;
            color: var(--corporate-blue);
        }

        .terminal-matrix-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-top: 1px solid var(--grid-border);
            border-left: 1px solid var(--grid-border);
        }

        .terminal-matrix-card {
            border-right: 1px solid var(--grid-border);
            border-bottom: 1px solid var(--grid-border);
            padding: 3rem;
            background-color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .terminal-matrix-card .card-label {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--slate-grey);
            margin-bottom: 1rem;
        }

        .terminal-matrix-card .stat-output {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--muted-black);
            margin-bottom: 1.5rem;
        }

        .terminal-matrix-card .stat-output.positive { color: var(--corporate-blue); }
        .terminal-matrix-card .stat-output.negative { color: var(--business-red); }

        .terminal-matrix-card p {
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .terminal-matrix-card .mini-graph-area {
            height: 200px;
            background-color: #F1F5F9;
            width: 100%;
        }

        /* Section 3 — Business Table Structure */
        .horizontal-table-strip {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            border-top: 1px solid var(--grid-border-dark);
        }

        .table-strip-cell {
            border-right: 1px solid var(--grid-border-dark);
            border-bottom: 1px solid var(--grid-border-dark);
            padding: 4rem;
        }

        .table-strip-cell:nth-child(2n) {
            border-right: none;
        }

        .table-strip-cell h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .table-strip-cell p {
            color: rgba(255,255,255,0.75);
            max-width: 500px;
        }

        /* Section 4 — Immersive Market Section */
        .immersive-backdrop-section {
            height: 60vh;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }

        .immersive-backdrop-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 94, 166, 0.85);
        }

        .scrollable-narrative-frame {
            position: relative;
            z-index: 2;
            padding: 0 6%;
            max-width: 900px;
        }

        .scrollable-narrative-frame p {
            font-size: 1.5rem;
            color: var(--white);
            line-height: 1.7;
            font-weight: 300;
        }

        /* Section 5 — Trading Cards */
        .corporate-intel-stack {
            display: flex;
            flex-direction: column;
            border-top: 1px solid var(--grid-border);
        }

        .corporate-intel-row {
            display: grid;
            grid-template-columns: 0.6fr 1fr 1.4fr 1fr;
            border-bottom: 1px solid var(--grid-border);
            align-items: center;
        }

        .intel-cell {
            padding: 2.5rem 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid var(--grid-border);
        }

        .corporate-intel-row .intel-cell:last-child {
            border-right: none;
        }

        .intel-cell .category-pill {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--business-red);
        }

        .intel-cell .image-container-frame {
            width: 100%;
            height: 110px;
            background-color: #F1F5F9;
        }

        .intel-cell h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--muted-black);
        }

        .intel-cell .metric-line-data {
            font-family: monospace;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--corporate-blue);
        }

        /* Section 6 — Business Facilitation Matrix */
        .matrix-quad-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-top: 1px solid var(--grid-border-dark);
            border-left: 1px solid var(--grid-border-dark);
        }

        .matrix-quad-block {
            border-right: 1px solid var(--grid-border-dark);
            border-bottom: 1px solid var(--grid-border-dark);
            padding: 5rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 350px;
        }

        .matrix-quad-block h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .matrix-quad-block p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 520px;
            margin-bottom: 3rem;
        }

        .matrix-quad-block .data-giant-callout {
            font-size: 3.5rem;
            font-weight: 900;
            font-family: monospace;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
        }

        /* Section 7 — Subscribe Panel */
        .subscribe-split-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
        }

        .subscribe-editorial h3 {
            font-size: 2.5rem;
            color: var(--corporate-blue);
            margin-bottom: 1.5rem;
        }

        .subscribe-forms-container {
            display: flex;
            flex-direction: column;
            gap: 4.5rem;
        }

        .subscribe-form-segment h4 {
            font-size: 1rem;
            color: var(--muted-black);
            margin-bottom: 1.5rem;
            border-left: 3px solid var(--business-red);
            padding-left: 0.75rem;
        }

        .tabular-form-interface {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-top: 1px solid var(--grid-border);
            border-left: 1px solid var(--grid-border);
        }

        .form-cell-span-2 {
            grid-column: span 2;
        }

        .tabular-input-group {
            border-right: 1px solid var(--grid-border);
            border-bottom: 1px solid var(--grid-border);
            padding: 1.2rem;
            display: flex;
            flex-direction: column;
        }

        .tabular-input-group label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 700;
            color: var(--slate-grey);
            margin-bottom: 0.4rem;
        }

        .tabular-input-group input,
        .tabular-input-group select {
            border: none;
            background: transparent;
            font-family: var(--font-figtree);
            font-size: 0.95rem;
            color: var(--muted-black);
            outline: none;
            width: 100%;
        }

        .sheet-action-button {
            background-color: var(--corporate-blue);
            color: var(--white);
            border: none;
            font-family: var(--font-figtree);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            padding: 1.2rem 2.5rem;
            cursor: pointer;
            transition: background-color 0.2s ease;
            grid-column: span 2;
        }

        .sheet-action-button:hover {
            background-color: var(--business-red);
        }

        /* --- 📈 MARKETS PAGE VIEW --- */
        .interior-hero-sheet {
            margin-top: 85px;
            background-color: #F8FAFC;
            border-bottom: 1px solid var(--grid-border);
            padding: 8rem 6% 5rem 6%;
        }

        .interior-hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: flex-end;
        }

        .interior-hero-grid h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--corporate-blue);
            line-height: 1.1;
        }

        .interior-hero-grid p {
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .report-block-layout {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            border-top: 1px solid var(--grid-border);
            border-left: 1px solid var(--grid-border);
        }

        .report-block-item {
            border-right: 1px solid var(--grid-border);
            border-bottom: 1px solid var(--grid-border);
            padding: 4rem;
        }

        .report-block-item h3 {
            font-size: 1.6rem;
            color: var(--muted-black);
            margin-bottom: 1rem;
        }

        /* --- 💹 TRADING PAGE VIEW --- */
        .trading-dashboard-composition {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            border-top: 1px solid var(--grid-border);
            border-left: 1px solid var(--grid-border);
        }

        .trading-dashboard-main {
            border-right: 1px solid var(--grid-border);
            border-bottom: 1px solid var(--grid-border);
            padding: 4rem;
        }

        .trading-dashboard-sidebar {
            border-right: 1px solid var(--grid-border);
            border-bottom: 1px solid var(--grid-border);
            padding: 4rem;
            background-color: #F8FAFC;
        }

        .risk-matrix-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
        }

        .risk-matrix-table th, 
        .risk-matrix-table td {
            border: 1px solid var(--grid-border);
            padding: 1rem;
            text-align: left;
            font-size: 0.9rem;
        }

        .risk-matrix-table th {
            background-color: var(--muted-black);
            color: var(--white);
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
        }

        /* --- 🏢 BUSINESS PAGE VIEW --- */
        .corporate-matrix-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border-top: 1px solid var(--grid-border);
            border-left: 1px solid var(--grid-border);
        }

        .corporate-matrix-node {
            border-right: 1px solid var(--grid-border);
            border-bottom: 1px solid var(--grid-border);
            padding: 4rem 3rem;
        }

        .corporate-matrix-node h3 {
            font-size: 1.4rem;
            color: var(--corporate-blue);
            margin-bottom: 1rem;
        }

        /* --- 📞 CONTACT PAGE VIEW --- */
        .contact-split-sheet {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            border-top: 1px solid var(--grid-border);
            border-left: 1px solid var(--grid-border);
        }

        .contact-details-column {
            border-right: 1px solid var(--grid-border);
            border-bottom: 1px solid var(--grid-border);
            padding: 4rem;
        }

        .contact-form-column {
            border-right: 1px solid var(--grid-border);
            border-bottom: 1px solid var(--grid-border);
            padding: 4rem;
            background-color: #F8FAFC;
        }

        .contact-node-block {
            margin-bottom: 3rem;
        }

        .contact-node-block h5 {
            font-size: 0.75rem;
            color: var(--business-red);
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
        }

        .contact-node-block p {
            font-size: 1.1rem;
            color: var(--muted-black);
        }

        /* --- 🌐 GLOBAL FOOTER --- */
        footer {
            background-color: var(--corporate-blue);
            color: var(--white);
            padding: 6rem 6% 4rem 6%;
        }

        .footer-grid-wrapper {
            display: grid;
            grid-template-columns: 1.5fr repeat(4, 1fr);
            gap: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.15);
            padding-bottom: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand-cell h3 {
            font-size: 1.4rem;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .footer-brand-cell p {
            color: rgba(255,255,255,0.7);
            font-size: 0.85rem;
            max-width: 260px;
        }

        .footer-link-cell h6 {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.5rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-links-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-links-list li a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s ease;
            cursor: pointer;
        }

        .footer-links-list li a:hover {
            color: var(--business-red);
        }

        .footer-base-terminal {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            flex-wrap: wrap;
            gap: 2rem;
        }

        /* --- 📄 FULLSCREEN EDITORIAL OVERLAYS (PRIVACY & TERMS) --- */
        .fullscreen-report-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--white);
            color: var(--muted-black);
            z-index: 2000;
            display: none;
            overflow-y: auto;
            padding: 100px 8%;
        }

        .report-document-container {
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid var(--grid-border);
            padding: 4rem;
            background-color: var(--white);
        }

        .report-dismiss-button {
            position: fixed;
            top: 30px;
            right: 8%;
            background-color: var(--muted-black);
            color: var(--white);
            border: none;
            padding: 0.75rem 1.5rem;
            font-family: var(--font-figtree);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
        }

        .report-document-container h2 {
            font-size: 2.5rem;
            color: var(--corporate-blue);
            margin-bottom: 1.5rem;
        }

        .report-document-container h4 {
            font-size: 1.1rem;
            color: var(--business-red);
            margin: 2rem 0 1rem 0;
        }

        .report-document-container p {
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
            text-align: justify;
        }

        /* --- 🧠 GRAPHIC RESPONSIVE ENGINE (MEDIA QUERIES) --- */
        @media (max-width: 1200px) {
            .hero-tabular-composition {
                grid-template-columns: 1fr;
            }
            .hero-center-block {
                height: 400px;
            }
            .connected-grid-tray {
                grid-template-columns: 1fr 1fr;
            }
            .terminal-matrix-grid {
                grid-template-columns: 1fr 1fr;
            }
            .corporate-intel-row {
                grid-template-columns: 1fr 1fr;
            }
            .corporate-intel-row .intel-cell {
                border-bottom: 1px solid var(--grid-border);
            }
            .corporate-intel-row .intel-cell:nth-child(2n) {
                border-right: none;
            }
            .footer-grid-wrapper {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 950px) {
            .hamburger-toggle {
                display: flex;
            }

            .menu-list {
                position: fixed;
                top: 85px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 85px);
                background-color: var(--white);
                flex-direction: column;
                transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
                z-index: 1005;
                border-top: 1px solid var(--grid-border);
            }

            .menu-list.drawer-active {
                left: 0;
            }

            .menu-list li {
                width: 100%;
                height: auto;
            }

            .menu-list li a {
                width: 100%;
                padding: 2rem 6%;
                border-left: none;
                border-bottom: 1px solid var(--grid-border);
            }

            .header-structural-line {
                display: none;
            }

            .horizontal-table-strip {
                grid-template-columns: 1fr;
            }
            .table-strip-cell {
                border-right: none;
            }
            .matrix-quad-grid {
                grid-template-columns: 1fr;
            }
            .matrix-quad-block {
                border-right: none;
            }
            .subscribe-split-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .report-block-layout {
                grid-template-columns: 1fr;
            }
            .report-block-item {
                border-right: none;
            }
            .trading-dashboard-composition {
                grid-template-columns: 1fr;
            }
            .trading-dashboard-main,
            .trading-dashboard-sidebar {
                border-right: none;
            }
            .corporate-matrix-container {
                grid-template-columns: 1fr;
            }
            .corporate-matrix-node {
                border-right: none;
            }
            .contact-split-sheet {
                grid-template-columns: 1fr;
            }
            .contact-details-column {
                border-right: none;
            }
        }

        @media (max-width: 650px) {
            .sheet-panel {
                padding: 80px 6%;
            }
            .connected-grid-tray {
                grid-template-columns: 1fr;
            }
            .terminal-matrix-grid {
                grid-template-columns: 1fr;
            }
            .corporate-intel-row {
                grid-template-columns: 1fr;
            }
            .corporate-intel-row .intel-cell {
                border-right: none;
            }
            .tabular-form-interface {
                grid-template-columns: 1fr;
            }
            .form-cell-span-2,
            .sheet-action-button {
                grid-column: span 1;
            }
            .footer-grid-wrapper {
                grid-template-columns: 1fr;
            }
            .report-document-container {
                padding: 2rem 1.5rem;
            }
        }
