/**
 * Yugantar Cybernetics - Fresh "Unified Island" UI System
 */

/* =========================================
   1. ISLAND HEADER TOP-LEVEL
========================================= */

.sys-header-island {
    height: 110px;
    background: rgba(2, 8, 19, 0.7);
    /* Much deeper glass for elite presence */
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2000;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.island-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
}

/* Contracted State on Scroll */
.sys-header-island.header-contracted {
    height: 75px;
    background: rgba(2, 6, 17, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(194, 155, 100, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* =========================================
   2. THE NAVIGATION ISLAND (CENTER)
========================================= */

.nav-island {
    justify-self: center;
    background: rgba(6, 11, 25, 0.95);
    /* Solid foundation for link contrast */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 100px;
    padding: 8px 12px;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 153, 51, 0.05);
    transition: all 0.4s var(--sys-ease-cinematic);
}

.nav-island::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), transparent, rgba(245, 158, 11, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.nav-island:hover::before {
    opacity: 1;
}

.nav-island:hover {
    border-color: rgba(194, 155, 64, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Glass Command Center: The ERP Nexus */
.glass-command-center {
    position: relative;
    background: #020617;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0;
}

.glass-command-bg {
    position: absolute;
    inset: -50px;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(2, 6, 23, 0.4) 0%, #020617 100%),
        url('../../images/sanatani_cyber_hero.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.6;
    filter: blur(2px) brightness(0.7);
}

.glass-panel-nexus {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 40px;
    padding: 80px 60px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(212, 175, 55, 0.05);
    z-index: 5;
    overflow: hidden;
    max-width: 1100px;
    width: 90%;
}

.glass-panel-nexus::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 55%
    );
    animation: glassReflection 8s infinite linear;
}

@keyframes glassReflection {
    0% { transform: translate(-30%, -30%); }
    100% { transform: translate(30%, 30%); }
}

.holographic-header {
    font-size: 4.8rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 40%, #d4af37 60%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    line-height: 1.1;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
    position: relative;
}

.holographic-header::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(212, 175, 55, 0.1) 51%);
    background-size: 100% 4px;
    -webkit-background-clip: text;
    background-clip: text;
    pointer-events: none;
    opacity: 0.3;
}

.data-orbital {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.data-orbital i {
    font-size: 1.5rem;
    color: var(--sys-core-gold);
    margin-bottom: 5px;
}

.data-orbital .stat {
    font-size: 0.75rem;
    color: #fff;
    font-weight: 700;
    font-family: monospace;
}

.sub-text-premium {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Premium Services Grid: The World-Class Standard */
.service-card-premium {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 100%;
    background: #060c1a;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card-premium:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.1);
}

.card-visual-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card-premium:hover .card-visual-layer {
    transform: scale(1.1);
}

.card-visual-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.card-overlay-nexus {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(6, 12, 26, 0.4) 0%,
        rgba(6, 12, 26, 0.85) 60%,
        #060c1a 100%
    );
}

.card-content-premium {
    position: relative;
    z-index: 3;
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon-box-v2 {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    transition: all 0.4s ease;
}

.service-card-premium:hover .service-icon-box-v2 {
    background: var(--sys-core-gold);
    transform: rotateY(180deg);
}

.service-icon-box-v2 i {
    font-size: 2rem;
    color: var(--sys-core-gold);
    transition: all 0.4s ease;
}

.service-card-premium:hover .service-icon-box-v2 i {
    color: #000;
}

.premium-card-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.premium-card-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.premium-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.premium-feature-list li i {
    color: var(--sys-core-gold);
    font-size: 1.1rem;
}

/* World-Class Interactive Nexus Console */
.nexus-cta-section {
    position: relative;
    padding: 160px 0;
    background: #02060f;
    overflow: hidden;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.digital-dharma-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    transform: perspective(1000px) rotateX(60deg) translateY(-20%);
    opacity: 0.3;
    animation: grid-scroll 20s linear infinite;
    z-index: 1;
}

@keyframes grid-scroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 1000px; }
}

.cta-nexus-card-interactive {
    position: relative;
    z-index: 20;
    background: rgba(15, 32, 59, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 100px 60px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 
        0 40px 150px rgba(0, 0, 0, 0.6),
        inset 0 0 40px rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease-out, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.cta-nexus-card-interactive:hover {
    box-shadow: 
        0 60px 200px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 175, 55, 0.15);
}

.shimmer-border {
    position: absolute;
    inset: -2px;
    border-radius: 42px;
    padding: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        transparent 20%, 
        rgba(212, 175, 55, 0.8) 50%, 
        transparent 80%, 
        transparent 100%
    );
    background-size: 200% 100%;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    animation: border-shimmer 4s linear infinite;
    pointer-events: none;
}

@keyframes border-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Micro-Orbitals */
.orbital-engine {
    position: absolute;
    inset: -100px;
    z-index: 10;
    pointer-events: none;
}

.orb-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(15, 32, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sys-core-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    animation: orb-float 10s infinite ease-in-out;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.1); }
}

