:root {
    --bg-dark: #07070a;
    --panel-bg: rgba(13, 17, 23, 0.75);
    --panel-border: rgba(255, 255, 255, 0.08);
    --primary: #00F2FE; /* Spark-Cyan / Quantum-Blue */
    --primary-glow: rgba(0, 242, 254, 0.35);
    --accent: #E2E8F0; /* Platin-Silber */
    --safe-green: #10b981; /* Compliance Emerald */
    --safe-glow: rgba(16, 185, 129, 0.25);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Pulsing Status Dot */
.status-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
    animation: statusPulse 1.5s infinite alternate ease-in-out;
}

@keyframes statusPulse {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
        box-shadow: 0 0 4px var(--primary-glow);
    }
    100% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 12px var(--primary);
    }
}

/* Ambient background glow elements */
.ambient-glow-1 {
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.ambient-glow-2 {
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

/* Glassmorphism card */
.glass-panel {
    background: var(--panel-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s, transform 0.3s;
}

.glass-panel:hover {
    border-color: rgba(0, 242, 254, 0.25);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 7, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--panel-border);
    padding: 12px 0;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.05em;
    margin-right: 24px;
    flex-shrink: 0;
}

.logo .bold {
    font-weight: 800;
}

.logo .thin {
    font-weight: 300;
    color: var(--accent);
}

.logo span.spark-dot {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
    margin-left: 2px;
}

nav {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: nowrap;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

nav a:hover {
    color: var(--primary);
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #00b4d8 100%);
    color: #000;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 15px var(--primary-glow);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--panel-border);
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 100px 0 20px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 75vh;
}

.hero-left h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left h1 span.highlight {
    background: linear-gradient(to right, var(--primary), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-right {
    position: relative;
    height: 450px;
    width: 100%;
}

#canvas3d-container {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: transparent;
    border: 1px solid var(--panel-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Value Propositions Grid */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.feature-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Problem vs Solution Section */
.comparison-section {
    padding: 80px 0;
    margin-bottom: 80px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.comp-box {
    padding: 40px;
}

.comp-box h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comp-box.problem h3 {
    color: #ef4444;
}

.comp-box.solution h3 {
    color: var(--safe-green);
}

.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comp-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text-muted);
    font-size: 1rem;
}

.comp-list li i {
    position: absolute;
    left: 0;
    top: 5px;
}

.comp-box.problem .comp-list li i {
    color: #ef4444;
}

.comp-box.solution .comp-list li i {
    color: var(--safe-green);
}

/* Interactive Performance-Bypass Controller */
.interactive-section {
    padding: 80px 40px;
    margin-bottom: 100px;
}

.interactive-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.int-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.int-right {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--panel-border);
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255,255,255,0.02);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--panel-border);
}

.control-header {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
}

.control-value {
    color: var(--primary);
    font-family: 'Fira Code', monospace;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: transform 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.status-display {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.status-row span:last-child {
    font-weight: bold;
}

/* ROI Calculator */
.calculator-section {
    padding: 80px 40px;
    margin-bottom: 100px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.calc-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-right {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--panel-border);
}

.calc-saving-title {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: center;
}

.calc-saving-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 0 20px var(--primary-glow);
    margin-bottom: 25px;
    text-align: center;
}

.calc-details {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    border-top: 1px solid var(--panel-border);
    padding-top: 20px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
}

.calc-row span:last-child {
    color: #fff;
    font-weight: 600;
}

/* Lead/Pitch Contact Section */
.pitch-section {
    padding: 80px 40px;
    margin-bottom: 100px;
    text-align: center;
}

.pitch-wrap {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pitch-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-top: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-input {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--panel-border);
    padding: 14px 18px;
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--primary);
}

.form-textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--panel-border);
    padding: 14px 18px;
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
    min-height: 120px;
    resize: vertical;
    transition: border-color 0.2s;
}

.form-textarea:focus {
    border-color: var(--primary);
}

/* Footer */
footer {
    border-top: 1px solid var(--panel-border);
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.4);
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom .copyright,
.footer-bottom .ecosystem-text {
    flex: 1 1 300px;
}

.footer-bottom .ecosystem-text {
    text-align: right;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex: 1 1 auto;
}

.footer-bottom .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom .footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-bottom .ecosystem-text {
        text-align: center;
    }
}

