/* Caret prevention on non-text input elements */
        *:not(input):not(textarea) {
            caret-color: transparent !important;
        }

        /* Custom Cursor Effect */
        .custom-cursor {
            width: 8px;
            height: 8px;
            background-color: var(--secondary);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 99999;
            opacity: 0;
            transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
            box-shadow: 0 0 10px var(--secondary), 0 0 20px rgba(0, 210, 255, 0.4);
            transform: translate(-50%, -50%);
        }

        .custom-cursor.hover {
            width: 24px;
            height: 24px;
            background-color: rgba(0, 210, 255, 0.15);
            border: 1.5px solid var(--secondary);
            box-shadow: 0 0 15px rgba(0, 210, 255, 0.6);
        }

        @media (max-width: 768px) {
            .custom-cursor {
                display: none !important;
            }
        }

        :root {
            --bg-dark: #07090e;
            --bg-card: rgba(13, 17, 26, 0.85);
            --primary: #0066ff;
            --primary-glow: rgba(0, 102, 255, 0.18);
            --secondary: #00d2ff;
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            --border: rgba(255, 255, 255, 0.06);
            --font-main: 'Outfit', sans-serif;
            --font-display: 'Space Grotesk', sans-serif;
            --success: #10b981;
            --warning: #f59e0b;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: #171c26;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        /* Ambient Glow Backgrounds */
        .glow-overlay {
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary-glow) 0%, rgba(7, 9, 14, 0) 70%);
            top: -200px;
            right: -100px;
            z-index: 0;
            pointer-events: none;
            filter: blur(90px);
        }

        .glow-overlay-left {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 210, 255, 0.06) 0%, rgba(7, 9, 14, 0) 70%);
            bottom: 5%;
            left: -150px;
            z-index: 0;
            pointer-events: none;
            filter: blur(90px);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        /* Utility Top Bar */
        .top-bar {
            background-color: #030407;
            border-bottom: 1px solid var(--border);
            font-size: 0.8rem;
            font-weight: 500;
            padding: 0.5rem 0;
            color: var(--text-muted);
            position: relative;
            z-index: 101;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .live-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            background-color: var(--success);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--success);
            animation: pulse 2s infinite;
        }

        /* Language Dropdown */
        .lang-dropdown-wrapper {
            position: relative;
            display: inline-block;
        }

        .lang-trigger-btn {
            background: none;
            border: 1px solid var(--border);
            color: var(--text-muted);
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.35rem;
            transition: all 0.3s ease;
        }

        .lang-trigger-btn:hover {
            color: var(--text-main);
            border-color: var(--primary);
        }

        .lang-dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background-color: #0b0d13;
            border: 1px solid var(--border);
            border-radius: 4px;
            min-width: 130px;
            z-index: 1000;
            box-shadow: 0 8px 16px rgba(0,0,0,0.5);
            padding: 0.35rem 0;
            margin-top: 2px;
        }

        .lang-dropdown-wrapper:hover .lang-dropdown-menu {
            display: block;
        }

        .lang-option-btn {
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 0.4rem 1rem;
            color: var(--text-muted);
            font-size: 0.75rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lang-option-btn:hover, .lang-option-btn.active {
            color: var(--text-main);
            background-color: rgba(255, 255, 255, 0.03);
            border-left: 2px solid var(--primary);
        }

        /* Header / Navbar with Dropdowns */
        header {
            padding: 1.25rem 0;
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 9, 14, 0.85);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.7rem;
            font-weight: 700;
            letter-spacing: -0.04em;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo span.accent {
            color: var(--primary);
        }

        .logo-square {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        /* Hover Dropdown Menus */
        .nav-item {
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.88rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            cursor: pointer;
        }

        .nav-item:hover .nav-link, .nav-link.active {
            color: var(--text-main);
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #0b0d13;
            border: 1px solid var(--border);
            border-radius: 4px;
            min-width: 220px;
            z-index: 1000;
            box-shadow: 0 10px 20px rgba(0,0,0,0.6);
            padding: 0.5rem 0;
            margin-top: 0px;
            animation: fadeIn 0.2s ease forwards;
        }

        .nav-item:hover .dropdown-menu {
            display: block;
        }

        .dropdown-item {
            display: block;
            padding: 0.5rem 1.25rem;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            color: var(--text-main);
            background-color: rgba(255, 255, 255, 0.03);
            border-left: 3px solid var(--primary);
        }

        .btn-demo {
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 0.5rem 1.25rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            font-family: var(--font-display);
            background: rgba(0, 102, 255, 0.05);
        }

        .btn-demo:hover {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
        }

        /* Routing Sections styling */
        .page-section {
            display: none;
            opacity: 0;
        }

        .page-section.active {
            display: block;
            opacity: 1;
            animation: fadeIn 0.4s ease-in-out forwards;
        }

        /* Home Page Sections */
        .hero {
            padding: 5rem 0 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 850px;
            margin: 0 auto;
        }

        .hero-text {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-badge {
            background: rgba(0, 102, 255, 0.1);
            border: 1px solid rgba(0, 102, 255, 0.2);
            color: var(--primary);
            padding: 0.4rem 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            font-family: var(--font-display);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        .hero h1 span.gradient {
            background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            color: var(--text-muted);
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn-primary-action {
            background-color: var(--primary);
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: var(--font-display);
            box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
        }

        .btn-primary-action:hover {
            background-color: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
        }

        .btn-secondary-action {
            background: transparent;
            border: 1px solid var(--border);
            color: var(--text-main);
            padding: 0.8rem 2rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: var(--font-display);
        }

        .btn-secondary-action:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--text-muted);
        }

        /* Cockpit HUD Visual */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hud-wrapper {
            position: relative;
            width: 100%;
            max-width: 480px;
            aspect-ratio: 1;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--bg-card);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hud-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
            transition: transform 0.5s ease;
        }

        .hud-wrapper:hover .hud-image {
            transform: scale(1.03);
        }

        .hud-overlay-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(0, 0, 255, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
            background-size: 100% 4px, 6px 100%;
            pointer-events: none;
        }

        .hud-corner {
            position: absolute;
            width: 15px;
            height: 15px;
            border-color: var(--primary);
            border-style: solid;
            pointer-events: none;
        }

        .hud-corner.tl { top: 15px; left: 15px; border-width: 2px 0 0 2px; }
        .hud-corner.tr { top: 15px; right: 15px; border-width: 2px 2px 0 0; }
        .hud-corner.bl { bottom: 15px; left: 15px; border-width: 0 0 2px 2px; }
        .hud-corner.br { bottom: 15px; right: 15px; border-width: 0 2px 2px 0; }

        /* General Inner Pages Layout */
        .inner-page-header {
            padding: 4.5rem 0 3.5rem;
            border-bottom: 1px solid var(--border);
            background: linear-gradient(180deg, #090c13 0%, var(--bg-dark) 100%);
        }

        .inner-page-title h1 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .inner-page-title h1 span {
            color: var(--primary);
        }

        .inner-page-title p {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 700px;
        }

        .inner-page-content {
            padding: 4rem 0 6rem;
        }

        /* News Sections & Filter bar */
        .news-filter-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            gap: 1.5rem;
            background: #0d111a;
            padding: 1rem 1.5rem;
            border-radius: 6px;
            border: 1px solid var(--border);
        }

        .news-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .news-tag-btn {
            background: #171c26;
            border: 1px solid var(--border);
            color: var(--text-muted);
            padding: 0.4rem 1rem;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .news-tag-btn:hover, .news-tag-btn.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 0 10px rgba(0, 102, 255, 0.2);
        }

        .search-box {
            position: relative;
            width: 300px;
        }

        .search-input {
            width: 100%;
            background: #11151f;
            border: 1px solid var(--border);
            padding: 0.5rem 1rem 0.5rem 2.25rem;
            color: var(--text-main);
            font-family: var(--font-main);
            border-radius: 4px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .search-input:focus {
            border-color: var(--primary);
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
        }

        .news-list-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        .news-main-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .news-item-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 2rem;
            transition: all 0.3s ease;
            display: grid;
            grid-template-columns: 1fr 2.5fr;
            gap: 2rem;
            align-items: center;
            cursor: pointer;
        }

        .news-item-card:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(0, 102, 255, 0.08);
            transform: translateY(-2px);
        }

        .news-item-img-wrp {
            position: relative;
            aspect-ratio: 16/10;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid var(--border);
            background: #090a0e;
        }

        .news-badge-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0, 15, 30, 0.85);
            border: 1px solid var(--primary);
            color: var(--secondary);
            font-size: 0.72rem;
            font-weight: 800;
            padding: 0.25rem 0.55rem;
            border-radius: 3px;
            text-transform: uppercase;
            font-family: var(--font-display);
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        .news-item-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .news-item-card:hover .news-item-img {
            transform: scale(1.04);
        }

        .news-item-content {
            display: flex;
            flex-direction: column;
        }

        .news-item-card h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .news-item-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.25rem;
        }

        /* News Card Badges/Tags */
        .news-badges {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            flex-wrap: wrap;
        }

        .badge-tag {
            background: rgba(0, 102, 255, 0.08);
            border: 1px solid rgba(0, 102, 255, 0.15);
            color: var(--secondary);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.2rem 0.6rem;
            border-radius: 3px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

        .badge-tag:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .badge-tag.active {
            background: var(--secondary);
            color: #090a0e;
            border-color: var(--secondary);
        }

        .company-intro-card {
            transition: all 0.25s ease-in-out;
        }

        .company-intro-card:hover {
            border-color: var(--secondary) !important;
            box-shadow: 0 0 12px rgba(0, 210, 255, 0.15);
            transform: translateY(-2px);
        }

        .news-link {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-main);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.35rem;
            transition: color 0.3s ease;
            font-family: var(--font-display);
        }

        .news-item-card:hover .news-link {
            color: var(--primary);
        }

        /* News Detail View */
        .news-detail-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        .news-detail-content {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 3rem;
        }

        .news-detail-header {
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--border);
            padding-bottom: 1.5rem;
        }

        .news-detail-meta {
            display: flex;
            gap: 1.5rem;
            font-size: 0.8rem;
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .news-detail-title {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 1rem;
        }

        .news-detail-body {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-main);
        }

        .news-detail-body p {
            margin-bottom: 1.5rem;
        }

        .news-detail-body h4 {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            margin: 2rem 0 1rem;
        }

        /* Datasets Detail Sub-pages */
        .dataset-detail-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .dataset-detail-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 3rem;
        }

        .dataset-detail-card h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .dataset-detail-card p {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }

        .data-table-title {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .data-table-wrapper {
            width: 100%;
            overflow-x: auto;
            border: 1px solid var(--border);
            border-radius: 6px;
            background: #0d1017;
            margin-bottom: 2.5rem;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            font-size: 0.88rem;
        }

        .data-table th {
            background-color: #121621;
            padding: 0.85rem 1.25rem;
            font-weight: 700;
            color: var(--text-main);
            border-bottom: 1px solid var(--border);
            font-family: var(--font-display);
        }

        .data-table td {
            padding: 0.85rem 1.25rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            color: var(--text-muted);
        }

        .data-table tr:hover td {
            color: var(--text-main);
            background-color: rgba(255, 255, 255, 0.01);
        }

        /* Sidebar Widget */
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-widget {
            background-color: #0d111a;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 1.5rem;
        }

        .sidebar-widget h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            border-bottom: 1px solid var(--border);
            padding-bottom: 0.75rem;
            margin-bottom: 1rem;
        }

        .trending-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .trending-item a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: color 0.3s ease;
            line-height: 1.4;
            display: block;
        }

        .trending-item a:hover {
            color: var(--primary);
        }

        .trending-meta {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 0.25rem;
        }

        /* Core Capabilities (Home solutions) */
        .solutions-section {
            padding: 5rem 0;
            border-top: 1px solid var(--border);
            background: linear-gradient(180deg, rgba(7,9,14,0) 0%, rgba(13,17,26,0.3) 100%);
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .solution-card {
            border: 1px solid var(--border);
            background: var(--bg-card);
            border-radius: 6px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .solution-card:hover {
            border-color: rgba(0, 102, 255, 0.4);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .solution-icon {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: rgba(0, 102, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0, 102, 255, 0.15);
        }

        .solution-card h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .solution-card p {
            color: var(--text-muted);
            font-size: 0.85rem;
            line-height: 1.55;
        }

        /* Telemetry Dashboard */
        .telemetry-section {
            padding: 5rem 0;
            border-top: 1px solid var(--border);
        }

        .telemetry-dashboard {
            background-color: #0c0f16;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            align-items: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.6);
        }

        .telemetry-controls h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .telemetry-controls p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .telemetry-dials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .dial-card {
            background: #11151f;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 1.25rem;
            text-align: center;
        }

        .dial-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }

        .dial-value {
            font-family: var(--font-display);
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
        }

        .dial-unit {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-left: 0.15rem;
        }

        .telemetry-graph-wrapper {
            border: 1px solid var(--border);
            border-radius: 6px;
            background: #07090d;
            height: 250px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1rem;
        }

        .graph-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 20px 20px;
            background-image: 
                linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
        }

        .graph-data-points {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            height: 140px;
            z-index: 10;
        }

        .graph-bar {
            width: 12px;
            background: linear-gradient(180deg, var(--primary) 0%, rgba(0, 102, 255, 0.1) 100%);
            border-radius: 2px 2px 0 0;
            transition: height 0.5s ease;
            box-shadow: 0 0 8px var(--primary-glow);
        }

        /* Partners/Firms Layout */
        .partners-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 2.5rem;
            align-items: start;
        }

        .partners-sidebar {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            background: rgba(12, 15, 22, 0.7);
            border: 1px solid var(--border);
            padding: 1rem;
            border-radius: 6px;
        }

        .partner-tab-btn {
            background: transparent;
            border: 1px solid transparent;
            color: var(--text-muted);
            padding: 0.8rem 1.2rem;
            border-radius: 4px;
            text-align: left;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: var(--font-display);
        }

        .partner-tab-btn:hover {
            background: rgba(255, 255, 255, 0.02);
            color: var(--text-main);
        }

        .partner-tab-btn.active {
            background: rgba(0, 102, 255, 0.08);
            border-color: rgba(0, 102, 255, 0.2);
            color: var(--secondary);
        }

        .partner-detail-content {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 3rem;
            min-height: 500px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .partner-detail-header {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
        }

        .partner-detail-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .partner-detail-title-row h2 {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--text-main);
            margin: 0;
        }

        .partner-detail-meta-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
            background: rgba(0, 0, 0, 0.2);
            padding: 1rem 1.5rem;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.02);
        }

        .partner-meta-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .partner-meta-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            color: var(--text-muted);
            font-weight: 700;
        }

        .partner-meta-value {
            font-size: 0.9rem;
            color: var(--secondary);
            font-weight: 600;
        }

        .partner-detail-body {
            line-height: 1.7;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .partner-detail-body h4 {
            color: var(--text-main);
            font-family: var(--font-display);
            font-size: 1.2rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            border-left: 3px solid var(--primary);
            padding-left: 0.75rem;
        }

        .partner-detail-body p {
            margin-bottom: 1.25rem;
        }

        .partner-detail-body ul {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .partner-detail-body li {
            margin-bottom: 0.5rem;
        };
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Contact Page */
        .contact-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
        }

        .contact-form-widget {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 2.5rem;
        }

        .form-row-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
        }

        .form-input, .form-textarea {
            background: #0f121a;
            border: 1px solid var(--border);
            padding: 0.75rem 1rem;
            color: var(--text-main);
            border-radius: 4px;
            font-family: var(--font-main);
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-input:focus, .form-textarea:focus {
            border-color: var(--primary);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-info-card {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .contact-info-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(0,102,255,0.08);
            border: 1px solid rgba(0,102,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .contact-info-text h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.35rem;
        }

        .contact-info-text p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Footer */
        footer {
            background-color: #030407;
            border-top: 1px solid var(--border);
            padding: 4rem 0 2.5rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            position: relative;
            z-index: 10;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo-desc p {
            margin-top: 1rem;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .footer-column h4 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.85rem;
        }

        .footer-links a:hover {
            color: var(--text-main);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 0.8rem;
            text-align: center;
            gap: 0.5rem;
        }

        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.15); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Breakpoints & Mobile Optimization */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 110;
            padding: 0.5rem;
        }

        .mobile-menu-toggle span {
            width: 24px;
            height: 2px;
            background-color: var(--text-main);
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-nav-overlay {
            display: none;
            position: fixed;
            top: 75px;
            left: 0;
            width: 100%;
            height: calc(100vh - 75px);
            background: rgba(7, 9, 14, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 105;
            overflow-y: auto;
            padding: 2.5rem 2rem;
            flex-direction: column;
            gap: 1.75rem;
            border-top: 1px solid var(--border);
        }

        .mobile-nav-overlay.active {
            display: flex;
        }

        .mobile-nav-link {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-main);
            text-decoration: none;
            font-family: var(--font-display);
            padding-bottom: 0.6rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .mobile-nav-sublink {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            text-decoration: none;
            padding-left: 1rem;
            display: block;
            margin-bottom: 0.4rem;
            transition: color 0.2s ease;
        }

        .mobile-nav-sublink:hover {
            color: var(--secondary);
        }

        .mobile-nav-group {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        @media (max-width: 1024px) {
            header {
                height: 70px;
                padding: 0;
                display: flex;
                align-items: center;
            }
            .mobile-nav-overlay {
                top: 70px;
                height: calc(100vh - 70px);
            }
            .logo {
                font-size: clamp(1.2rem, 4vw, 1.7rem);
            }
            .nav-links, .btn-demo {
                display: none !important;
            }
            .mobile-menu-toggle {
                display: flex;
            }

            .hero {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-text {
                align-items: center;
            }

            .news-list-grid, .news-detail-container {
                grid-template-columns: 1fr;
            }

            .telemetry-dashboard {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 1.5rem;
            }

            .partners-layout {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .partners-sidebar {
                width: 100%;
            }
            .partner-detail-content {
                padding: 1.5rem;
                min-height: auto;
            }
            .partner-detail-title-row h2 {
                font-size: 1.5rem;
            }
            .partner-detail-meta-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
                padding: 1rem;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 1.25rem;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.25;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            .hero-buttons a {
                width: 100%;
                text-align: center;
            }

            .news-filter-bar {
                flex-direction: column;
                align-items: stretch;
                gap: 1.25rem;
                padding: 1rem;
            }

            .news-filter-bar .filter-select-wrapper {
                width: 100%;
            }

            .search-box {
                width: 100% !important;
            }

            .news-tags {
                justify-content: center;
            }

            .news-item-card {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 1.25rem !important;
            }

            .news-detail-content {
                padding: 1.5rem !important;
            }

            .telemetry-dials {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .partners-grid {
                grid-template-columns: 1fr;
            }

            .map-container iframe {
                height: 300px !important;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }