:root {
    /* ========= BRAND COLORS (INSTITUTIONAL LAYER) ========= */
    --color-primary: #04152e; /* Deep Matte Navy Main Background */
    --color-primary-dark: #030e20; /* Ultra Deep Background Node */
    --color-primary-light: #061c3d; /* Primary Navy Section Background */
    --color-accent: #c6a46a; /* Main Institutional Gold */
    --color-accent-light: #d4b27a; /* Soft Highlight Gold */
    --color-accent-dark: #a8844e; /* Deep Matte Gold */

    --danger: #b84023; /* Deep Matte Gold */

    /* ========= TEXT COLORS (IVORY & SILVER MATRIX) ========= */
    --color-text-dark: #04152e; /* Inverted High-Contrast Text */
    --color-text-gray: #b7bdc7; /* Soft Silver Base */
    --color-text-light: #b7bdc7; /* Soft Silver Secondary */
    --color-text-lighter: #f5f3ee; /* Ivory Element Base */
    --color-text-muted: #b7bdc7; /* Soft Silver Structural */
    --color-text-white: #f5f3ee; /* Standard Ivory Text Override */
    --color-text-offwhite: #f5f3ee; /* Ivory Core Standard */

    /* ========= TEXT COLORS (IVORY & SILVER MATRIX) 2 ========= */
    --color-text-dark-2: #0a1a2f;
    --color-accent: #c9a03d;
    --color-accent-hover: #b48b2e;
    --bg-white-2: #ffffff;
    --color-text-white-2: #ffffff;
    --bg-gray-2: #f8f9fc;
    --color-text-gray-2: #4a5b6e;
    --color-text-lighter-2: #1e2a3a;
    --color-text-muted-2: #9aa9b9;

    /* ========= BACKGROUND COLORS ========= */
    --bg-white: #04152e; /* Realigned to Deep Matte Navy Base */
    --bg-gray: #061c3d; /* Realigned to Primary Navy Section Background */
    --bg-dark: #04152e; /* Deep Matte Navy Structural Core */
    --bg-footer: #04152e; /* Deep Matte Navy Footer Standard */
    --bg-overlay: rgba(4, 21, 46, 0.98);
    --bg-overlay-light: rgba(6, 28, 61, 0.95);
    --bg-overlay-transparent: rgba(4, 21, 46, 0);
    --bg-table-header: #061c3d;
    --bg-table-row: #04152e;

    /* ========= BACKGROUND COLORS 2 ========= */
    --bg-white-2: #ffffff; /* Using a white background fo the other page  */
    --bg-gray-2: #f5f6f8; /* Realigned to Primary Navy Section Background */
    --bg-dark-2: #575757; /* Deep Matte Navy Structural Core */
    --bg-overlay-transparent-2: rgba(4, 21, 46, 0);
    --bg-table-header-2: #061c3d;
    --bg-table-row-2: #04152e;

    /* ========= BORDER COLORS & DIVIDERS ========= */
    --border-light: rgba(255, 255, 255, 0.08); /* Exact Divider Line Token */
    --border-lighter: rgba(255, 255, 255, 0.08);
    --border-footer: rgba(255, 255, 255, 0.08);

    --btn-raduis: 0px; /* Flattened for architectural/structural alignment */

    /* ========= SHADOWS (REDUCED FOR CINEMATIC MATTE EFFECT) ========= */
    --shadow-sm: 0 4px 30px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 50px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 50px rgba(0, 0, 0, 0.4);

    /* ========= TYPOGRAPHY SYSTEM INDICES ========= */
    --font-primary: "Inter", sans-serif;
    --font-heading: "Cormorant Garamond", serif;

    /* ========= TRANSITIONS ========= */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

    /* =========== NAV  =========== */
    --nav-bg: #030d1a; /* Deep, authoritative dark background matching your theme */
    --nav-text: #e2e8f0; /* Crisp light text for high visibility */
    --nav-text-light: #94a3b8; /* Subtle text color for secondary sub-items */
    --nav-accent: #38bdf8; /* Clean premium blue line accent for interactive hover states */
    --nav-accent-light: #1e293b; /* Dropdown panel structural details */
    --nav-primary: #0f172a; /* Main panel background block */
    --nav-border: rgba(
        255,
        255,
        255,
        0.08
    ); /* Sophisticated, ultra-thin border */
    --nav-hover-bg: #071f3a; /* High-contrast background highlight */
    --nav-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --nav-shadow-sub: 0 12px 28px -8px rgba(0, 0, 0, 0.4);
}