.cta-subtext-elite {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 850px;
    margin: 0 auto 60px;
    line-height: 1.7;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.elite-console-showcase {
    position: relative;
    padding: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 70% 30%, #061126 0%, #02060f 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.dharma-neural-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 80px 80px, 80px 80px;
    z-index: 1;
    transform: perspective(1200px) rotateX(25deg);
    opacity: 0.5;
    animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.3; transform: perspective(1200px) rotateX(25deg) scale(1); }
    50% { opacity: 0.6; transform: perspective(1200px) rotateX(28deg) scale(1.05); }
}

.metallic-glow-title {
    font-size: clamp(2.5rem, 8vw, 6rem) !important;
    font-weight: 1000 !important;
    color: #ffffff !important;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 40%, #c0c0c0 60%, #444444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px !important;
    line-height: 1.1 !important;
    margin-bottom: 30px !important;
    text-transform: uppercase;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    position: relative;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    z-index: 50;
}

.corporate-subtext-modern {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 60px;
    font-weight: 200;
    max-width: 900px;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Orbital Console Modules */
.orbital-features-arc {
    display: flex;
    gap: 40px;
    margin-top: 80px;
    position: relative;
    z-index: 60;
}

.orbital-console-node {
    position: relative;
    width: 200px;
    height: 220px;
    background: rgba(15, 32, 59, 0.3);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    overflow: hidden;
}

.orbital-console-node::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg, transparent, var(--sys-core-gold), transparent);
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.3s;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.orbital-console-node:hover {
    background: rgba(15, 32, 59, 0.6);
    transform: translateY(-20px) rotateX(15deg) scale(1.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.orbital-console-node:hover::before {
    opacity: 1;
}

.node-icon-core {
    font-size: 3rem;
    color: var(--sys-core-gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

.node-label-modern {
    font-size: 0.9rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Holographic Shards */
.holographic-shard {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--sys-core-gold);
    pointer-events: none;
    z-index: 55;
    animation: shard-hover 6s infinite ease-in-out;
}

@keyframes shard-hover {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.8; }
}

.digital-horizon-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.15), transparent);
    z-index: 5;
    pointer-events: none;
}

/* 
   CINEMATIC TITLE-HERO (GLOBAL HEADER SYSTEM) 
   Used for About, Industries, Services, etc.
*/
.cinematic-title-hero {
    position: relative;
    padding: 120px 0 80px;
    background: #02060f;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.holographic-shard {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    filter: blur(20px);
    z-index: 2;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.shard-1 { top: 10%; left: 5%; animation: float-slow 15s infinite ease-in-out; }
.shard-2 { bottom: 10%; right: 5%; animation: float-slow 20s infinite ease-in-out reverse; }

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -30px) rotate(10deg); }
}

/* 2. Institutional Scale Recalibration (PROFESSIONAL FIX) */
.story-portal-cinematic {
    background: #020813;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.story-glass-scroller {
    background: rgba(15, 32, 59, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .story-portal-cinematic { padding: 60px 0; }
    .living-core-nexus { width: 240px !important; height: 240px !important; }
    .metallic-glow-title { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; letter-spacing: -1px !important; }
    .story-glass-scroller { padding: 1.5rem; border-radius: 20px; }
}

/* 3. Dynamic Story Dashboard & Analytics */
.story-dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--sys-ease-spring);
}

.story-dashboard-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.stat-value-huge {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--sys-core-saffron), var(--sys-core-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.audit-log-window {
    height: 120px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: rgba(16, 185, 129, 0.8);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.audit-feed-scroller {
    animation: audit-scroll 15s linear infinite;
}

@keyframes audit-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.audit-line {
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.audit-line .status-ok { color: #10b981; }
.audit-line .node-id { color: var(--sys-core-gold); opacity: 0.6; }

.data-ping-node {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 6px;
    height: 6px;
    background: var(--sys-core-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--sys-core-gold);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 575px) {
    .stat-value-huge { font-size: 2.2rem; }
    .audit-log-window { height: 100px; padding: 10px; }
}

/* 4. Elite Leadership (CEO Portal) Elements */
.ceo-neural-lattice {
    position: absolute;
    inset: -10%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.1) 1px, transparent 0);
    background-size: 30px 30px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: lattice-pulse 8s infinite ease-in-out;
}

@keyframes lattice-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.1; }
    50% { transform: scale(1.1) rotate(2deg); opacity: 0.2; }
}

