/* =========================================
   CSS Variables & Theme Setup 
   High-end, Deep-Tech aesthetic
   ========================================= */
:root {
    /* Color Palette */
    --bg-dark: #05050A;
    /* Deep almost-black for OLED feel */
    --bg-surface: #0E0F1A;
    /* Slightly lighter surface for cards */
    --bg-card: rgba(14, 15, 26, 0.7);
    /* Glassmorphic card base */

    --text-primary: #FFFFFF;
    --text-secondary: #9BA1B0;

    /* Accents */
    --accent-neon-blue: #00F0FF;
    --accent-deep-blue: #0D6EFD;
    --accent-silver: #E0E5EC;

    /* Gradients */
    --grad-neon: linear-gradient(90deg, #00F0FF 0%, #0D6EFD 100%);
    --grad-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);

    /* Glows */
    --glow-blue: 0 0 20px rgba(0, 240, 255, 0.4);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   Base Layout 
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography styles */
h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

/* Utility for dynamic text */
.text-gradient {
    background: var(--grad-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   Navigation Bar 
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-smooth), padding var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(5, 5, 10, 0.95);
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--grad-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    cursor: pointer;
}

/* Adding a subtle dot to the logo for tech feel */
.logo-text::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: -10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-neon-blue);
    border-radius: 50%;
    box-shadow: var(--glow-blue);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

/* Subtle underline animation on hover and active */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--grad-neon);
    transition: width var(--transition-smooth);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* =========================================
   Language Toggle
   ========================================= */
.lang-toggle-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
}

.separator {
    color: rgba(255, 255, 255, 0.2);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: all var(--transition-fast);
    font-weight: inherit;
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    color: var(--accent-neon-blue);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* We will implement a mobile menu later if needed */
    }
}

/* =========================================
   Layout Utilities
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center {
    text-align: center;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), var(--glow-blue);
    border-color: rgba(0, 240, 255, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for navbar */
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.15) 0%, rgba(5, 5, 10, 1) 60%),
        /* High tech grid pattern */
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    z-index: -1;
}

/* Core high-tech glowing orb effect behind text */
.hero-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
    animation: pulseOrb 8s infinite alternate ease-in-out;
}

@keyframes pulseOrb {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slogan-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-silver);
    backdrop-filter: blur(10px);
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    max-width: 1000px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    color: var(--accent-silver);
    font-weight: 300;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* =========================================
   Positioning Section
   ========================================= */
.positioning-section {
    background: var(--bg-dark);
}

.positioning-card {
    border-top: 2px solid var(--accent-deep-blue);
    position: relative;
    overflow: hidden;
}

.positioning-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(4rem, 10vw, 12rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.positioning-content {
    position: relative;
    z-index: 1;
}

.pulse-text {
    animation: enginePulse 2.5s infinite ease-in-out;
    display: inline-block;
    color: var(--accent-neon-blue);
    font-weight: 600;
}

@keyframes enginePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: none;
    }

    50% {
        transform: scale(1.03);
        opacity: 1;
        text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
        text-shadow: none;
    }
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .glass-card {
        padding: 2rem 1.5rem;
    }
}

/* =========================================
   Investment Thesis Section
   ========================================= */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-layout .text-content,
.split-layout .visual-content {
    flex: 1;
}

.thesis-visual {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-item span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.bar-chart-container {
    width: 100%;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.bar-chart {
    height: 100%;
    border-radius: 15px;
}

.legacy-bar {
    width: 90%;
    background: #FF3B30;
    /* Red indicating bottleneck */
    opacity: 0.7;
}

.xcellynk-bar {
    width: 30%;
    /* Represents footprint reduction / efficiency */
    background: var(--grad-neon);
    position: relative;
    overflow: hidden;
}

.xcellynk-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    100% {
        left: 200%;
    }
}

@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
    }
}

/* =========================================
   Product Moat Section
   ========================================= */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 2px solid transparent;
    transition: all var(--transition-smooth);
}