/* Responsiveness */
@media (max-width: 1200px) {
    header {
        padding: 15px 0;
    }
    nav {
        gap: 15px;
    }
    nav a {
        font-size: 0.85rem;
    }
    .btn-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Clean Mobile Responsive Header Navigation */
.nav-scroll-hint {
    display: none;
}

@media (max-width: 992px) {
    header {
        padding: 12px 0;
    }
    .header-wrap {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .logo {
        font-size: 1.6rem;
    }
    nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px 10px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }
    nav::-webkit-scrollbar {
        display: none !important;
    }

    .nav-item-dropdown {
        position: relative !important;
        flex-shrink: 0;
    }
    .nav-dropdown-trigger {
        font-size: 0.82rem;
        padding: 6px 12px;
        background: rgba(0, 242, 254, 0.08);
        border: 1px solid rgba(0, 242, 254, 0.25);
        border-radius: 10px;
        color: #ffffff;
    }
    nav a {
        font-size: 0.82rem;
        padding: 6px 12px;
        border-radius: 10px;
        flex-shrink: 0;
    }
    #nav-cta-btn {
        padding: 6px 14px;
        font-size: 0.82rem;
    }
    
    /* Responsive Mega-Menu Dropdown on Mobile */
    .mega-menu-dropdown {
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(5px) !important;
        width: calc(100vw - 32px) !important;
        max-width: 360px !important;
        z-index: 999999 !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 25px rgba(0, 242, 254, 0.3) !important;
        padding: 14px !important;
        background: rgba(10, 14, 26, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(0, 242, 254, 0.35) !important;
        border-radius: 14px !important;
        box-sizing: border-box !important;
    }
    
    .nav-item-dropdown:hover .mega-menu-dropdown,
    .nav-item-dropdown.active .mega-menu-dropdown {
        left: 16px !important;
        right: 16px !important;
        width: auto !important;
        max-width: calc(100vw - 32px) !important;
        z-index: 999999 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        max-height: 75vh !important;
        overflow-y: auto !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 242, 254, 0.4) !important;
    }
    .mega-menu-grid {
        grid-template-columns: 1fr !important;
    }

    /* Visual Swipe Badge Hint */
    .nav-scroll-hint {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        font-size: 0.76rem;
        font-family: 'Fira Code', monospace;
        color: #00f2fe;
        background: rgba(0, 242, 254, 0.18);
        border: 1px solid rgba(0, 242, 254, 0.5);
        padding: 5px 12px;
        border-radius: 14px;
        animation: pulseSwipeHint 1.8s infinite;
        flex-shrink: 0;
        cursor: pointer;
        box-shadow: 0 0 12px rgba(0, 242, 254, 0.35);
    }
    @keyframes pulseSwipeHint {
        0%, 100% { transform: translateX(0); opacity: 0.85; }
        50% { transform: translateX(5px); opacity: 1; box-shadow: 0 0 18px rgba(0, 242, 254, 0.6); }
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 0;
    }
    .hero-actions {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .interactive-grid {
        grid-template-columns: 1fr;
    }
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Language Selector */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-switcher::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10px;
    background: transparent;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--panel-border);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s, border-color 0.2s;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 6px;
    background: var(--bg-dark);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 110;
    overflow: hidden;
    min-width: 100px;
    backdrop-filter: blur(16px);
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
    display: block;
}

.lang-option {
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}

.lang-option.active {
    color: var(--primary);
    font-weight: 600;
}

/* Tab Buttons */
.branchen-tabs .tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.branchen-tabs .tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: var(--primary);
}

.branchen-tabs .tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #00b4d8 100%);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Tab Contents */
.branchen-contents .tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.branchen-contents .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .branchen-contents .tab-content > div {
        grid-template-columns: 1fr !important;
    }
}

/* Roadmap Styles */
.roadmap-section {
    padding: 0 0 80px 0;
    margin-bottom: 20px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 20px auto 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--panel-border);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    width: 100%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-item.verified::before {
    border-color: var(--safe-green);
    box-shadow: 0 0 10px var(--safe-glow);
}

.timeline-panel {
    width: 45%;
    padding: 16px 20px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-panel h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-item.verified .timeline-panel h4 {
    color: var(--safe-green);
}

.timeline-panel p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.timeline-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-family: 'Fira Code', monospace;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--panel-border);
    color: var(--text-muted);
}

.timeline-item.verified .timeline-badge {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--safe-green);
}

.timeline-item.active .timeline-badge {
    background: rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.2);
    color: var(--primary);
}

@media (max-width: 900px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start;
        padding-left: 45px;
    }
    .timeline-item::before {
        left: 20px;
    }
    .timeline-panel {
        width: 100%;
    }
}

/* Roadmap Tabs & Grid styling */
.roadmap-tabs .roadmap-tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--panel-border);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.roadmap-tabs .roadmap-tab-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: var(--primary);
}