.leadership-premium-card {
    background: rgba(15, 32, 59, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--sys-ease-cinematic);
}

.leadership-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border-color: var(--sys-core-gold);
}

.command-auth-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #10b981;
    text-transform: uppercase;
}

.auth-node-pulse {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
}

.sys-vertical-metadata {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--sys-core-gold);
    opacity: 0.2;
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.ceo-vision-container {
    perspective: 1500px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ceo-profile-inner {
    transition: transform 0.1s linear;
    transform-style: preserve-3d;
}

/* 4. Monolithic Institutional (Leadership) Elements */
.monolithic-onyx-card {
    background: #020817;
    border: 0.5px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--sys-ease-cinematic);
}

.monolithic-onyx-card:hover {
    border-color: var(--sys-core-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.institutional-seal-gold {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #D4AF37 40%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.institutional-seal-gold i {
    color: white;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
}

.dharma-jaali-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.vision-point-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-point-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-point-item i {
    color: var(--sys-core-gold);
    font-size: 1.1rem;
}

.ceo-profile-monolithic {
    background: #020813;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* 5. Institutional Codex (Values) Elements */
.codex-monolith-card {
    background: linear-gradient(135deg, rgba(2, 8, 19, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--sys-ease-cinematic);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pillar-cap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sys-core-gold), transparent);
    box-shadow: 0 0 15px var(--sys-core-gold);
    opacity: 0.8;
}

.pillar-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--sys-core-saffron), transparent);
    box-shadow: 0 0 15px var(--sys-core-saffron);
    opacity: 0.8;
}

.codex-monolith-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--sys-core-gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.blueprint-schematic-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.05) 1px, transparent 0);
    background-size: 50px 50px;
    opacity: 0.6;
    z-index: 1;
}

.connector-line-logic {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    z-index: 0;
}

.vertical-laser-scan {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: laser-sweep 12s infinite linear;
    pointer-events: none;
    z-index: 5;
}

@keyframes laser-sweep {
    0% { top: -20%; }
    100% { top: 120%; }
}

.codex-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.5s ease;
}

.codex-monolith-card:hover .codex-icon-wrapper {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--sys-core-gold);
    transform: rotateY(180deg);
}

.codex-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--sys-core-gold);
    transition: all 0.5s ease;
}

.codex-monolith-card:hover .codex-icon-wrapper i {
    transform: rotateY(-180deg);
    color: white;
}

/* 6. Institutional Mandate & Horizon (Mission/Vision) */
.onyx-mandate-card, .onyx-horizon-card {
    background: #020813;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--sys-ease-cinematic);
}

.onyx-mandate-card { border-left: 4px solid var(--sys-core-gold); }
.onyx-horizon-card { border-left: 4px solid var(--sys-core-saffron); }

.onyx-mandate-card:hover, .onyx-horizon-card:hover {
    background: #050d1a;
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border-color: rgba(212, 175, 55, 0.4);
}

.institutional-frame {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px;
    background: rgba(2, 8, 19, 0.5);
    border-radius: 4px;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--sys-core-gold);
    z-index: 5;
}

.corner-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.corner-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.corner-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.corner-br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.laser-matrix-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.tactical-coord-label {
    font-family: var(--sys-font-mono);
    font-size: 0.65rem;
    color: var(--sys-core-gold);
    opacity: 0.4;
    letter-spacing: 2px;
}

/* 7. Transformation Engine (Interactive CTA) */
.transformation-engine-interface {
    background: #020813;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.engine-node-hub {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: rgba(2, 8, 19, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(0,0,0,1);
}

.hub-audit { border-color: #ff4444; box-shadow: 0 0 20px rgba(255, 68, 68, 0.2); }
.hub-strategy { border-color: var(--sys-core-gold); animation: node-spin 20s infinite linear; }
.hub-workflow { border-color: var(--sys-core-saffron); box-shadow: 0 0 20px rgba(255, 153, 51, 0.2); }

.hub-audit i { color: #ff6666; font-size: 1.8rem; }
.hub-strategy i { color: var(--sys-core-gold); font-size: 2rem; }
.hub-workflow i { color: var(--sys-core-saffron); font-size: 1.8rem; }

.hub-pulse-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid currentColor;
    opacity: 0.5;
    animation: hub-ring-pulse 2s infinite ease-out;
}

@keyframes hub-ring-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes node-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.data-flow-conduit {
    position: absolute;
    top: 50%;
    left: 80px;
    right: 80px;
    height: 2px;
    background: rgba(212, 175, 55, 0.1);
    z-index: 1;
}

.data-packet {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--sys-core-gold);
    border-radius: 50%;
    top: -2px;
    box-shadow: 0 0 10px var(--sys-core-gold);
    animation: data-packet-flow 4s infinite linear;
}