/* Base Architecture System Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-primary);
    font-family: var(--font-primary);
    color: var(--color-text-offwhite);
    scroll-behavior: smooth;
    padding-top: 90px;
    overflow-x: hidden;
    font-weight: 400 !important; /* Realigned for Inter Readability */
    -webkit-font-smoothing: antialiased;
}

body.nav-shrunk {
    padding-top: 90px;
}

p {
    font-weight: 400 !important;
}

/* ========= ULTRA SMOOTH SCROLL ANIMATIONS ========= */
@keyframes smoothFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes smoothFadeLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes smoothFadeRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes smoothScale {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes smoothGlide {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up,
.fade-left,
.fade-right,
.scale-in,
.glide-in {
    opacity: 0;
    will-change: transform, opacity;
}

.fade-up.revealed {
    animation: smoothFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-left.revealed {
    animation: smoothFadeLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-right.revealed {
    animation: smoothFadeRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.scale-in.revealed {
    animation: smoothScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.glide-in.revealed {
    animation: smoothGlide 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger Delays System */
.delay-1 {
    animation-delay: 0.05s;
}
.delay-2 {
    animation-delay: 0.1s;
}
.delay-3 {
    animation-delay: 0.15s;
}
.delay-4 {
    animation-delay: 0.2s;
}
.delay-5 {
    animation-delay: 0.25s;
}
.delay-6 {
    animation-delay: 0.3s;
}

/* Interactive Hover Mechanics */
.grid-card,
.product-card,
.nav-btn,
.cta-button {
    transition: var(--transition-fast);
}

.grid-card:hover,
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent) !important;
}

.cta-button:hover,
.nav-btn:hover {
    transform: translateY(-1px);
}

.icon-item {
    transition: var(--transition-fast);
}
.icon-item:hover {
    transform: translateX(4px);
}

/* ========= ARCHITECTURAL TOP FIXED NAVIGATION ========= */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 40px;
    height: 90px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition-fast);
}

.top-nav.scrolled {
    height: 90px; /* Static structural uniformity */
    background: var(--color-primary);
    border-bottom: 1px solid var(--border-light);
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.nav-logo img {
    height: 24px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 35px;
}
.nav-menu {
    display: flex;
    gap: 35px;
    font-family: var(--font-primary);
    font-weight: 500; /* Inter Medium */
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--color-text-lighter-2);
    text-transform: uppercase;
}
.nav-menu a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color 0.25s ease;
}
.nav-menu a:hover {
    color: var(--color-accent); /* Gold Hover Standard */
}

/* Navigation Button Action Node (Secondary Button Logic) */
.nav-btn {
    background-color: transparent !important;
    color: var(--color-text-lighter) !important;
    border: 1px solid var(--color-accent) !important;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-weight: 600; /* Inter SemiBold */
    font-size: 14px;
    border-radius: 0px !important;
    text-transform: uppercase;
    cursor: pointer;
}
.nav-btn:hover {
    background-color: rgba(198, 164, 106, 0.05) !important;
    border-color: var(--color-accent-light) !important;
}

/* ========= HERO PLATFORM MODULE ========= */
.hero-section {
    width: 100%;
    position: relative;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    min-height: 100vh !important;
}

.hero-section::before {
    display: none; /* Eliminated bright mask overlays */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 160px 40px 60px 40px;
}

.hero-section .headline {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important; /* Cormorant Garamond Bold */
    font-size: 88px;
    line-height: 0.95;
    color: var(--color-text-lighter-2); /* Ivory */
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-section .headline span {
    color: var(--color-accent) !important; /* Gold Highlight */
}

.hero-section .body-text {
    font-family: var(--font-primary);
    font-weight: 400; /* Inter Regular */
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-gray-2); /* Soft Silver */
    margin-bottom: 45px;
    max-width: 620px;
}

/* Primary Button Logic Placement */
.hero-section .cta-button,
.cta-button {
    background-color: var(--color-accent) !important; /* Gold Background */
    color: var(--color-primary) !important; /* Navy Text */
    border: none !important;
    padding: 18px 36px;
    font-family: var(--font-primary);
    font-weight: 600; /* Inter SemiBold */
    font-size: 14px;
    border-radius: 0px !important;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
}
.hero-section .cta-button:hover,
.cta-button:hover {
    background-color: var(--color-accent-light) !important;
}

/* Structural Layout for Hero Inline Interactive Actions */
.hero-section .icon-row {
    margin-top: 45px;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}
.hero-section .icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.hero-section .icon-item svg {
    width: 32px;
    height: 32px;
    stroke: none;
    fill: var(--color-accent); /* Icon Color Standard */
}
.hero-section .icon-label {
    font-family: var(--font-primary);
    font-weight: 500; /* Inter Medium */
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--color-text-gray-2);
    text-transform: uppercase;
}
.hero-section .icon-item:hover .icon-label {
    color: var(--color-accent);
}

/* ========= STRUCTURAL METRICS & SECTIONS FRAMEWORK ========= */
.gray-spacer {
    width: 100%;
    background: var(--color-primary);
    border-top: 1px solid var(--border-light);
    padding: 45px 0;
    text-align: left;
}

.bg-section {
    width: 100%;
    position: relative;
    background-color: var(--color-primary-light); /* Section Background */
    display: flex;
    align-items: center;
    min-height: auto;
    padding: 110px 0;
    border-bottom: 1px solid var(--border-light);
}

.bg-section::before {
    display: none;
}

.bg-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 40px;
}

