/* ==========================================================================
   SMOOTH SCROLL NATIVE LINKS DRIVER
   ========================================================================== */
html {
    scroll-behavior: smooth;
    /* This adds native top padding space so floating fixed headers don't block titles on arrival */
    scroll-padding-top: 100px; 
}

/* GLOBAL DESIGN SYSTEM - WHITE CLEAN THEME */
:root {
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --primary-blue: #0284c7;
    --accent-blue-glow: rgba(2, 132, 199, 0.07);
    --text-main: #0f172a;
    --text-muted: #475569;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
}

/* GRID ACCENT MESH LAYER */
.grid-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(2, 132, 199, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 132, 199, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -2;
}

.light-orb {
    position: fixed;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(140px);
    opacity: 0.45;
}

.orb-1 {
    top: -5%;
    right: -5%;
    background: radial-gradient(circle, #bae6fd 0%, transparent 75%);
}

.orb-2 {
    bottom: -5%;
    left: -5%;
    background: radial-gradient(circle, #c084fc 0%, transparent 75%);
}

/* FLOATING NAVIGATION DOCK */
header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    z-index: 100;
}

.nav-dock {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.logo span { color: var(--primary-blue); }
.logo-icon { width: 22px; height: 22px; color: var(--primary-blue); }

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 14px;
    border-radius: 20px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
    background: var(--accent-blue-glow);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--accent-blue-glow);
    border-color: var(--primary-blue);
}

/* HERO BLOCK AREA */
.hero {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 24px 60px;
}

.badge {
    background: var(--accent-blue-glow);
    border: 1px solid rgba(2, 132, 199, 0.2);
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    max-width: 900px;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--primary-blue); }
.hero p { font-size: 1.1rem; line-height: 1.6; color: var(--text-muted); max-width: 720px; margin-bottom: 36px; }

.btn-group { display: flex; gap: 16px; }