@keyframes data-packet-flow {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.btn-laser-shimmer {
    background: var(--sys-core-gold);
    color: #020813 !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-laser-shimmer:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-45deg);
    animation: laser-shimmer 3s infinite;
}

@keyframes laser-shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.btn-laser-shimmer:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--sys-core-gold);
}

/* 8. Institutional Trust Ribbon — Elite Logo Showcase */
.trust-marquee-container {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Edge Fade Masks */
.trust-marquee-container::before,
.trust-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}
.trust-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #020813, transparent);
}
.trust-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #020813, transparent);
}

/* Scrolling Track */
.trust-marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}
.trust-marquee-track:hover {
    animation-play-state: paused;
}

/* Premium Glass Logo Pods */
.institutional-logo-pod {
    width: 200px;
    height: 85px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Frosted glass with visible contrast */
    background: rgba(20, 30, 55, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 16px 24px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.institutional-logo-pod:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 8px 30px rgba(212, 175, 55, 0.2),
        0 0 60px rgba(212, 175, 55, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-6px) scale(1.03);
}

/* Logo Images — Bright and Visible */
.client-logo-monolithic {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Bright silver-white conversion for dark theme */
    filter: grayscale(100%) invert(1) brightness(2) contrast(1.2);
    opacity: 0.85;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.institutional-logo-pod:hover .client-logo-monolithic {
    filter: grayscale(30%) invert(1) brightness(2.5) contrast(1.3)
            drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    opacity: 1;
    transform: scale(1.08);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2rem)); }
}

@media (max-width: 768px) {
    .trust-marquee-container { padding: 2.5rem 0; }
    .trust-marquee-track { gap: 2.5rem; }
    .institutional-logo-pod { width: 160px; height: 65px; padding: 12px; }
}

/* 
   INSTITUTIONAL SCALE RECALIBRATION (PROFESSIONAL FIX) 
   Restores Refined Balance & Information Density
*/

/* 1. Compact Institutional Core (Hero) */
.living-core-nexus {
    position: relative;
    width: 320px; /* Recalibrated for balance */
    height: 320px;
    margin: 0 auto;
    perspective: 1200px;
}

.core-chakra-engine {
    width: 240px; /* Scaled down for elegance */
    height: 240px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    animation: core-elevate 12s infinite ease-in-out; /* Majestically slow */
}

.guard-shield-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px; 
    height: 380px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    z-index: 5;
    animation: shield-pulse 8s infinite ease-in-out; 
}

/* Institutional Guard Widget (Gap-Filler) */
.institutional-guard-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1; /* Extremely subtle background layer */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mini-guard-chakra {
    width: 280px;
    height: 280px;
    animation: chakra-spin 60s infinite linear;
    filter: blur(1px);
}

.orbit-node-protect {
    position: absolute;
    width: 45px; /* Refined size */
    height: 45px;
    background: rgba(15, 32, 59, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    z-index: 15;
}

/* 2. Professional Watermark Recalibration */
.watermark-mesh-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04 !important; /* Extremely subtle etched feel */
    z-index: 1;
    pointer-events: none;
    width: 80% !important; /* Prevent horizontal crowding */
    height: auto !important;
}

.rotating-chakra-subtle {
    width: 500px !important; /* Compacted relative to previous scale */
    height: auto;
}

/* 3. Leadership Orbit & Story Core Elements */
.orbit-ring-saffron, .orbit-ring-gold {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    animation: rotate-slow 30s infinite linear;
    z-index: 1;
}

.orbit-ring-saffron { border-color: rgba(245, 158, 11, 0.3); animation-duration: 40s; }
.orbit-ring-gold { border-color: rgba(212, 175, 55, 0.3); animation-duration: 25s; animation-direction: reverse; }

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-node-avatar-container {
    position: relative;
    width: 140px;
    height: 140px;
    z-index: 10;
    transition: transform 0.4s var(--sys-ease-spring);
}

.orbit-node-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.2);
    background: #020813;
    position: relative;
    z-index: 5;
}

.orbit-node-wrapper:hover .orbit-node-avatar-container {
    transform: scale(1.1) translateY(-10px);
}

