/* ==========================================================================
   1. GLOBAL ARCHITECTURE & SYSTEM RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0f1d;
    --bg-surface: rgba(15, 23, 42, 0.65);
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --accent-blue: #38bdf8;
    --accent-cyan: #00ffcc;
    --accent-pink: #ff007f;
    --border-color: rgba(56, 189, 248, 0.15);
}

body {
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(at 50% 0%, rgba(56, 189, 248, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 0, 127, 0.05) 0px, transparent 40%);
    color: var(--text-main);
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Technical Tech Background Matrix Grid */
.matrix-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   2. STYLISH NAVIGATION BAR
   ========================================================================== */
.tech-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 29, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: var(--text-main);
}

.logo .dot {
    color: var(--accent-blue);
}

/* Navigation Links & Hamburger menu styles */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.terminal-trigger {
    color: var(--accent-blue);
}

.terminal-trigger:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 200, 0.4);
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

/* Pulsating Live Network Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    padding: 6px 14px;
    border-radius: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 255, 200, 0.7);
    animation: pulse 1.6s infinite;
}

.status-text {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--accent-cyan);
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 200, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 255, 200, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 200, 0);
    }
}

.hamburger-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

@media (max-width: 990px) {
    .hamburger-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 15, 29, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 105;
    }

    .nav-menu.active {
        right: 0;
    }
    
    .hamburger-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .status-indicator {
        display: none;
    }
}

/* ==========================================================================
   3. CORPORATE HERO FRAMEWORK SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 20px 100px 20px;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.tagline {
    font-family: monospace;
    color: var(--accent-blue);
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 40%, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 680px;
}

/* Custom Interactive Trigger Button */
.action-trigger {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 16px 32px;
    font-family: monospace;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.action-trigger:hover {
    background: rgba(56, 189, 248, 0.08);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
    transform: translateY(-2px);
}

/* ==========================================================================
   4. SERVICES CORE MATRIX GRID
   ========================================================================== */
.services-matrix {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 120px 20px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 40px;
    border-left: 2px solid var(--accent-blue);
    padding-left: 15px;
}

.matrix-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 990px) {
    .matrix-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Translucent Glassmorphism Cards */
.matrix-card {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 4px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s ease;
    min-height: 280px;
}

.card-edge {
    position: absolute;
    top: -1px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 25px;
}

.matrix-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.matrix-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Card competency mini-terminals layout styling */
.card-static-content {
    transition: opacity 0.25s ease;
}

.card-terminal-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: #04070d;
    border-radius: 4px;
    border: 1px solid var(--accent-blue);
    transition: opacity 0.25s ease;
    font-family: 'Space Mono', monospace;
    box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.08);
    text-align: left;
}

.mini-terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--accent-blue);
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    padding-bottom: 8px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: mini-pulse 1s infinite alternate;
}

@keyframes mini-pulse {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

.mini-terminal-body {
    flex-grow: 1;
    overflow-y: auto;
    font-size: 0.75rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.mini-log-line {
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    word-break: break-word;
    opacity: 0.85;
}

.mini-log-line:last-of-type {
    color: var(--accent-cyan);
    opacity: 1;
}

.mini-cursor {
    color: var(--accent-cyan);
    font-weight: bold;
    animation: flash-cursor 0.8s infinite;
}

@keyframes flash-cursor {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Custom color variants for terminal highlights */
.cyan-highlight .card-terminal-content {
    border-color: var(--accent-cyan);
    box-shadow: inset 0 0 20px rgba(0, 255, 200, 0.05);
}
.cyan-highlight .mini-terminal-header {
    color: var(--accent-cyan);
    border-bottom-color: rgba(0, 255, 200, 0.15);
}

.pink-highlight .card-terminal-content {
    border-color: var(--accent-pink);
    box-shadow: inset 0 0 20px rgba(255, 0, 127, 0.05);
}
.pink-highlight .mini-terminal-header {
    color: var(--accent-pink);
    border-bottom-color: rgba(255, 0, 127, 0.15);
}
.pink-highlight .pulse-indicator {
    background-color: var(--accent-pink);
    box-shadow: 0 0 8px var(--accent-pink);
}
.pink-highlight .mini-log-line:last-of-type {
    color: var(--accent-pink);
}
.pink-highlight .mini-cursor {
    color: var(--accent-pink);
}

/* Multi-Colored Interaction Tracks */
.matrix-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 20px 40px rgba(10, 15, 29, 0.5), 0 0 30px rgba(56, 189, 248, 0.05);
}

.matrix-card:hover .card-edge {
    opacity: 1;
}

/* Custom Overrides for Card 2 & 3 Variants */
.cyan-highlight .card-edge {
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.cyan-highlight:hover {
    border-color: rgba(0, 255, 200, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 200, 0.05);
}

.pink-highlight .card-edge {
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
}

.pink-highlight:hover {
    border-color: rgba(255, 0, 127, 0.4);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.05);
}

/* ==========================================================================
   5. OPERATIONAL OVERLAY TERMINAL
   ========================================================================== */
.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 9, 18, 0.9);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.terminal-box {
    width: 100%;
    max-width: 600px;
    background: #070b14;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(56, 189, 248, 0.15);
}

.terminal-header {
    background: rgba(56, 189, 248, 0.05);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.terminal-title {
    font-family: monospace;
    color: var(--accent-blue);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.close-btn {
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.4rem;
    transition: color 0.2s;
}

.close-btn:hover {
    color: var(--accent-pink);
}

.terminal-body {
    padding: 25px;
    height: 320px;
    overflow-y: auto;
    background: #04070d;
    font-family: 'Space Mono', monospace;
}

.log-line {
    color: var(--text-main);
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    font-family: 'Space Mono', monospace;
}

.log-line.blue { color: var(--accent-blue); }
.log-line.cyan { color: var(--accent-cyan); }
.log-line.pink { color: var(--accent-pink); }
.log-line.echo { color: var(--text-muted); }

/* Active input line on fullscreen terminal overlay */
.terminal-input-form {
    display: flex;
    align-items: center;
    background: #04070d;
    padding: 12px 25px;
    border-top: 1px solid var(--border-color);
}

.terminal-prompt {
    font-family: 'Space Mono', monospace;
    color: var(--accent-cyan);
    font-size: 0.85rem;
    margin-right: 10px;
    user-select: none;
    letter-spacing: 0.5px;
}

.terminal-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

/* Custom Technical Scrollbars */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0f1d;
}

::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

.hidden {
    display: none !important;
}

/* Responsive Media Controls */
@media (max-width: 990px) {
    .hero-section h1 {
        font-size: 2.4rem;
    }

    .hero-section {
        padding-top: 120px;
    }
}

/* ==========================================================================
   6. SOLUTIONS CAROUSEL MATRIX
   ========================================================================== */
.solutions-carousel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 40px 0 80px 0;
    position: relative;
    z-index: 2;
}

.carousel-track {
    width: 100%;
    overflow: hidden;
    display: flex;
}

.carousel-container {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee-ticker 30s linear infinite;
}

.solution-node {
    flex-shrink: 0;
    width: 220px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(56, 189, 248, 0.08);
    border-radius: 4px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.node-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 12px;
}

.solution-node h4 {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Node Hover Interactions */
.solution-node:hover {
    background: rgba(56, 189, 248, 0.08);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Pause movement when hover */
.carousel-track:hover .carousel-container {
    animation-play-state: paused;
}

@keyframes marquee-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px)); /* shift exactly half the duplicated content width + half the gap */
    }
}