.bg-content .breadcrumb,
.centered-eyebrow,
.breadcrumb {
    font-family: var(--font-primary);
    font-weight: 500; /* Inter Medium */
    font-size: 12px;
    letter-spacing: 3px; /* Micro Labels Rule */
    color: var(--color-accent) !important;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.bg-content .section-title,
.large-statement {
    font-family: var(--font-heading);
    font-weight: 600; /* Cormorant Garamond SemiBold Section Titles */
    font-size: 56px;
    color: var(--color-text-dark) !important;
    line-height: 1.15;
    margin-bottom: 25px;
    text-transform: none;
}

.bg-content .section-subhead {
    font-family: var(--font-primary);
    font-weight: 600; /* Card Titles */
    font-size: 18px;
    color: var(--color-text-lighter-2);
    margin-bottom: 20px;
    line-height: 1.35;
}

.bg-content .section-text,
.supporting-text {
    font-family: var(--font-primary);
    font-weight: 400; /* Card/Body text layer */
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-gray-2);
    max-width: 750px;
    margin-bottom: 0;
}

.section-spacer {
    height: 0px; /* Purged modern spacer elements */
}

.wide-container {
    width: 100%;
    padding: 0 40px;
}

/* ========= ARCHITECTURAL MATRIX NODES & GRID SCHEMATICS ========= */
.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
}

.grid-card {
    background: transparent;
    padding: 0;
    border-radius: 0px;
    box-shadow: none;
    border: none;
}

.grid-card h4 {
    font-family: var(--font-primary);
    font-weight: 600; /* Card Title */
    font-size: 18px;
    color: var(--color-text-lighter-2);
    margin-bottom: 10px;
}

.grid-card p {
    font-family: var(--font-primary);
    font-weight: 400; /* Card Text */
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-gray-2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(
        6,
        1fr
    ); /* 6 Column Institutional Ecosystem Matrix */
    gap: 16px;
    margin-top: 60px;
    width: 100%;
}

.product-card {
    background: var(--color-primary);
    border: 1px solid var(--border-light);
    padding: 24px 20px;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    justify-content: space-between;
}

.product-card h4 {
    font-family: var(--font-primary);
    font-weight: 600; /* Card Title Layer */
    font-size: 18px;
    color: var(--color-text-lighter-2);
    margin-bottom: 12px;
    line-height: 1.35;
}

.product-card p {
    font-family: var(--font-primary);
    font-weight: 400; /* Card Text Layer */
    font-size: 14px;
    color: var(--color-text-gray-2);
    line-height: 1.6;
}