/* 5. Trust-Command Header Elements */
.laser-scan-line {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: laser-sweep 4s infinite linear;
    z-index: 5;
    pointer-events: none;
    filter: blur(5px);
}

.trust-command-badge {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.status-node-encrypted {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.btn-lead-grab {
    background: linear-gradient(135deg, var(--sys-core-saffron), #b45309);
    color: white !important;
    border: none !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s var(--sys-ease-spring);
    box-shadow: 0 10px 25px rgba(180, 83, 9, 0.3);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}

.btn-lead-grab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(180, 83, 9, 0.5);
    color: white !important;
}

/* 4. Majestic Motion Timing */
@keyframes core-elevate {
    0%, 100% { transform: translate(-50%, -50%) rotateX(10deg); }
    50% { transform: translate(-50%, -60%) rotateX(15deg); }
}

@keyframes shield-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.05; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.15; }
}

@keyframes chakra-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotating-chakra-v3 {
    animation: chakra-spin 60s infinite linear; /* Stabilized rotation */
    transform-origin: center center;
}

@keyframes laser-sweep {
    from { top: -20%; }
    to { top: 120%; }
}

.monitor-frame-elite:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 60px 150px rgba(0, 0, 0, 0.8);
}

.monitor-screen-v2 {
    width: 100%;
    display: block;
    border-radius: 4px;
}

.trust-badges-suite {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    opacity: 0.6;
}