.roadmap-tabs .roadmap-tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, #00b4d8 100%);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.roadmap-tab-content {
    animation: fadeIn 0.4s ease-in-out;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 20px auto 0 auto;
}

.roadmap-card {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.roadmap-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.roadmap-card-header h3 {
    font-size: 1.4rem;
    color: #fff;
}

.roadmap-card h4 {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.roadmap-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.roadmap-solves {
    margin-top: 10px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.04);
    border-left: 3px solid var(--safe-green);
    border-radius: 4px;
    font-size: 0.9rem;
}

.roadmap-solves strong {
    color: var(--safe-green);
    display: block;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-solves span {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

/* Legal Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.15);
    border-color: rgba(0, 242, 254, 0.2);
    /* Firefox scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 242, 254, 0.3) rgba(255, 255, 255, 0.02);
}

/* Chrome, Safari, Edge scrollbar styling */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 254, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 242, 254, 0.6);
    box-shadow: 0 0 8px var(--primary-glow);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.modal-content h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #fff;
}

.modal-content p, .modal-content ul {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-content ul {
    padding-left: 20px;
}

.modal-content li {
    margin-bottom: 8px;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-left: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15);
    color: var(--text-main);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 320px;
    max-width: 450px;
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 0.3s, transform 0.3s;
}

.toast.hide {
    animation: toastSlideOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.toast-message {
    font-size: 0.9rem;
    font-weight: 500;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    margin-left: auto;
    padding: 4px;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #fff;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* --- Zero-Trust & Quantum-Safety Styles --- */
.security-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.security-pillars-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pillar-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 242, 254, 0.2);
}

.pillar-item.active {
    background: rgba(13, 17, 23, 0.55);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.pillar-num {
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.pillar-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.pillar-arrow {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-item.active .pillar-arrow {
    transform: rotate(90deg);
    color: var(--primary);
}

.pillar-content {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pillar-item.active .pillar-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
}

.qkd-sim-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qkd-sim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--panel-border);
    padding-bottom: 15px;
}

.qkd-sim-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.qkd-status-badge {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.qkd-status-badge.secure {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--safe-green);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.qkd-status-badge.breached {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
    animation: statusPulse 1s infinite alternate;
}

.qkd-canvas-wrap {
    height: 120px;
    background: rgba(255,255,255,0.01);
    border: 1px dashed var(--panel-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.qkd-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.qkd-node .node-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--panel-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.qkd-node span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.qkd-fiber-line {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 15px;
    position: relative;
}

.photon-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.photon {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--safe-green);
    box-shadow: 0 0 8px var(--safe-green);
    top: -3px;
    animation: flowPhoton 3s infinite linear;
}

.photon.p1 { animation-delay: 0s; }
.photon.p2 { animation-delay: 0.75s; }
.photon.p3 { animation-delay: 1.5s; }
.photon.p4 { animation-delay: 2.25s; }

.photon-stream.breached .photon {
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
}

@keyframes flowPhoton {
    0% {
        left: 0%;
        opacity: 0;
        transform: scale(0.6);
    }
    10% {
        opacity: 1;
        transform: scale(1.0);
    }
    90% {
        opacity: 1;
        transform: scale(1.0);
    }
    100% {
        left: 100%;
        opacity: 0;
        transform: scale(0.6);
    }
}

.eve-probe {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    opacity: 0.15;
    transition: all 0.3s;
}

.eve-probe.active {
    color: #ef4444;
    opacity: 1;
    animation: spiderPulse 1s infinite alternate;
}

.eve-probe .probe-beam {
    width: 1px;
    height: 0px;
    background: #ef4444;
    position: absolute;
    left: 50%;
    top: 100%;
    transition: height 0.3s;
}

.eve-probe.active .probe-beam {
    height: 24px;
    box-shadow: 0 0 5px #ef4444;
}

@keyframes spiderPulse {
    0% { transform: translateX(-50%) scale(1.0); }
    100% { transform: translateX(-50%) scale(1.15); filter: drop-shadow(0 0 5px #ef4444); }
}

.qkd-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.metric-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-val {
    font-family: 'Fira Code', monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

@media (max-width: 900px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Strategic Scrollable Roadmap styling */
#roadmap-phases::-webkit-scrollbar {
    width: 6px;
}
#roadmap-phases::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
#roadmap-phases::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

/* Custom Global Scrollbar for Premium Dark Theme */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(56, 189, 248, 0.25) rgba(10, 10, 12, 0.5);
}
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(10, 10, 12, 0.5);
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.25);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 242, 254, 0.5);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}
::-webkit-scrollbar-corner {
    background: transparent;
}

/* Immersive Deep Dive Full-Screen Overlay */
.deep-dive-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 4, 6, 0.88);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.deep-dive-overlay.active {
    opacity: 1;
}
.deep-dive-container {
    width: 90vw;
    max-width: 1200px;
    height: 85vh;
    background: rgba(14, 14, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    display: flex;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.deep-dive-overlay.active .deep-dive-container {
    transform: scale(1);
}
.deep-dive-sidebar {
    width: 280px;
    background: rgba(8, 8, 12, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}
.deep-dive-nav-item {
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}
.deep-dive-nav-item i {
    width: 16px;
    text-align: center;
}
.deep-dive-nav-item:hover, .deep-dive-nav-item.active {
    color: #fff;
    background: rgba(6, 182, 212, 0.1);
    box-shadow: inset 3px 0 0 var(--accent-cyan);
}
.deep-dive-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: rgba(5, 5, 8, 0.2);
}
.deep-dive-header {
    padding: 24px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.deep-dive-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}
.deep-dive-header h2 span {
    color: var(--accent-cyan);
}
.deep-dive-body {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    color: var(--text-muted);
    line-height: 1.6;
}
.deep-dive-body::-webkit-scrollbar {
    width: 6px;
}
.deep-dive-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}
.deep-dive-body::-webkit-scrollbar-thumb {
    background: rgba(6, 182, 212, 0.2);
    border-radius: 3px;
}
.deep-dive-body h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 20px;
}
.deep-dive-body p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.deep-dive-close {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.deep-dive-close:hover {
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}
.deep-dive-section {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}
.deep-dive-section.active {
    display: block;
}

/* ==========================================
   MOBILE RESPONSIVE STYLES & MEDIA QUERIES
   ========================================== */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
        overflow-x: hidden;
    }

    /* Header & Navigation */
    .header-wrap {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        width: 100%;
        padding: 4px 5px 8px 5px;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 242, 254, 0.7) rgba(255, 255, 255, 0.08);
        gap: 10px;
        justify-content: flex-start;
    }
    #nav-cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 0 20px 0;
        text-align: center;
        gap: 30px;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .hero-left {
        width: 100%;
        max-width: 100%;
    }
    .hero-left h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .hero-left p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        width: 100%;
    }
    .hero-actions .btn-cta, 
    .hero-actions .btn-secondary {
        justify-content: center;
        width: 100%;
        white-space: normal !important;
        text-align: center;
        line-height: 1.3;
        padding: 12px 20px;
    }
    .hero-right {
        height: 300px;
        width: 100%;
    }

    @media (max-width: 480px) {
        .logo {
            font-size: 1.4rem !important;
            margin-right: 0 !important;
        }
        .hero-left h1 {
            font-size: 1.6rem;
        }
        .hero-right {
            height: 240px;
        }
    }

    /* Titles */
    .section-title {
        padding-top: 40px;
        margin-bottom: 40px;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }
    .section-title p {
        font-size: 1rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    .feature-card {
        padding: 30px 20px;
    }

    /* Comparison Section */
    .comparison-section {
        padding: 40px 20px !important;
        margin-bottom: 40px;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .comp-box {
        padding: 20px 10px;
    }
    .comp-box.solution {
        border-left: none !important;
        border-top: 1px solid var(--panel-border);
        padding-top: 30px;
    }
    .comp-box h3 {
        font-size: 1.4rem;
    }

    /* Interactive Bypass Section */
    .interactive-section {
        padding: 40px 20px !important;
        margin-bottom: 60px;
    }
    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .int-right {
        padding: 20px;
    }

    /* ROI Calculator */
    .calculator-section {
        padding: 40px 20px !important;
        margin-bottom: 60px;
    }
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .calc-right {
        padding: 20px;
    }
    .calc-saving-value {
        font-size: 2.5rem;
    }

    /* Contact / Pitch Form */
    .pitch-section {
        padding: 40px 20px !important;
        margin-bottom: 60px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Footer */
    footer {
        padding: 40px 0;
        text-align: center;
    }
    .footer-wrap {
        flex-direction: column;
        gap: 20px;
    }

    /* Deep Dive Overlay Mobile Adaptations */
    .deep-dive-container {
        flex-direction: column;
        height: 92vh;
        width: 95vw;
        border-radius: 16px;
    }
    .deep-dive-sidebar {
        width: 100% !important;
        height: auto !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        padding: 10px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        gap: 10px !important;
    }
    .deep-dive-nav-item {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        white-space: nowrap !important;
    }
    .deep-dive-content-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .deep-dive-header {
        padding: 15px 20px !important;
    }
    .deep-dive-header h2 {
        font-size: 1.1rem !important;
    }
    .deep-dive-body {
        padding: 20px !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .deep-dive-body h3 {
        font-size: 1.1rem !important;
    }
    .deep-dive-body table {
        font-size: 0.75rem !important;
    }
    .deep-dive-body th, .deep-dive-body td {
        padding: 6px !important;
    }
}

/* Orbis Hardware Section Styling */
.orbis-hardware-section {
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.85) 0%, rgba(7, 7, 10, 0.95) 100%);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 24px;
}

.orbis-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.orbis-tab-btn:hover {
    color: var(--text-main);
    border-color: rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.05);
}