.feature-card:hover {
    border-top-color: var(--accent-neon-blue);
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

/* =========================================
   Business Model Section
   ========================================= */
.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    padding: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.comparison-table .brand-nvidia {
    color: #76B900;
    /* NVIDIA Green */
}

.comparison-table .brand-xcellynk {
    color: var(--accent-neon-blue);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td.highlight {
    color: var(--accent-neon-blue);
    font-weight: 600;
}

.comparison-table tbody tr {
    transition: background var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

/* =========================================
   Interactive Charts Layouts
   ========================================= */
.market-chart-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    height: 400px;
    position: relative;
    box-sizing: border-box;
}

.moat-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.moat-split .feature-grid {
    flex: 1;
    margin-top: 0;
}

.moat-chart-container {
    flex: 1;
    padding: 2rem;
    height: 450px;
    position: relative;
    box-sizing: border-box;
}

/* =========================================
   Global Interactive Map
   ========================================= */
.map-visual {
    flex: 1.5;
    padding: 2rem;
    position: relative;
    min-height: 400px;
    background: radial-gradient(circle at center, rgba(13, 110, 253, 0.15) 0%, transparent 70%);
}

.world-map {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.map-connections {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.6;
}

.anim-line {
    stroke-dashoffset: 100;
    animation: dash 5s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.map-node {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.node-germany {
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.node-korea {
    top: 40%;
    left: 75%;
    transform: translate(-50%, -50%);
}

.node-mfg {
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.pulse-dot {
    width: 16px;
    height: 16px;
    background: var(--accent-neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    animation: pulseNode 2s infinite;
}

@keyframes pulseNode {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

.node-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: rgba(14, 15, 26, 0.8);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.node-tooltip {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(5, 5, 10, 0.95);
    border: 1px solid var(--accent-deep-blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.map-node:hover .node-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 992px) {
    .moat-split {
        flex-direction: column;
    }

    .moat-chart-container {
        width: 100%;
        height: 350px;
    }
}

/* =========================================
   Hero Metrics
   ========================================= */
.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 1.5rem 3rem;
    background: rgba(14, 15, 26, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-neon-blue);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero-metrics {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .metric-item {
        min-width: 120px;
    }
}

/* =========================================
   Space Value & Revenue Section
   ========================================= */
.space-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.space-split>div {
    flex: 1;
}

.space-visual {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.space-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.2));
}

.space-labels {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.space-labels .arrow {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.space-subtext {
    margin-top: 0.5rem;
    font-weight: 600;
}

.revenue-impact {
    padding: 2.5rem;
    border-left: 4px solid var(--accent-neon-blue);
}

.revenue-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.revenue-header h3 {
    font-size: 1.6rem;
    color: var(--accent-silver);
    line-height: 1.3;
    max-width: 85%;
}

.eco-card:hover {
    transform: translateY(-8px);
    background: rgba(13, 110, 253, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.2);
}

.eco-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.9), rgba(255, 215, 0, 0.6));
    opacity: 1;
}

.eco-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
    transition: transform 0.3s ease;
}

.eco-card:hover .eco-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.eco-title {
    font-family: 'Saira', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.eco-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--accent-neon-blue);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.eco-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    opacity: 0.9;
}

.revenue-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(13, 110, 253, 0.5));
    animation: growProfit 3s infinite alternate ease-in-out;
    transform-origin: center;
}

@keyframes growProfit {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(13, 110, 253, 0.3));
    }

    100% {
        transform: scale(1.3);
        filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.8));
    }
}

.formula-box {
    background: rgba(0, 240, 255, 0.05);
    border: 1px dotted rgba(0, 240, 255, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.formula-text {
    font-family: 'Outfit', monospace;
    font-size: 1.05rem;
    color: var(--accent-neon-blue);
    font-weight: 500;
}

.revenue-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tech-enabler {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(14, 15, 26, 0.6);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-enabler strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .space-split {
        flex-direction: column;
    }

    .revenue-header h3 {
        font-size: 1.3rem;
    }
}

/* =========================================
   Technical Moat 2-Column Layout
   ========================================= */
.moat-layout-2col {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 2rem;
    align-items: stretch;
}

.moat-left-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.moat-right-col {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.moat-chart-container {
    flex: 1;
    min-height: 400px;
    width: 100%;
}

.moat-static-specs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(13, 110, 253, 0.15);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.05);
}

.spec-item .icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
}

.mono-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    color: var(--accent-neon-blue);
    font-weight: 500;
}

/* Specific Mono overrides for general metrics */
.metric-value {
    font-family: 'Roboto Mono', monospace;
}

@media (max-width: 992px) {
    .moat-layout-2col {
        grid-template-columns: 1fr;
    }

    .moat-static-specs {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* =========================================
   Mobile Quick Links Utility
   ========================================= */
.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

.flex-row-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    gap: 0.5rem;
}

.nav-link-mobile {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link-mobile:hover {
    color: var(--text-primary);
}

.nav-link-mobile.active {
    color: var(--accent-neon-blue);
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex;
        align-items: center;
    }

    .desktop-only {
        display: none !important;
    }

    .nav-container {
        padding: 0 1rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .navbar,
    .navbar.scrolled {
        height: auto !important;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .flex-row-center {
        display: contents;
    }

    .logo {
        order: 1;
    }

    .lang-toggle-container {
        order: 2;
    }

    .mobile-only.mobile-nav-text {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }
}