.trust-badge-mono {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badge-mono i {
    font-size: 1.2rem;
    color: var(--sys-core-gold);
}

@media (max-width: 1199px) {
    .elite-showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .metallic-enterprise-title { font-size: 3rem; }
    .monitor-frame-elite { transform: none !important; }
}

/* World-Class Dynamic Governance Neural Mesh */
.governance-nexus-section {
    position: relative;
    padding: 140px 0;
    background: #020813;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.governance-grid-nexus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
}

.neural-mesh-canvas {
    position: relative;
    height: 650px;
    background: rgba(15, 32, 59, 0.1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chakra-engine-core {
    position: relative;
    width: 250px;
    height: 250px;
    z-index: 5;
    animation: chakra-perspective-rotate 15s linear infinite;
    transform-style: preserve-3d;
}

.chakra-engine-core svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

@keyframes chakra-perspective-rotate {
    0% { transform: perspective(1000px) rotateY(0deg) rotateX(15deg); }
    100% { transform: perspective(1000px) rotateY(360deg) rotateX(15deg); }
}

/* Neural Data Paths */
.neural-paths-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.neural-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: flow-data 5s infinite linear;
}

@keyframes flow-data {
    to { stroke-dashoffset: 0; }
}

/* Live Audit Ledger */
.audit-log-scroller {
    position: absolute;
    left: 0;
    top: 50px;
    bottom: 50px;
    width: 240px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-right: 1px solid rgba(212, 175, 55, 0.4);
    padding: 25px;
    overflow: hidden;
    z-index: 10;
}

.audit-feed-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scroll-ledger 20s linear infinite;
}

@keyframes scroll-ledger {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.ledger-entry {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Courier New', Courier, monospace;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.ledger-entry span { color: var(--sys-core-gold); }

.elite-text-core {
    padding: 80px 10%;
    display: flex;
    align-items: center;
}

/*/* World-Class Dynamic Impact Pulse Mesh */
.impact-nexus-section {
    position: relative;
    padding: 0;
    background: #020813;
    overflow: hidden;
}

.impact-grid-nexus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.impact-mesh-canvas {
    position: relative;
    height: 650px;
    background: rgba(15, 32, 59, 0.1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.india-impact-map {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
    opacity: 0.8;
}

/* Impact Ripples */
.impact-ripple-node {
    position: absolute;
}

.ripple-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--sys-core-gold);
    border-radius: 50%;
    animation: ripple-spread 4s infinite;
}

.ripple-ring:nth-child(2) { animation-delay: 1s; }
.ripple-ring:nth-child(3) { animation-delay: 2s; }

@keyframes ripple-spread {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 100px; height: 100px; opacity: 0; }
}

/* Growth Feed Ledger */
.growth-feed-scroller {
    position: absolute;
    right: 0;
    top: 50px;
    bottom: 50px;
    width: 240px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(212, 175, 55, 0.4);
    padding: 25px;
    overflow: hidden;
    z-index: 10;
}

.growth-feed-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scroll-growth 25s linear infinite;
}

@keyframes scroll-growth {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.growth-entry {
    font-size: 0.75rem;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.growth-entry span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

/* Glassmorphic Premium Buttons */
.btn-nexus-gold {
    background: var(--sys-core-gold);
    color: #000 !important;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-nexus-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.btn-nexus-outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-nexus-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-5px);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-island-link {
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.9);
    /* Increased opacity for elite readability */
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    display: block;
    transition: color 0.3s ease;
}

.nav-island-link:hover,
.nav-island-link.is-active {
    color: var(--sys-surface-white);
}

.nav-island-link.is-active {
    color: var(--sys-core-saffron);
}

/* Removed magnetic indicator as per user request for less busy UI */

/* =========================================
   3. ISLAND DROPDOWNS
========================================= */

.nav-island-item {
    position: relative;
}

.island-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    background: rgba(6, 18, 33, 0.98);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--sys-core-saffron);
    border-radius: 12px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-island-item:hover .island-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.drop-item {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.drop-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.drop-title {
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.drop-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    margin-top: 2px;
}

/* =========================================
   4. LATERAL ZONES
========================================= */

.brand-link {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sys-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--sys-font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.03em;
    display: flex;
    filter: drop-shadow(0 0 10px rgba(255, 153, 51, 0.1));
    transition: all 0.4s ease;
}

.logo-main .accent-1 {
    color: var(--sys-core-saffron);
}

.logo-main .accent-2 {
    color: var(--sys-surface-white);
    /* Faded dark replaced with high-contrast white */
}

.logo-sub {
    font-family: var(--sys-font-body);
    font-weight: 700;
    font-size: 0.58rem;
    letter-spacing: 5px;
    color: var(--sys-core-gold);
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.brand-link:hover .logo-main {
    transform: scale(1.02);
    filter: drop-shadow(0 0 15px rgba(255, 153, 51, 0.3));
}

.brand-link:hover .logo-main .accent-1 {
    color: #ffffff;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    animation: sysVibrancyPulse 4s infinite ease-in-out;
}

.brand-link:hover .logo-sub {
    letter-spacing: 6px;
    opacity: 1;
    color: #ffffff;
}

.island-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.island-cta {
    text-decoration: none !important;
    background: linear-gradient(135deg, var(--sys-core-saffron), #f59e0b);
    color: white;
    font-weight: 900;
    font-size: 0.72rem;
    letter-spacing: 2px;
    padding: 12px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s var(--sys-ease-spring);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.island-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    animation: sysShineSweep 5s infinite;
}

.island-cta:hover {
    background: var(--sys-core-gold);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.4);
    color: white;
}

/* =========================================
   5. MOBILE PORTAL
========================================= */

.island-mob-trigger {
    background: rgba(4, 12, 29, 0.9);
    border: 1px solid rgba(194, 155, 64, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.island-mob-trigger:hover {
    background: var(--sys-core-navy-700);
    transform: scale(1.05);
}

.island-mob-trigger span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    transition: 0.3s ease;
}

.island-mobile-portal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(2, 8, 19, 0.98);
    backdrop-filter: blur(50px);
    z-index: 3000;
    transition: right 0.7s cubic-bezier(0.85, 0, 0.15, 1);
}

.island-mobile-portal.is-active {
    right: 0;
}

.portal-inner {
    padding: 10vh 10vw;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

.portal-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portal-link {
    text-decoration: none !important;
    color: white;
    font-family: var(--sys-font-heading);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.portal-link:hover {
    color: var(--sys-core-saffron);
}

.portal-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================
   6. ENTERPRISE FOOTER SYSTEM
========================================= */

.sys-footer {
    background: var(--sys-core-navy-900);
    border-top: 1px solid var(--sys-border-light);
    color: var(--sys-text-primary-dark);
}

.sys-footer-heading {
    font-family: var(--sys-font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--sys-surface-white);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    position: relative;
}

.sys-footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--sys-core-gold);
}

.sys-footer-link {
    display: block;
    color: var(--sys-text-secondary-dark);
    text-decoration: none !important;
    font-size: 0.9rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    width: fit-content;
}

.sys-footer-link:hover {
    color: var(--sys-core-saffron);
    transform: translateX(5px);
}

.sys-footer-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.sys-footer-link:hover i {
    color: var(--sys-core-saffron);
    transform: scale(1.2);
}

/* Dark Glass Card Variant for Footer */
.sys-cta-glass-card-dark {
    background: rgba(15, 32, 59, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(194, 155, 64, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s var(--sys-ease-cinematic);
}

.sys-cta-glass-card-dark:hover {
    background: rgba(15, 32, 59, 0.6);
    border-color: rgba(194,155,64, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.footer-brand {
    transition: transform 0.3s ease;
}

.footer-brand:hover {
    transform: translateY(-3px);
}

.footer-about {
    font-size: 0.95rem;
    color: var(--sys-text-secondary-dark);
    max-width: 350px;
}

.sys-hover-lift {
    transition: transform 0.3s var(--sys-ease-spring), box-shadow 0.3s ease;
}

.sys-hover-lift:hover {
    transform: translateY(-5px);
}

/* =========================================
   7. TRUST STRIP (HUB) ARCHITECTURE
========================================= */

.sys-trust-island {
    background: rgba(4, 9, 20, 0.92);
    backdrop-filter: blur(25px) saturate(210%);
    -webkit-backdrop-filter: blur(25px) saturate(210%);
    border: none;
    border-radius: 24px;
    padding: 1.6rem 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.7),
        inset 0 0 30px rgba(255, 153, 51, 0.05),
        0 0 30px rgba(212, 175, 55, 0.05);
    transition: all 0.5s var(--sys-ease-cinematic);
}

/* Composite Fluid Border Glow */
.sys-trust-island::after {
    content: '';
    position: absolute;
    inset: -0px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,143,0,0.5), transparent 40%, rgba(212,175,55,0.4), transparent 60%, rgba(255,143,0,0.5));
    background-size: 200% 200%;
    animation: flowBorder 8s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

@keyframes flowBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sys-trust-island::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sys-core-gold), transparent);
    opacity: 0.8;
}

.trust-item-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sys-text-primary-dark);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s var(--sys-ease-spring);
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

/* Hover light bloom ripple */
.trust-item-v2::after {
    content: '';
    position: absolute;
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(255,143,0,0.2) 0%, transparent 70%);
    border-radius: 50%;
    left: 10%; top: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.trust-item-v2 i {
    font-size: 1.8rem;
    margin-right: 15px;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4));
    transition: all 0.4s var(--sys-ease-spring);
}