/* ==========================================================================
   7. OPERATIONAL BUSINESS HOURS SECTION
   ========================================================================== */
.operational-hours-section {
    max-width: 800px;
    margin: 0 auto 120px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hours-inner-frame {
    background: #060913;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Thin Top Tech Accent Border Line */
.frame-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

.hours-inner-frame h3 {
    font-family: monospace;
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 5px;
}

.hours-sub {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.schedule-table {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-main);
}

.schedule-row strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Highlight Style For Closed State */
.schedule-row.offline {
    color: var(--text-muted);
}

.schedule-row.offline strong {
    color: var(--accent-pink);
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   8. SYSTEM ARCHITECTURE FOOTER STYLES
   ========================================================================== */
.system-footer {
    width: 100%;
    background: #050811;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.system-sig {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--accent-blue);
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Mobile layout adjustment for footer */
@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================================================
   9. INBOUND CONTACT REQUEST FORM OVERLAY STYLES
   ========================================================================== */
.contact-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 9, 18, 0.92);
    backdrop-filter: blur(12px);
    z-index: 250;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.contact-box {
    width: 100%;
    max-width: 500px;
    background: #050811;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.1);
}

.contact-header {
    background: rgba(56, 189, 248, 0.05);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.contact-title {
    font-family: monospace;
    color: var(--accent-blue);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.close-contact-btn {
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.close-contact-btn:hover {
    color: var(--accent-pink);
}

.contact-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0a0f1d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.15);
}

.form-group select option {
    background: #050811;
    color: var(--text-main);
}

.form-submit-btn {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 14px;
    font-family: monospace;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.form-submit-btn:hover {
    background: rgba(0, 255, 200, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 200, 0.2);
}

/* ==========================================================================
   10. SOLUTIONS SUBPAGE TEMPLATE LAYOUTS
   ========================================================================== */
.solution-page-body {
    padding-top: 140px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 2;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.back-link:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 200, 0.4);
    transform: translateX(-4px);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 20px;
    margin-bottom: 100px;
}

@media (max-width: 900px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.solution-details h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .solution-details h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .solution-details h1 {
        font-size: 1.8rem;
        letter-spacing: 0;
    }
}

.solution-details p.lead {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.solution-details p.body-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

.tech-specs-list {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.tech-specs-list li strong {
    color: var(--accent-cyan);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    margin-right: 5px;
    flex-shrink: 0;
    white-space: nowrap;
}

.solution-simulation-panel {
    background: #04070d;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 440px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(56, 189, 248, 0.04);
    font-family: 'Space Mono', monospace;
}

.simulation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.simulation-title {
    color: var(--accent-blue);
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: bold;
}

.simulation-body {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-main);
    text-align: left;
}

.sim-line {
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
}
.sim-line.success { color: var(--accent-cyan); }
.sim-line.warning { color: var(--accent-pink); }
.sim-line.info { color: var(--accent-blue); }
.sim-line.echo { color: var(--text-main); }