/* Unified Layout Architecture Blocks */
.split-section,
.policy-split,
.framework-split {
    display: flex;
    gap: 60px !important;
    padding: 110px 40px;
    background: var(--bg-white-2);
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.split-left-white {
    flex: 1.2;
}

.split-right-image {
    flex: 1;
    min-height: 450px;
    background: var(--color-primary);
    border: 1px solid var(--border-light);
    border-radius: 0px;
    overflow: hidden;
}
.split-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

/* Bullet Lists System */
.bullet-list li {
    font-family: var(--font-primary);
    font-size: 14px;
    margin-bottom: 18px;
    padding: 16px 22px !important;
    padding-left: 30px;
    position: relative;
    color: var(--color-text-gray-2);
    line-height: 1.6;
}
.bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent); /* Icon Variant Matching */
    font-weight: 600;
    font-size: 14px;
}

/* Structural Metric Labels & Steps */
.execution-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 110px 40px;
    background: var(--color-primary);
    border-bottom: 1px solid var(--border-light);
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 600; /* Metric Layout Config */
    font-size: 48px;
    color: var(--color-text-lighter-2);
    margin-bottom: 10px;
    line-height: 1;
}

.step-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-text-lighter-2);
}

.step-desc {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-gray-2);
    line-height: 1.6;
}

/* ========= AXIOM HEADLINE BLOCK SYSTEM ========= */
.final-quote,
.centered-content {
    text-align: center;
    padding: 120px 40px;
    background: var(--color-primary);
    border-bottom: 1px solid var(--border-light);
}

.final-quote p {
    font-family: var(--font-heading);
    font-weight: 600; /* Cormorant Garamond SemiBold System */
    font-size: 56px;
    color: var(--color-text-lighter-2) !important;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* ========= SOVEREIGN CORPORATE FOOTER PANEL ========= */
footer {
    background-color: var(--color-primary);
    color: var(--color-text-gray-2);
    padding: 90px 0 50px 0;
    border-top: 1px solid var(--border-light);
}
.footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}
.footer-logo-img img {
    height: 28px;
    width: auto;
}
.footer-desc {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-gray-2);
    margin-top: 20px;
    max-width: 320px;
}
.footer-col h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: var(--color-text-lighter-2);
    margin-bottom: 25px;
    text-transform: uppercase;
}
.footer-col a {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--color-text-gray-2);
    margin-bottom: 14px;
    text-decoration: none;
    display: block;
    transition: var(--transition-fast);
}
.footer-col a:hover {
    color: var(--color-accent);
    transform: translateX(2px);
}
.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}
.social-icons span {
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--color-text-gray-2);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.social-icons span:hover {
    color: var(--color-accent);
}
.bottom-bar {
    border-top: 1px solid var(--border-light);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(183, 189, 199, 0.5);
}

.section-anchor {
    scroll-margin-top: 90px;
}

/* =========================================================================
   RESPONSIVE SYSTEMS BREAKPOINT ADAPTATIONS
   ========================================================================= */