.trust-item-v2:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.trust-item-v2:hover::after {
    transform: translateY(-50%) scale(2.2);
}

.trust-item-v2:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.8));
    color: #ffffff !important;
}

.hub-separator {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.4), transparent);
}

@media (max-width: 767px) {
    .hub-separator {
        display: none;
    }
}

/* =========================================
   8. TRANSFORMATION CTA (GLASS CARD)
========================================= */

.sys-cta-glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(194, 155, 64, 0.2);
    border-radius: 30px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        inset 0 0 40px rgba(255, 255, 255, 0.5);
    transition: all 0.5s var(--sys-ease-cinematic);
    z-index: 10;
}

.sys-cta-glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: sysVibrancyPulse 6s infinite alternate;
}

.sys-cta-heading {
    font-weight: 800;
    font-size: var(--sys-text-2xl);
    letter-spacing: -0.02em;
    color: var(--sys-core-navy-900);
}

/* Button Overrides for Light Glass */
.sys-cta-glass-card .btn-sys-outline {
    border-color: var(--sys-core-gold);
    color: var(--sys-core-navy-900);
    background: rgba(255, 255, 255, 0.95);
    font-weight: 800;
}

.sys-cta-glass-card .btn-sys-outline:hover {
    background: var(--sys-core-navy-900);
    color: #ffffff;
    border-color: var(--sys-core-navy-900);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .sys-header-island {
        height: 70px;
    }

    .island-container {
        grid-template-columns: auto 1fr auto;
        gap: 15px;
    }

    .island-cta {
        padding: 0;
        width: 44px;
        height: 44px;
        justify-content: center;
        border-radius: 50%;
    }

    .island-cta i {
        margin: 0 !important;
        font-size: 1.2rem;
    }

    .sys-trust-island {
        padding: 1.5rem;
    }

    .trust-item-v2 {
        font-size: 0.75rem;
    }

    .trust-item-v2 i {
        font-size: 1.4rem;
        margin-right: 8px;
    }
}

/* Elite Text Border Box Structure */
.elite-text-border-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    height: 100%;
}

.corporate-subtext {
    text-align: justify !important;
    line-height: 1.8 !important;
}

.impact-stat-bar {
    display: flex !important;
    gap: 50px !important;
    margin: 40px 0 !important;
}

.impact-stat-item {
    border-left: 3px solid var(--sys-core-gold) !important;
    padding-left: 20px !important;
}

.impact-stat-val {
    display: block !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: #ffffff !important; /* Force Solid White for Visibility */
    line-height: 1.1 !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5) !important;
}

.impact-stat-lab {
    display: block !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}
/* =========================================
   5. HOME PAGE DYNAMIC ASSETS & HERO
========================================= */