.orbis-tab-btn.active {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.2) 0%, rgba(79, 172, 254, 0.15) 100%);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

.orbis-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 900px) {
    .orbis-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.orbis-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    background: rgba(5, 8, 14, 0.6);
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
}

.orbis-showcase-img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.orbis-image-container:hover .orbis-showcase-img {
    transform: scale(1.03);
}

.orbis-img-overlay-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Fira Code', monospace;
}

.orbis-info-box {
    padding: 10px 0;
}

.orbis-info-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.orbis-info-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.orbis-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.orbis-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--accent);
    font-size: 0.95rem;
}

.orbis-feature-list li i {
    color: var(--safe-green);
    margin-top: 3px;
}

.orbis-metrics-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .orbis-metrics-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

.orbis-metric-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--panel-border);
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    transition: border-color 0.3s;
}

.orbis-metric-card:hover {
    border-color: rgba(0, 242, 254, 0.3);
}

.orbis-metric-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 6px;
}

.orbis-metric-lbl {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.orbis-nda-box {
    background: rgba(0, 242, 254, 0.04);
    border: 1px dashed rgba(0, 242, 254, 0.25);
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .orbis-nda-box {
        flex-direction: column;
        text-align: center;
    }
}

.orbis-nda-left h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.orbis-nda-left p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* Mega Menu Navigation Styling */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap !important;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    padding: 6px 10px;
    border-radius: 8px;
    font-family: inherit;
    flex-shrink: 0;
}