@media (max-width: 1400px) {
    .hero-section .headline {
        font-size: 68px;
    }
    .bg-content .section-title,
    .final-quote p {
        font-size: 48px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .top-nav {
        padding: 0 30px;
    }
    .hero-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .hero-section .headline {
        font-size: 56px;
    }
    .split-section,
    .policy-split,
    .framework-split {
        flex-direction: column;
        gap: 50px;
        padding: 80px 30px;
    }
    .grid-5,
    .execution-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
    .top-nav {
        padding: 0 20px;
    }
    .nav-menu,
    .nav-btn {
        display: none;
    } /* Standard Mobile Security Safety Reset Drop */

    .hero-content {
        padding: 120px 20px 60px 20px;
    }
    .hero-section .headline {
        font-size: 42px !important;
        line-height: 1.05;
    }
    .hero-section .body-text {
        font-size: 18px !important;
    }

    .bg-content .section-title,
    .final-quote p {
        font-size: 36px !important;
    }
    .grid-5,
    .products-grid,
    .execution-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-section .headline,
    .hero-section .body-text,
    .bg-content .section-title,
    .bg-content .section-text {
        max-width: 100% !important;
        width: 100% !important;
    }
}
/* Base System Resets */
.aticc-viewport * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.aticc-viewport {
    background-color: #030d1a;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
}

/* Utility Enforcements */

.font-sans-serif {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.gold-brand-text {
    color: #c5a059;
}
.container-max {
    max-width: 1360px;
    margin: 0 !important;
    padding: 0 40px !important;
}

/* Hero Architecture with Glowing Orbital Space Placement */
.hero-block {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at 78% 43%, #071f3a 0%, #030d1a 60%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 140px;
    overflow: hidden;
}

/* CHANGED: Adjusted to fill the entire container framework */
.hero-globe-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('{{ asset("assets/images/home page ball .png") }}')
        no-repeat right center;
    background-size: cover; /* Swapped contain for cover to scale across the space */
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
}

.hero-inner-layout {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-text-container {
    max-width: 760px;
}

.hero-main-title {
    font-size: 62px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-supporting-text {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: #8da2bb;
    max-width: 540px;
    margin-bottom: 45px;
}

.hero-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

/* Button Elements */
.btn-gold-solid {
    background-color: #c5a059;
    color: #030d1a;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 32px;
    border: 1px solid #c5a059;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-gold-solid:hover {
    background-color: #d9b874;
}

.btn-gold-outline {
    background: transparent;
    color: #ffffff;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 32px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.btn-gold-outline:hover {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.08);
}

.media-overview-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #8da2bb;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
.media-overview-trigger:hover {
    color: #c5a059;
}
/* MODIFIED: Increased sizing for the hero overview play icon */
.media-overview-trigger svg {
    width: 36px;
    height: 36px;
}

/* Live Metrics Grid Row (Pure CSS Grid) */
.metrics-dashboard-bar {
    background-color: #04152ed8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 0;
    position: relative;
    z-index: 5;
    margin-top: 60px;
}

.metrics-layout-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.metric-data-node {
    padding-left: 15px;
}
.metric-data-node:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-count-header {
    font-size: 34px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}
.metric-count-header span {
    color: #c5a059;
}

.metric-text-label {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #798da3;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Core Competencies Row (5 Pillars Split) */
.competency-block {
    padding: 70px 0;
    background-color: #030d1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.competency-layout-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* MODIFIED: Standardized icon wrappers to accommodate larger stroke icons safely */
.competency-node-card .icon-holder {
    color: #c5a059;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.competency-node-card .icon-holder svg {
    width: 50px;
    height: 50px;
}

.competency-node-card .title-label {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 8px;
}

.competency-node-card .desc-p {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14.5px;
    color: #6d8196;
    line-height: 1.5;
}

/* Axiom Core Credo Interface Styles */
.axiom-display-block {
    background-color: #01040a;
    background-image: radial-gradient(
        circle at 50% 50%,
        #05162c 0%,
        #01040a 100%
    );
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.axiom-display-block::after {
    content: "";
    position: absolute;
    right: 12%;
    top: 30%;
    bottom: 30%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #c5a059, transparent);
    opacity: 0.5;
}

.axiom-headline-text {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 30px;
}

.axiom-under-eyebrow {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    color: #8da2bb;
    letter-spacing: 2.5px;
    text-align: center;
    width: 70%;
    margin: 0 auto !important;
}

/* Ecosystem Architecture Workspace (What We Do 6-Columns) */
.ecosystem-container-section {
    background-color: #01040a;
    padding: 100px 0;
}

.ecosystem-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-pre-title {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #c5a059;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-main-heading {
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
}

.six-column-matrix-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.matrix-node-structure {
    background-color: rgba(5, 16, 33, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 400px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.matrix-node-structure:hover {
    background-color: rgba(7, 22, 46, 0.8);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.matrix-node-media-box {
    height: 170px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.matrix-node-text-box {
    padding: 24px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.matrix-node-serial {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    color: #c5a059;
    font-weight: 700;
    margin-bottom: 10px;
}

.matrix-node-title-header {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.matrix-node-paragraph {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 12px;
    color: #798da3;
    line-height: 1.5;
    margin-bottom: 20px;
}

.matrix-node-arrow-link {
    color: #c5a059;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
}

/* Global Corporate Network Footprint */
.institutional-trust-strip {
    background-color: #ffffff;
    padding: 55px 0;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.trust-strip-header {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8a99ad;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.flex-brand-logospace {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.flex-brand-logospace img {
    max-height: 34px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.flex-brand-logospace img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Fixes for non-framework stack layout elements */
@media (max-width: 1024px) {
    .metrics-layout-grid,
    .competency-layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .six-column-matrix-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-main-title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .metrics-layout-grid,
    .competency-layout-grid,
    .six-column-matrix-grid {
        grid-template-columns: 1fr;
    }
    .ecosystem-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .metric-data-node {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 15px;
    }
}

/* Base System Resets */
.aticc-viewport * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.aticc-viewport {
    background-color: #030d1a;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
}

/* Utility Enforcements */

.font-sans-serif {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.gold-brand-text {
    color: #c5a059;
}
.container-max {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Architecture with Glowing Orbital Space Placement */
.hero-block {
    position: relative;
    min-height: 100vh;
    background: radial-gradient(circle at 78% 43%, #071f3a 0%, #030d1a 60%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 140px;
    overflow: hidden;
}

/* CHANGED: Adjusted to fill the entire container framework */
.hero-globe-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('{{ asset("assets/images/home page ball .png") }}')
        no-repeat right center;
    background-size: cover; /* Swapped contain for cover to scale across the space */
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
}

.hero-inner-layout {
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-text-container {
    max-width: 760px;
}

/* UPDATED: Applied Cormorant Garamond font family */
.hero-main-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 62px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 25px;
}

.hero-supporting-text {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.7;
    color: #8da2bb;
    max-width: 540px;
    margin-bottom: 45px;
}

.hero-action-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

/* Button Elements */
.btn-gold-solid {
    background-color: #c5a059;
    color: #030d1a;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 32px;
    border: 1px solid #c5a059;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-gold-solid:hover {
    background-color: #d9b874;
}

.btn-gold-outline {
    background: transparent;
    color: #ffffff;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 32px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.btn-gold-outline:hover {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.08);
}

.media-overview-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #8da2bb;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
.media-overview-trigger:hover {
    color: #c5a059;
}
/* MODIFIED: Increased sizing for the hero overview play icon */
.media-overview-trigger svg {
    width: 36px;
    height: 36px;
}

/* Live Metrics Grid Row (Pure CSS Grid) */
.metrics-dashboard-bar {
    background-color: #04152ed8;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 0;
    position: relative;
    z-index: 5;
    margin-top: 60px;
}

.metrics-layout-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.metric-data-node {
    padding-left: 15px;
}
.metric-data-node:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-count-header {
    font-size: 34px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 6px;
}
.metric-count-header span {
    color: #c5a059;
}

.metric-text-label {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #798da3;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Core Competencies Row (5 Pillars Split) */
.competency-block {
    padding: 70px 0;
    background-color: #030d1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.competency-layout-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

/* MODIFIED: Standardized icon wrappers to accommodate larger stroke icons safely */
.competency-node-card .icon-holder {
    color: #c5a059;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.competency-node-card .icon-holder svg {
    width: 32px;
    height: 32px;
}

.competency-node-card .title-label {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 8px;
}

.competency-node-card .desc-p {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 14.5px;
    color: #6d8196;
    line-height: 1.5;
}

/* Axiom Core Credo Interface Styles */
.axiom-display-block {
    background-color: #01040a;
    background-image: radial-gradient(
        circle at 50% 50%,
        #05162c 0%,
        #01040a 100%
    );
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.axiom-display-block::after {
    content: "";
    position: absolute;
    right: 12%;
    top: 30%;
    bottom: 30%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #c5a059, transparent);
    opacity: 0.5;
}

.axiom-headline-text {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 30px;
}

.axiom-under-eyebrow {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    color: #8da2bb;
    letter-spacing: 2.5px;
    text-align: center;
}

/* Ecosystem Architecture Workspace (What We Do 6-Columns) */
.ecosystem-container-section {
    background-color: #01040a;
    padding: 100px 0;
}

.ecosystem-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.section-pre-title {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #c5a059;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.section-main-heading {
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
}

.six-column-matrix-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.matrix-node-structure {
    background-color: rgba(5, 16, 33, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 400px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.matrix-node-structure:hover {
    background-color: rgba(7, 22, 46, 0.8);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.matrix-node-media-box {
    height: 170px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.matrix-node-text-box {
    padding: 24px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.matrix-node-serial {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 11px;
    color: #c5a059;
    font-weight: 700;
    margin-bottom: 10px;
}

.matrix-node-title-header {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.35;
}

.matrix-node-paragraph {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 12px;
    color: #798da3;
    line-height: 1.5;
    margin-bottom: 20px;
}

.matrix-node-arrow-link {
    color: #c5a059;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
}

/* Global Corporate Network Footprint */
.institutional-trust-strip {
    background-color: #ffffff;
    padding: 55px 0;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.trust-strip-header {
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8a99ad;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.flex-brand-logospace {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.flex-brand-logospace img {
    max-height: 34px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.flex-brand-logospace img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Fixes for non-framework stack layout elements */
@media (max-width: 1024px) {
    .metrics-layout-grid,
    .competency-layout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .six-column-matrix-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-main-title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .metrics-layout-grid,
    .competency-layout-grid,
    .six-column-matrix-grid {
        grid-template-columns: 1fr;
    }
    .ecosystem-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .metric-data-node {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 15px;
    }
}

/* Base Architecture Layout Elements */
.aticc-viewport {
    width: 100%;
    background-color: var(--color-primary);
    overflow-x: hidden;
}

.container-max {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.full-width-white {
    width: 100%;
    background: var(--bg-white-2) !important;
    padding: 100px 0;
}

.full-width-gray {
    width: 100%;
    background: var(--color-primary-light);
    padding: 100px 0;
}

.full-width-dark-navy {
    width: 100%;
    background: var(--color-primary-dark);
    padding: 120px 0;
}

/* Boundary Separators */
.border-top-separator {
    border-top: 1px solid var(--border-light);
}
.border-bottom-separator {
    border-bottom: 1px solid var(--border-light);
}

/* Typography Component Elements */
.brand-gold-text {
    color: var(--color-accent);
}
.gold-brand-text {
    color: var(--color-accent);
}

.breadcrumb {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 500;
}

.breadcrumb-light {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-gray-2);
    margin-bottom: 16px;
    display: block;
    font-weight: 500;
}

.breadcrumb-gold-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: block;
    font-weight: 500;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--color-text-lighter-2);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-text-dark {
    font-size: 17px;
    font-size: 15px;
    color: var(--color-text-gray-2);
    line-height: 1.7;
}

.section-text-muted {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}
.max-w-700 {
    max-width: 700px;
    margin: 0 auto;
}
.margin-auto-centered {
    margin: 0 auto;
}

.centered-heading-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* About Custom Hero Sizing Matrix */
.about-hero-block {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background: radial-gradient(
        circle at 70% 30%,
        var(--color-primary-light) 0%,
        var(--color-primary) 80%
    );
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-mask-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    mask-image: linear-gradient(to left, #000 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, #000 65%, transparent 100%);
    z-index: 1;
    opacity: 0.5;
}

.about-hero-text-container {
    max-width: 750px;
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}

.about-main-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--color-text-lighter-2);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-supporting-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-gray-2);
    margin-bottom: 36px;
}

/* Custom Inline Bullet Stacks */
.about-bullet-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-bullet-node {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bullet-check-icon {
    min-width: 24px;
    height: 24px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 11px;
    margin-top: 2px;
}

.bullet-bold-label {
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.03em;
    font-size: 13px;
    display: inline-block;
    margin-right: 4px;
}

.bullet-desc-text {
    color: var(--color-text-gray-2);
    font-size: 15px;
}

/* Policy Split Component Layer */
.policy-split-grid {
    display: grid;
    grid-template-columns: 4fr 7fr;
    gap: 80px;
    align-items: start;
}

.panel-inner-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-text-lighter-2);
    line-height: 1.3;
    margin-bottom: 16px;
}

.panel-inner-paragraph {
    font-size: 16px;
    color: var(--color-text-gray-2);
    line-height: 1.65;
}

/* Clean List Standardized Setup */
.clean-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clean-bullet-list li {
    padding: 16px 0;
    font-size: 15px;
    color: var(--color-text-gray-2) !important;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
}

.clean-bullet-list li:first-child {
    padding-top: 0;
}
.clean-bullet-list li:last-child {
    border-bottom: none;
}

.clean-bullet-list li::before {
    content: "✓";
    color: var(--color-accent);
    margin-right: 16px;
    font-weight: bold;
}

.clean-bullet-list li span {
    font-weight: 600;
    color: var(--color-text-lighter-2);
    margin-right: 6px;
}

/* Complex Counter Framework Variant */
.complex-counter-list {
    counter-reset: aticc-counter;
}
.complex-counter-list li::before {
    counter-increment: aticc-counter;
    content: "0" counter(aticc-counter) ".";
    color: var(--color-accent);
    font-weight: 600;
    font-size: 14px;
    margin-right: 16px;
}

.text-block-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stack-row-node {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-gray-2);
    margin: 0;
}

.stack-row-node span {
    font-weight: 600;
    color: var(--color-text-lighter-2);
    display: block;
    margin-bottom: 4px;
}

/* Four Grid Component Engine */
.governance-four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.margin-top-60 {
    margin-top: 60px;
}

.gov-node-card {
    background: var(--color-primary-light);
    padding: 40px 30px;
    border-bottom: 2px solid var(--color-accent);
    transition: all 0.3s ease;
}

.gov-node-card:hover {
    transform: translateY(-4px);
}

.gov-node-card.white-variant {
    background: var(--color-primary);
    border: 1px solid var(--border-light);
    border-bottom: 2px solid var(--color-accent);
}

.gov-card-header-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.gov-node-card h4 {
    font-size: 19px;
    font-weight: 500;
    color: var(--color-text-lighter-2);
    margin-bottom: 14px;
}

.gov-node-card p {
    font-size: 14px;
    color: var(--color-text-gray-2);
    line-height: 1.6;
}

.standard-three-column-override {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Callout Node Architecture */
.large-statement-callout {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    color: var(--color-text-lighter-2);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    line-height: 1.2;
}

.divider-gold {
    color: var(--color-accent);
    padding: 0 10px;
}

/* Compare Matrix Component */
.compare-vertical-wrapper {
    width: 100%;
}

.compare-matrix-rows {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-light);
}

.compare-row-node {
    display: grid;
    grid-template-columns: 4fr 7fr;
    gap: 80px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}

.compare-label-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
}

.compare-desc-body {
    font-size: 15px;
    color: var(--color-text-gray-2);
    line-height: 1.65;
}

/* Bottom Statement Section */
.final-quote-slat {
    background: var(--color-primary-dark);
    text-align: center;
    padding: 120px 0;
    width: 100%;
    border-top: 1px solid var(--border-light);
}

.axiom-dark-text {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 400;
    color: var(--color-text-lighter-2);
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Animation Classes */
.fade-up,
.fade-left,
.fade-right,
.scale-in,
.glide-in {
    opacity: 0;
    will-change: transform, opacity;
}

.fade-up.revealed {
    animation: smoothFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.glide-in.revealed {
    animation: smoothGlide 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.scale-in.revealed {
    animation: smoothScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes smoothFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes smoothGlide {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes smoothScale {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.delay-1 {
    animation-delay: 0.05s;
}
.delay-2 {
    animation-delay: 0.1s;
}
.delay-3 {
    animation-delay: 0.15s;
}
.delay-4 {
    animation-delay: 0.2s;
}

/* Global Responsive Breakpoint Engine */
@media (max-width: 1200px) {
    .governance-four-grid,
    .standard-three-column-override {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title-dark {
        font-size: 36px;
    }
    .about-main-title {
        font-size: 46px;
    }
    .large-statement-callout {
        font-size: 28px;
    }
    .axiom-dark-text {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .policy-split-grid,
    .compare-row-node {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-mask-graphic {
        opacity: 0.2;
        width: 100%;
    }
    .about-hero-text-container {
        max-width: 100%;
    }
    .full-width-white,
    .full-width-gray,
    .full-width-dark-navy {
        padding: 70px 0;
    }
    .compare-row-node {
        padding: 24px 0;
    }
}

@media (max-width: 768px) {
    .governance-four-grid,
    .standard-three-column-override {
        grid-template-columns: 1fr;
    }
    .container-max {
        padding: 0 24px;
    }
    .section-title-dark {
        font-size: 28px;
    }
    .about-main-title {
        font-size: 32px;
    }
    .large-statement-callout {
        font-size: 22px;
    }
    .axiom-dark-text {
        font-size: 26px;
    }
    .divider-gold {
        display: block;
        margin: 10px 0;
    }
}