.bg-yugantar-enterprise {
    position: relative;
    background-color: #020617 !important;
    background-image: 
        linear-gradient(90deg, #020617 40%, rgba(2, 6, 23, 0.4) 100%),
        url("../images/hero_bg_enterprise.png");
    background-size: cover;
    background-position: right center;
    background-attachment: scroll;
    overflow: hidden;
}

.bg-yugantar-enterprise::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat;
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.cyber-dashboard {
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(212,175,55,0.05);
}

.cyber-header {
    background: linear-gradient(90deg, rgba(212,175,55,0.1) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.cyber-stat-box {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.cyber-stat-box:hover {
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 0 15px rgba(212,175,55,0.15);
    transform: translateY(-2px);
}

.pulse-ring {
    animation: h-pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes h-pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.terminal-text {
    color: #0f0;
    font-family: monospace;
    font-size: 0.75rem;
    text-shadow: 0 0 5px rgba(0,255,0,0.3);
}

.sys-blinking-cursor {
    animation: h-blink 1s step-end infinite;
}

@keyframes h-blink { 50% { opacity: 0; } }

.chart-bar {
    width: 12%;
    background: linear-gradient(180deg, rgba(212,175,55,0.8) 0%, rgba(212,175,55,0.1) 100%);
    border-radius: 2px 2px 0 0;
    transition: height 0.5s ease;
}

.interactive-dashboard-perspective {
    transform: perspective(1200px) rotateY(-12deg) rotateX(4deg);
    z-index: 2;
}

.cyber-grid-overlay {
    background-image: linear-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.25;
}

.hero-glow-backstep {
    top: 50%; 
    left: 50%; 
    width: 140%; 
    height: 140%; 
    transform: translate(-50%, -50%); 
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 60%); 
    z-index: -1;
}

/* Logo pod duplicate override — removed, primary styles at L1263 handle this */

/* Stellar Core Section */
.bg-stellar-core {
    background-color: #020617;
    background-image: 
        radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 143, 0, 0.05) 0px, transparent 50%);
    background-size: cover;
    position: relative;
}
.stellar-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.stellar-glow-1, .stellar-glow-2 {
    position: absolute;
    width: 70vw;
    height: 70vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}
.stellar-glow-1 {
    top: -30%; left: -20%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.stellar-glow-2 {
    bottom: -30%; right: -20%;
    background: radial-gradient(circle, rgba(255,143,0,0.06) 0%, transparent 60%);
}

.stellar-border-y {
    border-top: 1px solid rgba(212, 175, 55, 0.2); 
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.gold-accent-line {
    width: 60px; 
    height: 3px; 
    background: var(--sys-core-gold); 
    margin-bottom: 1.5rem;
}

/* Transformation Section Overrides */
.transformation-border-y {
    border-color: rgba(194, 155, 64, 0.15) !important;
}

.transformation-pattern-overlay {
    background-image: url('data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath d=\'M30 0L60 30L30 60L0 30L30 0zM30 10L50 30L30 50L10 30L30 10zM30 20L40 30L30 40L20 30L30 20z\' fill=\'%23D4AF37\' fill-opacity=\'0.02\' fill-rule=\'evenodd\'/%3E%3C/svg%3E'); 
    z-index: 1;
}

/* Metrics Section */
.metrics-section {
    background-color: #01040a !important;
    position: relative;
    overflow: hidden;
}
.metrics-grid-overlay {
    position: absolute; inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 35px 35px;
    opacity: 0.5;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}
.metric-laser {
    position: absolute;
    width: 1.5px; height: 120px;
    background: linear-gradient(transparent, #ff8f00, #d4af37, transparent);
    z-index: 2;
    animation: laser-drop 4s linear infinite;
    opacity: 0.4;
}
@keyframes laser-drop {
    0% { transform: translateY(-120px); opacity: 0; }
    20% { opacity: 0.4; }
    80% { opacity: 0.4; }
    100% { transform: translateY(500px); opacity: 0; }
}

.metric-card-glass {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 3;
}
.metric-card-glass:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}
.metric-card-glass::before {
    content: '';
    position: absolute;
    width: 4px; height: 4px;
    background: #ff8f00;
    border-radius: 50%;
    top: 15px; right: 15px;
    box-shadow: 0 0 10px #ff8f00, 0 0 20px #ff8f00;
    animation: m-blink 2s infinite;
}
@keyframes m-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.metrics-border-y {
    border-top: 1px solid rgba(212,175,55,0.2); 
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* Final UI Alignment for Home Page */
.trust-island-hero {
    max-width: 1240px; 
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.trust-strip-border {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.client-logo-monolithic {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}