.btn {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn i { width: 14px; height: 14px; }
.btn-primary { background: var(--primary-blue); color: #ffffff; border: none; box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4); }
.btn-secondary { background: #ffffff; color: var(--text-main); border: 1px solid var(--border-color); }
.btn-secondary:hover { border-color: var(--primary-blue); transform: translateY(-2px); background: var(--bg-light); }

/* GRID CONTAINER SYSTEMS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-header { margin-bottom: 48px; }
.section-header h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; display: flex; align-items: center; gap: 12px; }
.section-header h2 span { color: var(--primary-blue); }
.section-header p { color: var(--text-muted); margin-top: 8px; font-size: 1rem; max-width: 600px; }

.white-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
    transition: var(--transition);
}

.white-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(2, 132, 199, 0.25);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.06);
}

/* RESPONSIVE SUB-GRID CONFIGURATIONS */
.cad-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.feature-icon-box { width: 46px; height: 46px; background: var(--accent-blue-glow); border: 1px solid rgba(2, 132, 199, 0.2); color: var(--primary-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; }

/* TABS MODULE */
.tabs-container { margin-top: 32px; }
.tab-buttons { display: flex; gap: 10px; margin-bottom: 32px; border-bottom: 1px solid var(--border-color); padding-bottom: 8px; overflow-x: auto; }
.tab-btn { background: transparent; border: none; color: var(--text-muted); font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; padding: 8px 16px; cursor: pointer; transition: var(--transition); position: relative; white-space: nowrap; }
.tab-btn.active, .tab-btn:hover { color: var(--primary-blue); }
.tab-btn.active::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 100%; height: 3px; background: var(--primary-blue); border-radius: 2px; }
.tab-pane { display: none; animation: fadeIn 0.4s ease; }
.tab-pane.active { display: block; }
.sector-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.accent-text { color: var(--primary-blue); }
.sector-margin { margin-top: 10px; }

/* WORKFORCE GRAPHICS SYSTEM */
.workforce-showcase { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.engineer-list { display: flex; flex-direction: column; gap: 12px; }
.engineer-row { display: flex; align-items: center; gap: 16px; background: #ffffff; border: 1px solid var(--border-color); border-radius: 12px; padding: 16px; transition: var(--transition); }
.engineer-row:hover { background: var(--accent-blue-glow); border-color: rgba(2, 132, 199, 0.2); transform: translateX(4px); }
.engineer-num { font-family: var(--font-display); font-weight: 700; color: var(--primary-blue); font-size: 1.1rem; }
.eng-row-title { font-size: 0.95rem; margin-bottom: 2px; }
.advantage-box { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.adv-card { background: #ffffff; border: 1px solid var(--border-color); padding: 20px; border-radius: 12px; text-align: center; }
.adv-icon { color: var(--primary-blue); width: 24px; height: 24px; }
.adv-card h4 { font-family: var(--font-display); font-size: 0.88rem; color: var(--primary-blue); margin: 10px 0 6px; }
.adv-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }

/* REVIEWS MATRIX */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card { display: flex; flex-direction: column; justify-content: space-between; }
.quote-icon { color: rgba(2, 132, 199, 0.15); margin-bottom: 16px; width: 32px; height: 32px; }
.review-text { font-style: italic; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; font-size: 0.92rem; }
.client-info h5 { font-family: var(--font-display); font-weight: 700; color: var(--text-main); font-size: 0.95rem; }
.client-info p { font-size: 0.82rem; color: var(--primary-blue); }

/* B2B CONVERSION HUB HOOKS */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-panel { display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.contact-panel-title { font-size: 1.8rem; letter-spacing: -0.5px; }
.contact-panel-title span { color: var(--primary-blue); }
.contact-rows-container { display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; align-items: center; gap: 12px; }
.contact-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-blue-glow); border: 1px solid rgba(2, 132, 199, 0.2); color: var(--primary-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-text h5 { font-size: 0.75rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.5px; }
.contact-text p, .contact-text a { color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 0.95rem; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group-full { grid-column: span 2; }
.form-control { width: 100%; background: var(--bg-light); border: 1px solid var(--border-color); padding: 12px 16px; border-radius: 8px; color: var(--text-main); font-family: var(--font-body); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1); background: #ffffff; }
textarea.form-control { resize: none; height: 110px; }
.form-submit-btn { width: 100%; justify-content: center; }

/* CORPORATE FOOTER SYSTEM */
footer { border-top: 1px solid var(--border-color); background: #ffffff; padding: 30px 24px; font-size: 0.85rem; color: var(--text-muted); }
.footer-container { padding: 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FLUID AUTOMATIC RESPONSIVENESS ADAPTOR (MOBILE & DESKTOP AUTO-ADAPTABILITY)
   ========================================================================== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.3rem; }
    .workforce-showcase, .contact-layout { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group-full { grid-column: span 1; }
    
    /* Responsive Dropdown Menu Drawer configuration */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        flex-direction: column;
        padding: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        display: none;
        gap: 4px;
    }
    
    /* Class activated dynamically by Javascript click actions */
    .nav-links.mobile-open {
        display: flex;
        animation: fadeIn 0.3s ease;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 1.85rem; }
    .hero p { font-size: 0.95rem; }
    .btn-group { flex-direction: column; width: 100%; }
    .btn { justify-content: center; }
    .advantage-box { grid-template-columns: 1fr; }
    .nav-cta-btn { display: none; } /* Focus real estate workspace layout */
    .white-panel { padding: 24px; }
}

.form-group {
    display: flex;
}

/* Adds space to the right of the first input only */
.form-group input:first-child {
    margin-right: 15px;
}
/* ==========================================
   DYNAMIC ER&D ENVIRONMENTS GALLERY ARCHITECTURE
   ========================================== */
.erd-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 50px;
    text-align: left;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.6;
}

/* Intelligent Auto-Adjusting Grid Structure */
.erd-grid {
    display: grid;
    /* Auto-fill manages desktop (3 columns), tablet (2 columns), and mobile (1 column) seamlessly */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Card Container Components */
.erd-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.erd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px var(--accent-blue-glow);
    border-color: var(--primary-blue);
}

/* Aspect-Ratio Driven Image Management Layers */
.erd-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.erd-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.erd-card:hover .erd-image-wrapper img {
    transform: scale(1.04);
}

/* Graphic Fallback Matrix for Remaining Cards */
.placeholder-graphic {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Card Typography Interfaces */
.erd-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.erd-content h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.4;
}

.erd-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
/* ========================================================
   ENTERPRISE CONTACT SECTION - RESPONSIVE STYLING ENGINE
   ======================================================== */

/* --- Typography & Spacing Variables --- */
.contact-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Base Form Control Setup */
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color, #E2E8F0);
    background: #F8FAFC;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-dark, #2C3E50);
    font-family: inherit;
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--kmba-blue, #005A9C);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.15);
}
textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

/* --- Layout Architecture (Desktop Mode) --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Asymmetric split layout */
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

/* Typography Hierarchy */
.contact-panel-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark, #2C3E50);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.contact-panel-title span {
    color: var(--kmba-blue, #005A9C);
    background: linear-gradient(135deg, var(--kmba-blue, #005A9C) 30%, var(--kmba-teal, #00A896) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-desc {
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    color: var(--text-muted, #7F8C8D);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Info Rows Infrastructure */
.contact-rows-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-row {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #EBF1F6;
    color: var(--kmba-blue, #005A9C);
    border-radius: 8px;
    flex-shrink: 0;
}
.contact-icon svg, .contact-icon i {
    width: 20px;
    height: 20px;
}
.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-dark, #2C3E50);
}
.contact-text h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-dark, #2C3E50);
}
.contact-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4A5568;
    margin-bottom: 1rem;
}
.contact-text p:last-child {
    margin-bottom: 0;
}
.contact-text a {
    display: block;
    font-size: 0.95rem;
    color: var(--kmba-blue, #005A9C);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.contact-text a:hover {
    text-decoration: underline;
    color: var(--kmba-teal, #00A896);
}

/* Form Matrix Grids */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.form-group-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-submit-btn {
    background: var(--kmba-blue, #005A9C);
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.25s ease;
}
.form-submit-btn:hover {
    background: var(--kmba-teal, #00A896);
}

/* --- 2. AUTOMATIC ADAPTATION BREAKPOINTS --- */

/* Tablet & Smaller Desktop Refinements (max-width: 968px) */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr; /* Switch to single stack layout */
        gap: 3rem;
    }
    .contact-info-panel {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--border-color, #E2E8F0);
    }
}

/* Portrait Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    .contact-wrapper {
        padding: 1.25rem 1rem; /* Maximize usable space on small mobile viewports */
        border-radius: 8px;
    }
    .form-group-split {
        grid-template-columns: 1fr; /* Stack First and Last Name input vertically */
        gap: 1.25rem;
    }
    .contact-row {
        gap: 0.85rem;
    }
    .contact-icon {
        width: 38px;
        height: 38px;
    }
    .contact-icon svg, .contact-icon i {
        width: 18px;
        height: 18px;
    }
}
/* ==========================================================================
   KMBA TOP NAV HEADER - LEFT LOGO & CENTERED ANIMATED TICKER
   ========================================================================== */

.main-header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* --- LEFT CORNER LOGO STYLING --- */
.logo-left-corner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
}

.mini-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-left-corner:hover .mini-logo-img {
    transform: rotate(10deg) scale(1.05);
}

.logo-text-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0c3e66; /* Deep executive blue */
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    color: #0d5c4b; /* Deep corporate teal */
    letter-spacing: 0.1em;
}

/* --- CENTERED ANIMATED JOURNEY TEXT --- */
.center-banner-ticker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: linear-gradient(90deg, rgba(13, 92, 75, 0.04) 0%, rgba(12, 62, 102, 0.04) 100%);
    border: 1px solid rgba(12, 62, 102, 0.08);
    padding: 0.45rem 1.25rem;
    border-radius: 30px;
    pointer-events: none; /* Keeps center text purely visual */
    white-space: nowrap;
}

.journey-static-txt {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0c3e66;
    letter-spacing: 0.08em;
}

.journey-divider {
    color: rgba(0, 0, 0, 0.15);
    font-size: 0.8rem;
    font-weight: 300;
}

.dynamic-motto-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.journey-animated-txt {
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e; /* Highlight green */
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Class hooks driven by JavaScript */
.journey-fade-out {
    opacity: 0;
    transform: translateY(-8px);
}

.journey-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- RIGHT CORNER ACTIONS --- */
.header-right-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.header-minimal-btn {
    background-color: #0c3e66;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    transition: background-color 0.2s ease;
}

.header-minimal-btn:hover {
    background-color: #0d5c4b;
}

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES (AUTO-ADAPTABILITY)
   ========================================================================== */
@media (max-width: 1024px) {
    /* Hide center banner on smaller screens to prevent overlapping */
    .center-banner-ticker {
        display: none;
    }
}
/* ==========================================================================
   BLUEPRINT HIGH-TECH BRANDING DESIGN (KMBA BLUE MATRIX)
   ========================================================================== */

.platform-brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 4.5rem auto 3rem auto;
    width: 100%;
    text-align: center;
}

/* --- 1. INDUSTRIAL LOGO MATTE MATRIX --- */
.plt-logo-viewport {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.plt-center-matte {
    position: relative;
    width: 115px;
    height: 115px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06),
                0 2px 5px rgba(15, 23, 42, 0.02);
    z-index: 5;
    padding: 14px;
}

.plt-brand-img {
    width: 82%;
    height: 82%;
    object-fit: contain;
}

/* Blueprint Line-Weight Calibration Rings */
.plt-axis-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ring-primary {
    width: 152px;
    height: 152px;
    border: 1px solid rgba(0, 114, 255, 0.2);
    border-left: 1.5px solid #0072ff; /* Deep Tech Blue Target Point */
    animation: industrialRotation 14s linear infinite;
}

.ring-secondary {
    width: 134px;
    height: 134px;
    border: 1px dashed rgba(0, 210, 255, 0.25);
    border-right: 1.5px solid #00d2ff; /* Electric Cyan Target Point */
    animation: industrialRotationReverse 9s linear infinite;
}

/* --- 2. LUXURY HIGH-TECH DESIGN TYPOGRAPHY --- */
.plt-identity-stack {
    max-width: 950px;
    padding: 0 2rem;
}

.plt-main-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 2.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

/* Professional Slate-Navy Gradient Mask */
.txt-navy {
    background: linear-gradient(135deg, #0f172a 30%, #1e3a8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Shifting Cyan Gradient Core Component */
.txt-cyan {
    background: linear-gradient(135deg, #0056b3 0%, #00d2ff 50%, #0056b3 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: chromaticShimmer 5s linear infinite;
}

/* Architectural minimalist tech dash */
.txt-blueprint-dash {
    width: 5px;
    height: 30px;
    background-color: rgba(0, 114, 255, 0.15);
    border-radius: 3px;
    margin: 0 0.25rem;
}

/* --- 3. PREMIUM RUNTIME TAGLINE TRACK --- */
.plt-tagline-engine {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.plt-sub-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.4em; /* Technical blueprint presentation spacing */
    color: #64748b; /* Clean premium slate gray */
    margin: 0;
    text-transform: uppercase;
    animation: blueprintDataPulse 3s ease-in-out infinite alternate;
}

.plt-decorator-dot {
    width: 4px;
    height: 4px;
    background-color: #00d2ff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
}

/* --- 4. FLUID METRIC MOTION ENGINES --- */
@keyframes industrialRotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes industrialRotationReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* Ultra-smooth sweeping light effect across the title */
@keyframes chromaticShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sophisticated contrast switch simulating high-end display arrays */
@keyframes blueprintDataPulse {
    0% {
        color: #64748b;
        letter-spacing: 0.4em;
    }
    100% {
        color: #1e293b;
        letter-spacing: 0.41em;
    }
}

/* --- 5. RESPONSIVE SCALE MATRIX FOR MOBILE DEVICES --- */
@media (max-width: 768px) {
    .platform-brand-container {
        margin: 3rem auto 1.5rem auto;
    }
    
    .plt-logo-viewport {
        width: 125px;
        height: 125px;
        margin-bottom: 1.25rem;
    }
    
    .plt-center-matte {
        width: 90px;
        height: 90px;
        padding: 10px;
    }
    
    .ring-primary {
        width: 116px;
        height: 116px;
    }
    
    .ring-secondary {
        width: 102px;
        height: 102px;
    }
    
    .plt-main-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.35rem;
    }
    
    .txt-blueprint-dash {
        display: none; /* Strip out geometric accents on narrow smartphone bounds */
    }
    
    .plt-sub-text {
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        line-height: 1.4;
    }
    
    @keyframes blueprintDataPulse {
        0% { color: #64748b; letter-spacing: 0.22em; }
        100% { color: #1e293b; letter-spacing: 0.23em; }
    }
}