.nav-dropdown-trigger span {
    white-space: nowrap !important;
}

.nav-dropdown-trigger:hover, .nav-item-dropdown:hover .nav-dropdown-trigger {
    color: #ffffff;
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.25);
}

/* Header Action Buttons & Pills */
.nav-sub-btn {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.vault-store-btn {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.15);
}

.vault-store-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: #38bdf8;
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
    color: #fff;
}

.demo-btn {
    background: rgba(0, 242, 254, 0.06);
    border: 1px solid rgba(0, 242, 254, 0.28);
    color: var(--primary);
}

.demo-btn:hover {
    background: rgba(0, 242, 254, 0.16);
    border-color: var(--primary);
    color: #fff;
}

.nav-pill-badge {
    background: rgba(56, 189, 248, 0.25);
    color: #38bdf8;
    font-size: 0.65rem;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 700;
    font-family: 'Fira Code', monospace;
}

/* Language Selector Dropdown */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border);
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0f172a;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    padding: 6px;
    min-width: 110px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    z-index: 1000;
    margin-top: 4px;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.active .lang-dropdown {
    display: block;
}

.lang-option {
    padding: 5px 10px;
    font-size: 0.78rem;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.lang-option:hover, .lang-option.active {
    background: rgba(0, 242, 254, 0.12);
    color: var(--primary);
}

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 620px;
    max-width: 90vw;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 242, 254, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1000;
    pointer-events: none;
    box-sizing: border-box;
}

/* Invisible Hover Bridge so cursor never loses hover when moving down */
.mega-menu-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.nav-item-dropdown:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
    pointer-events: auto;
}

.nav-item-dropdown:last-of-type .mega-menu-dropdown,
.nav-item-dropdown:nth-child(3) .mega-menu-dropdown {
    left: auto;
    right: 0;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.mega-menu-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    width: 100%;
}

.mega-menu-card:hover {
    background: rgba(0, 242, 254, 0.12);
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

.mega-menu-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: normal !important;
    word-break: break-word;
}

.mega-menu-card-title i {
    color: var(--primary);
    flex-shrink: 0;
}

.mega-menu-card-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
    white-space: normal !important;
    word-break: break-word;
}

.mega-menu-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    white-space: normal !important;
}

.mega-menu-footer-link {
    font-size: 0.82rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.mega-menu-footer-link:hover {
    text-decoration: underline;
}


