﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&family=Inter:wght@400;500;600&display=swap');
/* Tactical HUD Elements */
/* Unified Elite Background Wrapper */
.unified-elite-bg {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.unified-elite-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030712;
    background-image:
        radial-gradient(circle at 20% 40%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

.hud-label {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    font-weight: 800;
    color: #06b6d4;
    /* var(--primary) hardcoded for safety */
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.6;
    text-transform: uppercase;
    display: block;
}

.global-breathe-frame {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    border: 1px solid rgba(6, 182, 212, 0.1);
    box-shadow: inset 0 0 15px rgba(6, 182, 212, 0.05);
    animation: global-breathe 6s ease-in-out infinite alternate;
}

@keyframes global-breathe {
    0% {
        border-color: rgba(6, 182, 212, 0.05);
        box-shadow: inset 0 0 10px rgba(6, 182, 212, 0.02);
    }

    100% {
        border-color: rgba(6, 182, 212, 0.3);
        box-shadow: inset 0 0 30px rgba(6, 182, 212, 0.15);
    }

}

/* --- Vertical Dot Navigation (Smarter Responsiveness) --- */
.floating-side-labels {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.float-label {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.float-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0);
    animation: dotPulse 4s infinite ease-in-out;
}

@keyframes dotPulse {
    0%,
    100% {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }

    50% {
        background: var(--primary);
        transform: scale(1.3);
        box-shadow: 0 0 10px var(--primary);
    }

}

.float-label:nth-child(2)::before {
    animation-delay: 1s;
}

.float-label:nth-child(3)::before {
    animation-delay: 2s;
}

.float-label:nth-child(4)::before {
    animation-delay: 3s;
}

.float-label:nth-child(5)::before {
    animation-delay: 0.5s;
}

.float-label:hover::before,
.float-label.active::before {
    background: var(--primary);
    transform: scale(1.5) !important;
    box-shadow: 0 0 15px var(--primary), 0 0 0 6px rgba(6, 182, 212, 0.2);
    animation: none;
}

.float-label:hover {
    color: white;
}

.float-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    /* Hidden by default to prevent overlap */
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-label:hover .float-text {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1200px) {
    .floating-side-labels {
        left: 20px;
        /* Bring closer to edge */
    }

    .float-text {
        display: none;
        /* Never show text on tablets/mobile to avoid overlap */
    }

}

@media (max-width: 768px) {
    .floating-side-labels {
        display: none;
        /* Hide completely on mobile for clean UI */
    }

}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

:root {
    --bg-deep: #030712;
    --bg-surface: rgba(15, 23, 42, 0.6);
    --primary: #06b6d4;
    --primary-glow: rgba(6, 182, 212, 0.4);
    --secondary: #8b5cf6;
    --secondary-glow: rgba(139, 92, 246, 0.4);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
    font-family: '' Inter', sans-serif !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Animated Background --- */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #111827 0%, #030712 100%);
}

.bg-mesh::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: meshScroll 30s linear infinite;
}

@keyframes meshScroll {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1100;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
    top: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Ensure it's white/visible on dark */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Navigation Dropdown */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    min-width: 220px;
    padding: 0.8rem 0;
    display: none;
    z-index: 1000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-links li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    display: block;
    margin: 0 !important;
}

.dropdown-menu li a {
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary) !important;
    padding-left: 1.8rem;
}

/* --- Mega Menu Design --- */
.nav-item-mega {
    position: static !important;
    /* Forces mega-menu to align with navbar container if needed, or keep relative for centered panel */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background-color: rgba(3, 7, 18, 0.98);
    background-image:
        radial-gradient(circle at 80% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 60%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    /* INVERSE of site gradient */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9);
}

.nav-links .nav-item-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.mega-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mega-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.mega-card.primary {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem 1.5rem;
    /* Row gap and Column gap */
    border-radius: 24px;
    align-items: center;
    /* Vertically center icon and title */
}

.mega-card.primary .mega-info {
    display: contents;
    /* Allows children to be direct grid items of .mega-card.primary */
}

.mega-card.secondary {
    gap: 1.5rem;
    align-items: center;
}

.mega-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.1);
}

.mega-card.primary .mega-icon {
    grid-row: 1;
    grid-column: 1;
    width: 64px;
    height: 64px;
    background: rgba(6, 182, 212, 0.08);
    /* Sophisticated transparent teal */
    border: 1px solid rgba(6, 182, 212, 0.15);
    /* Tech border */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.05);
    /* Very subtle glow */
}

.mega-card.primary .mega-info h4 {
    grid-row: 1;
    grid-column: 2;
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.mega-card.primary .mega-info p {
    grid-row: 2;
    grid-column: 1 / span 2;
    /* Full width under icon and title */
    margin-top: 0.5rem;
    padding-top: 0;
}

.mega-card.secondary {
    padding: 1.2rem;
    gap: 1rem;
    background: transparent;
}

.mega-card.secondary .mega-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.mega-info h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.mega-info h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.mega-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.mega-secondary-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Mega Footer - Managed Services */
.mega-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.mega-footer::after {
    display: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.footer-benefits-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-title {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #06b6d4;
    font-weight: 600;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2.5rem;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.benefit-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.mega-cta-card {
    background: rgba(6, 182, 212, 0.05);
    /* Neutral/Cyan tint */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 440px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 15px rgba(6, 182, 212, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
}

.mega-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 0% 0%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.mega-cta-card>* {
    position: relative;
    z-index: 1;
}

.mega-cta-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(6, 182, 212, 0.15),
        inset 0 0 20px rgba(6, 182, 212, 0.1);
}

.mega-cta-card .cta-info h4 {
    color: #fff;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.mega-cta-card .cta-info p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0.2rem 0 0;
    font-size: 0.85rem;
}

.mega-cta-card .cta-button {
    background: #10b981;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.mega-cta-card .cta-button:hover {
    background: #059669;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links a svg {
    transition: transform 0.3s ease;
}

.nav-links li:hover>a svg {
    transform: rotate(180deg);
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    white-space: nowrap;
    color: white !important;
    /* Ensure visibility even inside nav */
}

.btn-primary {
    background: var(--accent-gradient);
    color: white !important;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- Hero Section --- */
.hero {
    padding: 180px 0 100px;
    position: relative;
    z-index: 1000;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    z-index: 10;
}

/* --- Background Decorations Clones --- */
.section-decoration {
    position: absolute;
    width: 35%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
    filter: blur(40px);
}

.decoration-right {
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
}

.decoration-left {
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
}

.hero-image-v2 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 45%;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}

.hero-image-v2 img {
    width: 100%;
    height: auto;
    filter: blur(2px);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: var(--transition);
}

.badge-ai {
    background: rgba(139, 92, 246, 0.1);
    color: var(--secondary);
    border-color: rgba(139, 92, 246, 0.3);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.1);
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 2rem;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0 auto 2.2rem;
    /* Reduced from 3rem */
    max-width: 700px;
}

.category-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
    position: relative;
    /* Not fixed */
    z-index: 10;
    justify-content: center;
}

/* --- Final Domain Search (Refined Cyber HUD) --- */
.domain-card {
    position: relative;
    max-width: 700px;
    margin: 4rem auto 0;
    transition: var(--transition);
    z-index: 1001;
    background: rgba(6, 182, 212, 0.03);
    border: 1px solid var(--primary);
    padding: 0.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(6, 182, 212, 0.1);
    overflow: hidden;
    pointer-events: all;
}

.domain-card input {
    background: transparent;
    border: none;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    flex: 1;
    font-size: 1.1rem;
    padding-left: 1rem;
    outline: none;
}

.domain-card input::placeholder {
    color: rgba(6, 182, 212, 0.4);
}

.domain-card .btn {
    padding: 0.8rem 2.5rem;
    /* Inherits .btn-primary styles (gradient background, white text, etc.) */
}

.domain-card .btn:hover {
    transform: translateY(-2px);
}

/* --- Hero Refinement: Trust Band & Scroll --- */
.hero-trust-band {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 4rem;
    padding: 1.7rem 3rem;
    background: rgba(8, 12, 24, 0.6);
    /* Darkened slightly for better contrast */
    backdrop-filter: blur(15px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Slightly more visible border */
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    /* Higher contrast text */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-trust-band .icon-rotate-cw {
    transition: all 0.4s ease;
}

.hero-trust-band.show .icon-rotate-cw {
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

.trust-item svg {
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    opacity: 0.5;
    z-index: 20;
}

.scroll-indicator:hover {
    opacity: 1;
    color: white;
}

.scroll-indicator svg {
    animation: scrollBounce 2s infinite ease-in-out;
    color: var(--primary);
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }

}

@media (max-width: 992px) {
    .hero-trust-band {
        gap: 2rem;
        padding: 1.2rem 2rem;
    }

}

@media (max-width: 768px) {
    .hero-trust-band {
        flex-direction: column;
        gap: 1.2rem;
        border-radius: 24px;
        padding: 2rem;
        margin-top: 4rem;
        align-items: flex-start;
        width: 100%;
    }

    .scroll-indicator {
        display: none;
        /* Hide on mobile for cleaner look */
    }

}

/* --- Feature Grid --- */
.features {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Compact Bridge Header */
.benefit-bridge {
    position: relative;
    z-index: 50;
    padding: 60px 0 0 0 !important;
    overflow: visible;
}

.benefit-bridge::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(148, 163, 184, 0.15) 0%, transparent 70%);
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
}

.benefit-bridge::after {
    content: '';
    position: absolute;
    top: 200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    filter: blur(150px);
    pointer-events: none;
    z-index: -1;
}

/* Bring above unified-elite-bg which is z-index 10 */
.benefit-bridge .section-header {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    text-align: left;
    align-items: flex-start;
}

.benefit-bridge .elegant-header {
    justify-content: flex-start;
    margin-bottom: 0;
    text-align: left;
}

.benefit-bridge .section-header p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-top: 10px;
    max-width: 100%;
}

@media (max-width: 992px) {
    .benefit-bridge .section-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .benefit-bridge .elegant-header {
        justify-content: center;
    }

}

/* Solutions Hub Redesign */
.solutions-hub {
    padding: 40px 0 39px 0 !important;
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    position: relative;
    z-index: 1;
}

.solutions-hub .container {
    position: relative;
    z-index: 2;
}

.solutions-hub .section-header {
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    text-align: left;
    align-items: flex-start;
}

.solutions-hub .header-left .hud-label {
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: 'Fira Code', monospace;
}

.solutions-hub .header-left h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 0;
    color: white;
    display: block !important;
    /* Override elegant-header flex */
    text-align: left !important;
}

.solutions-hub .header-right p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 48px;
    /* Precise alignment with H2 top */
}

@media (max-width: 992px) {
    .solutions-hub .section-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .solutions-hub .header-right p {
        margin-top: 0;
    }

}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--primary-glow), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.feat-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

/* --- Pricing (Full-Width with Breathing FX) --- */
/* Smooth Cursive Transitions */
@keyframes Pricing-Breathe {
    0% {
        border-color: rgba(6, 182, 212, 0.1);
        box-shadow: inset 0 0 60px rgba(6, 182, 212, 0.03);
    }

    100% {
        border-color: rgba(6, 182, 212, 0.4);
        box-shadow: inset 0 0 120px rgba(6, 182, 212, 0.1);
    }

}

.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    height: 160%;
    background:
        radial-gradient(circle at 15% 45%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.25) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 5;
}

.price-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 4rem 3rem;
    border-radius: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.05) 0%, transparent 100%);
    position: relative;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

/* Custom interactive effect ONLY for side buttons as requested */
.price-card:not(.featured) .btn:hover {
    transform: translateY(-5px);
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px var(--primary-glow);
    border-color: var(--primary);
}

/* Keep middle/featured button static */
.price-card.featured .btn:hover {
    transform: none;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
    /* Maintain base shadow only */
}

.price-val {
    font-size: 4rem;
    font-weight: 800;
    margin: 2rem 0;
}

.price-val span {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

/* --- VPS Section (Horizontal Redesign) --- */
.vps-section {
    padding: 120px 0;
    position: relative;
    background: url('images/vps-background-premium-v2.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

/* All background pseudo-elements disabled for clean slate */
.vps-section::before,
.vps-section::after {
    display: none;
    content: none;
}

.vps-section .container {
    position: relative;
    z-index: 5;
}

.vps-section .section-header h2,
.vps-section .section-header p {
    color: var(--text-primary);
}

.vps-id span {
    color: var(--secondary) !important;
}

.vps-price-row {
    color: var(--text-primary);
}

.vps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.vps-row {
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 3fr 1fr 1.5fr;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.terminal-row {
    display: grid;
    grid-template-columns: 60px 1fr 180px 120px;
    /* Slightly wider tag column */
    align-items: center;
    padding: 1.5rem 1.5rem;
    /* More vertical padding for clarity */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #ffffff;
    transition: background 0.2s ease;
}

.vps-row:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.05);
}

.vps-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.vps-row:hover::after {
    opacity: 1;
}

.vps-id h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.vps-id span {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vps-specs-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-val {
    font-size: 1.1rem;
    font-weight: 700;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.vps-price-row {
    font-size: 1.75rem;
    font-weight: 900;
}

.vps-price-row small {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Lab Ecosystem Bento Grid --- */
.lab-ecosystem-section {
    position: relative;
    padding: 0 0 0 0 !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Diffuse Ambient source */
.lab-ecosystem-section::before {
    content: '';
    position: absolute;
    top: 250px;
    left: 10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, rgba(20, 184, 166, 0.05) 60%, transparent 85%);
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
}

/* Vertical Reflector Spotlight */
.lab-ecosystem-section::after {
    content: '';
    position: absolute;
    top: 150px;
    left: 2%;
    width: 650px;
    height: 2500px;
    background: linear-gradient(to bottom,
            rgba(6, 182, 212, 0.55) 0%,
            rgba(6, 182, 212, 0.25) 30%,
            rgba(6, 182, 212, 0.1) 60%,
            transparent 90%);
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

/* Pull section up */
.ecosystem-lattice {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    height: 100% !important;
    overflow: hidden !important;
}

.lattice-svg {
    width: 100%;
    height: 100%;
}

.lab-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
    margin-top: 0.5rem !important;
    /* Removed top margin */
    position: relative;
    z-index: 5;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(15px);
}

/* Feature Box (Spans 2x2) - Redesigned per image */
.lab-bento-item {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    /* Squared corners */
    clip-path: none;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.lab-bento-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.9) 100%),
        url('images/futuristic_server_banner_bg.png');
    background-size: cover;
    background-position: center;
    border-color: rgba(6, 182, 212, 0.2);
    border-radius: 40px;
    /* Restore rounded corners */
    clip-path: none;
    /* Restore full border visibility */
}

.bento-item.secondary {
    grid-column: span 2;
    grid-row: span 1;
}

.item-id,
.module-id {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--primary);
    opacity: 0.4;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.eco-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eco-card.mini {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.eco-icon-wrapper {
    width: 60px;
    height: 60px;
    position: relative;
}

.eco-icon-wrapper.mini {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.eco-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.3));
}

.nav-links li::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.3s ease;
}

/* Responsive Mega Menu */
@media (max-width: 1024px) {
    .mega-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mega-container {
        padding: 0 20px;
    }

    .footer-benefits {
        gap: 1.5rem;
    }

}

@media (max-width: 768px) {
    .nav-item-mega .mega-menu {
        display: none !important;
        /* Disable mega menu on mobile to avoid overflow issues */
    }

}

.icon-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: scanMove 3s infinite linear;
}

@keyframes scanMove {
    0% {
        top: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }

}

.eco-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.eco-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.eco-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.eco-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: auto;
    text-decoration: none;
    transition: var(--transition);
}

.eco-link:hover {
    gap: 0.8rem;
    text-shadow: 0 0 10px var(--primary);
}

.deco-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    pointer-events: none;
}

.deco-corner.tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.deco-corner.br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.lab-bento-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* New Badge Adjustment */
.eco-badge-new {
    top: 15px;
    left: 55px;
    /* Offset from icon */
    transform: translateZ(30px);
}

/* Tablet Layout */
@media (max-width: 1200px) {
    .lab-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile Layout */
@media (max-width: 768px) {
    .lab-bento-grid {
        grid-template-columns: 1fr;
    }

    .lab-bento-item.featured {
        grid-column: span 1;
        grid-row: span 1;
        padding: 2.5rem;
    }

    .lab-bento-item.featured h3 {
        font-size: 1.75rem;
    }

}

/* Any additional ecosystem styles should go here */
/* --- Global Network --- */
.network-section {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h4 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 600;
}

/* --- Content Sections (Restored) --- */
.content-section {
    padding: 100px 0;
    position: relative;
}

.terminal-grid-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.terminal-sidebar {
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.terminal-sidebar h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.terminal-sidebar .float-label {
    position: relative;
    /* Contain them */
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.content-img-wrapper {
    position: relative;
}

.content-img-wrapper img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.content-text h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.content-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.content-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.content-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.content-features li::before {
    content: '\2192';
    color: var(--primary);
    font-weight: 900;
}

.reverse .content-grid {
    direction: rtl;
}

.reverse .content-text {
    direction: ltr;
}

.section-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    opacity: 0.1;
    pointer-events: none;
    filter: blur(80px);
}

.decoration-left {
    left: -100px;
    top: 0;
}

.decoration-right {
    right: -100px;
    top: 0;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .content-features li {
        justify-content: center;
    }

}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: var(--transition);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding-bottom: 2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

/* --- Reveal Animation --- */
.rev {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.rev.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- Media Queries --- */
@media (max-width: 1200px) {
    .vps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .vps-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

}

/* --- Future Proof (Restored) --- */
.sol-mini-card:hover {
    border-color: var(--primary);
    background: rgba(22, 27, 34, 1);
}

.sol-hud {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: 'Fira Code', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
}

.sol-card:hover .sol-hud,
.sol-mini-card:hover .sol-hud {
    opacity: 1;
    text-shadow: 0 0 10px var(--primary);
}

.sol-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

.sol-card p {
    color: #8b949e;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 40px;
}

.sol-visual {
    margin-top: 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sol-visual img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.sol-card:hover .sol-visual img {
    transform: scale(1.05);
}

.sol-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sol-mini-card {
    padding: 40px;
}

.sol-mini-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.sol-mini-card p {
    color: #8b949e;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.sol-mini-visual img {
    height: 54px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.4));
}

@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .sol-card {
        padding: 40px;
    }

}

/* --- Planet Section (Future Proof) --- */
.planet-section {
    --planet-accent: #00ff88;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #030712;
}

.planet-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 800px;
}

.planet-container {
    position: relative;
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet-image-wrapper {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 100px rgba(6, 182, 212, 0.3);
    overflow: hidden;
}

.planet-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.planet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(3, 7, 18, 0.8) 100%);
    pointer-events: none;
    z-index: 3;
}

/* Moving Orbit Line */
.planet-orbit {
    position: absolute;
    width: 530px;
    height: 530px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.orbit-line {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: 2px solid var(--planet-accent);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    animation: rotateOrbit 6s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.orbit-dot {
    position: absolute;
    top: 0px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--planet-accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--planet-accent), 0 0 30px var(--planet-accent);
    transform: translateX(-50%);
}

@keyframes rotateOrbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

.planet-content {
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 0 4rem;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.planet-content>* {
    pointer-events: auto;
}

.planet-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8), 0 0 10px rgba(6, 182, 212, 0.5);
    font-weight: 800;
}

.planet-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .planet-container {
        width: 100%;
        height: auto;
    }

    .planet-image-wrapper {
        width: 300px;
        height: 300px;
    }

    .planet-orbit {
        width: 350px;
        height: 350px;
    }

    .planet-content h2 {
        font-size: 2.25rem;
    }

}

/* --- Vortex Bento Section --- */
.vortex-section {
    padding: 100px 0;
    position: relative;
}

.vortex-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 1.5rem;
}

.vortex-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

/* --- Nexus Benefit Strip (Spectacular Edition) --- */
.nexus-benefit-strip {
    padding: 30px 0;
    position: relative;
    z-index: 20;
}

.strip-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered instead of spaced-out */
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 1.25rem 2.5rem;
    /* Fixed gap for a compact unit feel */
    gap: 2rem;
    position: relative;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    width: fit-content;
    /* Make the card wrap the content */
    margin: 0 auto;
    /* Center the whole card in the container */
}

/* Moving Glass Shine Effect */
.strip-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.05) 40%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 60%,
            transparent);
    transition: 0.8s;
}

.strip-wrapper:hover::after {
    left: 150%;
}

/* Animated Gradient Border */
.strip-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 229, 255, 0.3),
            transparent,
            rgba(0, 229, 255, 0.3),
            transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    background-size: 200% 100%;
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: 0 0;
    }

}

.benefit-module {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    padding: 1rem 0.25rem;
    /* Reduced horizontal padding */
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    cursor: pointer;
}

.module-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
    position: relative;
}

.benefit-module:hover .module-icon {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 50px var(--primary-glow);
    transform: rotateY(180deg) scale(1.1);
}

.module-info h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    white-space: nowrap;
    letter-spacing: -0.5px;
    transition: 0.3s;
}

.benefit-module:hover .module-info h3 {
    color: var(--primary);
    transform: translateX(5px);
}

.tech-tag {
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.7;
    background: rgba(0, 229, 255, 0.15);
    padding: 2px 10px;
    border-radius: 6px;
    display: inline-block;
}

.strip-connector {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    opacity: 0.15;
    flex-shrink: 0;
    animation: pulseConnector 2.5s infinite ease-in-out;
}

@keyframes pulseConnector {
    0%,
    100% {
        opacity: 0.15;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 0.4;
        transform: scaleY(1.2);
    }

}

.benefit-module:hover {
    transform: translateY(-10px);
}

.strip-cta-wrapper {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 5;
}

.btn-strip-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 14px;
    border: 1px solid rgba(0, 229, 255, 0.4);
    /* Clear but calm border */
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-strip-cta:hover {
    background: rgba(0, 229, 255, 0.1);
    /* Very subtle background on hover */
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
    gap: 16px;
}

/* Floating Ambient Orb removed from here per user request */
@media (max-width: 1200px) {
    .strip-wrapper {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .strip-connector {
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--primary), transparent);
    }

    .strip-cta-wrapper {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2.5rem;
        width: 100%;
        text-align: center;
    }

    .btn-strip-cta {
        justify-content: center;
        width: 100%;
    }

}

/* --- Nexus Elite Reviews Section --- */
.nexus-reviews-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.review-card {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(20, 20, 20, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.review-card .card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s ease;
    pointer-events: none;
}

.review-card:hover .card-glow {
    opacity: 0.05;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #0088ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.user-role {
    color: var(--text-secondary);
    font-size: 0.75rem;
    opacity: 0.7;
}

.review-badge {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--primary);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), #00d4ff);
    box-shadow: 0 0 10px var(--primary-glow);
}

.rating-val {
    color: var(--primary);
    font-weight: 900;
    font-size: 0.85rem;
    font-family: monospace;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.review-card .hud-id {
    font-family: monospace;
    font-size: 0.6rem;
    color: var(--primary);
    opacity: 0.3;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

}

/* --- Compact Infrastructure Strip --- */
.nexus-infra-strip {
    padding: 3rem 0;
    margin-top: 5rem;
    background: rgba(15, 23, 42, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.infra-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.infra-item {
    text-align: center;
}

.infra-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.infra-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.infra-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.2), transparent);
}

@media (max-width: 992px) {
    .infra-flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }

    .infra-divider {
        display: none;
    }

}

/* --- Premium Why CTA --- */
.premium-cta-wrap {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
}

.cta-mini-box {
    text-align: center;
}

.cta-mini-box p {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.premium-cta-wrap {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
}

.cta-mini-box {
    text-align: center;
}

.cta-mini-box p {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .premium-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .why-nexus-premium {
        padding: 80px 0;
    }

}

/* --- Elite Nexus Section --- */
.elite-section {
    padding: 0rem 0 0 0;
    position: relative;
    z-index: 5;
}

.nexus-bridge {
    position: relative;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #030712);
    /* Space for bridge stats centered on line */
    z-index: 10;
}

.unified-elite-bg {
    position: relative;
    background: transparent;
    /* Wrapper handles the single continuous background through pseudo-elements */
}

.unified-elite-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030712;
    /* Core theme color */
    background-image:
        radial-gradient(circle at 20% 40%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

.unified-elite-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15rem;
    /* Smoothly fade any remaining edge to the body color */
    background: linear-gradient(to bottom, transparent, #030712);
    pointer-events: none;
    z-index: -1;
}

/* --- Lab-404 Premium Footer --- */
.lab-footer {
    padding: 6rem 0 3rem 0;
    color: var(--text-secondary);
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal-badges {
    display: flex;
    gap: 1rem;
}

.legal-badge img {
    height: 40px;
    width: auto;
    border-radius: 4px;
    background: white;
    padding: 2px;
}

.footer-payments img {
    height: 35px;
    width: auto;
    filter: grayscale(1) brightness(2);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-payments:hover img {
    filter: none;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: white;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-badges {
        justify-content: center;
    }

}

/* --- Nexus Bridge Transition --- */
.nexus-bridge {
    position: relative;
    height: 1px;
    width: 100%;
    margin-top: 4rem;
    z-index: 20;
}

.bridge-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(6, 182, 212, 0.2) 20%,
            rgba(6, 182, 212, 0.2) 80%,
            transparent 100%);
}

.pulse-spark {
    position: absolute;
    top: -1px;
    left: -100px;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    filter: blur(1px);
    animation: bridgePulse 5s infinite linear;
}

@keyframes bridgePulse {
    0% {
        left: -150px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }

}

@media (max-width: 768px) {
    .nexus-bridge {
        margin-top: 2rem;
    }

}

/* --- Hyperflow Velocity Reactor --- */
.hyperflow-section {
    padding: 4rem 0;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.hyperflow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    /* Minimal gap as conduits fill the space */
}

.hyperflow-root {
    position: relative;
    padding: 1rem 2.5rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    cursor: default;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.05);
}

.hyperflow-root:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.2);
    transform: scale(1.02);
}

.root-core {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px var(--primary);
}

.root-core::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    animation: corePulse 2s infinite;
}

@keyframes corePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }

}

.root-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fff, var(--primary), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property for compatibility */
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
}

@keyframes textShimmer {
    to {
        background-position: 200% center;
    }

}

.flow-conduits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.conduit-branch {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conduit-branch.left {
    align-items: flex-start;
    padding-left: 10%;
}

.conduit-branch.right {
    align-items: flex-end;
    padding-right: 10%;
}

.conduit-svg {
    width: 200px;
    height: 100px;
    color: var(--primary);
    opacity: 0.3;
    filter: drop-shadow(0 0 5px var(--primary));
}

.conduit-path {
    stroke-dasharray: 4, 8;
    animation: pathFlow 20s linear infinite;
}

@keyframes pathFlow {
    from {
        stroke-dashoffset: 200;
    }

    to {
        stroke-dashoffset: 0;
    }

}

.conduit-particle {
    fill: var(--primary);
    filter: blur(1px);
}

.flow-node {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    max-width: 350px;
}

.flow-node:hover {
    border-color: var(--primary);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-5px);
}

.node-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.node-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.node-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .flow-conduits {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .conduit-branch {
        padding: 0 !important;
        align-items: center !important;
    }

    .conduit-svg {
        display: none;
        /* Hide conduits on mobile for cleaner look */
    }

}

.elite-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Base classes first */
/* Base classes first */
.elite-card {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    overflow: hidden;
    backdrop-filter: blur(30px);
    transition: var(--transition);
}

.elite-card::before,
.elite-mini-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0.15;
    /* Subtle background as requested */
}

/* Specific backgrounds */
.wp-card::before {
    background-image: url('images/nexus-elite-wp.png');
}

.security-card::before {
    background-image: url('images/content_v2_security_shield_1768192599576.png');
}

.speed-card::before {
    background-image: url('images/nexus-elite-speed.png');
}

.elite-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.elite-card:hover::before,
.elite-mini-card:hover::before {
    transform: scale(1.1);
}

.elite-mini-card {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    overflow: hidden;
    transition: var(--transition);
    flex: 1;
    /* Stretch to fill stack height */
}

.elite-mini-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.elite-card .deco-corner,
.elite-mini-card .deco-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid var(--primary);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 5px var(--primary-glow));
    z-index: 2;
}

.elite-card .deco-corner.tl,
.elite-mini-card .deco-corner.tl {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.elite-card .deco-corner.br,
.elite-mini-card .deco-corner.br {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.elite-card:hover .deco-corner,
.elite-mini-card:hover .deco-corner {
    opacity: 1;
    border-color: #fff;
    filter: drop-shadow(0 0 10px var(--primary));
}

.elite-card:hover .deco-corner.tl,
.elite-mini-card:hover .deco-corner.tl {
    transform: translate(-5px, -5px);
}

.elite-card:hover .deco-corner.br,
.elite-mini-card:hover .deco-corner.br {
    transform: translate(5px, 5px);
}

.elite-visual {
    display: none;
}

@keyframes eliteFloat {
    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(-20px) rotate(2deg);
    }

}

.elite-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    z-index: 2;
    width: 100%;
}

.elite-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.elite-content h2 {
    font-size: 2.8rem;
    /* Slightly smaller for height balance */
    line-height: 1.1;
    margin-bottom: 1rem;
}

.elite-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.elite-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items for balanced layout */
    gap: 1rem;
    margin-bottom: 2rem;
}

.elite-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content within li */
    gap: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.elite-features li::before {
    content: '\2192';
    color: var(--primary);
}

.elite-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.elite-mini-card:hover {
    border-color: var(--secondary);
    background: rgba(15, 23, 42, 0.7);
    transform: translateY(-5px);
}

.mini-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.mini-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.mini-visual {
    display: none;
}

.speed-card:hover .mini-visual img {
    transform: scale(1.1) rotate(5deg);
}

.highlight {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 1200px) {
    .elite-grid {
        grid-template-columns: 1fr;
    }

    .elite-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem;
    }

    .elite-features li {
        justify-content: center;
    }

}

.vortex-grid-v2 .vortex-card-v2:nth-child(n+4) .vortex-visual-v2 {
    max-width: 100%;
    height: 160px;
    object-fit: contain;
    margin-top: 1.5rem;
}

/* --- Selectors (Pricing & VPS) --- */
.terminal-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding-top: 4rem;
    /* More space from previous section */
}

.terminal-header-flex .elegant-header.no-margin {
    margin-bottom: 0;
    text-align: left;
    justify-content: flex-start;
    line-height: 1.1;
}

.selector-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.pricing-selector-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: -1.5rem;
    /* Pushing it slightly higher as requested */
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.selector-tab {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.selector-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.toggle-switch {
    width: 70px;
    height: 34px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 34px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
}

.toggle-circle {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 4px;
    transition: all 0.3s ease;
}

.toggle-container.active .toggle-circle {
    left: calc(100% - 30px);
    background: var(--primary);
}

.toggle-label {
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
}

.toggle-label.active {
    color: white;
}

/* --- Master Tactical Selector (Notch Design) --- */
.master-tactical-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    perspective: 1200px;
}

.notch-box {
    position: relative;
    background: rgba(10, 15, 25, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 3.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    min-width: 260px;
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.notch-text {
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 5;
}

/* The Notch Effect (Top-Right) */
.notch-box.active {
    border-color: var(--primary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.2);
}

.notch-box::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent var(--bg-deep) transparent transparent;
    transition: 0.3s;
}

.notch-box.active::after {
    border-color: transparent var(--primary) transparent transparent;
}

/* Extra: Data Shimmer Effect */
.hud-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            transparent 20%,
            rgba(6, 182, 212, 0.1) 40%,
            rgba(6, 182, 212, 0.2) 50%,
            rgba(6, 182, 212, 0.1) 60%,
            transparent 80%);
    background-size: 200% 100%;
    opacity: 0;
    z-index: 4;
    transition: 0.3s;
}

.notch-box.active .hud-scan {
    opacity: 1;
    animation: dataShimmer 3s linear infinite;
}

@keyframes dataShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }

}

.hud-code {
    position: absolute;
    bottom: 5px;
    right: 15px;
    font-family: monospace;
    font-size: 0.6rem;
    color: var(--primary);
    opacity: 0;
    transition: 0.3s;
}

.notch-box.active .hud-code {
    opacity: 0.6;
}

/* --- Pricing Card Refinement & Trust Signals --- */
.price-card {
    position: relative;
    background: rgba(10, 15, 25, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* --- Hostico-Inspired Pricing Card Styles --- */
.price-card {
    text-align: left;
    padding: 2rem 1.5rem;
    /* Even tighter padding */
    gap: 0.75rem;
    /* Significant reduction in internal gap */
}

.price-card-header {
    text-align: center;
    margin-bottom: 0.5rem;
    /* Ultra compact */
}

.price-card .plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
    color: #fff;
}

.plan-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.75rem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.pricing-grid {
    margin-top: 50px;
    /* Space for the floating badge */
}

.price-card .price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    /* White price as requested */
    margin-bottom: 0.75rem;
}

.price-card .price-val span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.price-card .order-btn {
    margin: 0 auto 0.5rem;
    /* Removing bottom space after button */
    font-weight: 600;
    text-transform: none;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0;
    width: 100%;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
}

.price-card-features {
    margin-bottom: 0.25rem;
    /* Almost no space after features */
}

.features-list,
.technical-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    /* Tightest list */
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.price-card-technical {
    text-align: left;
}

.tech-header {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    /* Tight header */
}

.tech-header span {
    color: var(--primary);
}

.technical-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 0.8rem;
    /* Ultra compact technical grid */
}

@media (min-width: 1200px) {
    .technical-list {
        grid-template-columns: repeat(3, 1fr);
    }

}

.features-list li.excluded,
.technical-list li.excluded {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.technical-list li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
}

.status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 14px;
    font-size: 0.7rem;
    font-weight: bold;
}

li:not(.excluded) .status-icon {
    color: #00ff88;
}

li.excluded .status-icon {
    color: #ff4d4d;
    opacity: 0.5;
}

.price-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    margin: 0.75rem 0;
    /* Minimal divider margin */
}

.featured-badge {
    position: absolute;
    top: -28px;
    /* Balanced floating position above the card */
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.4rem;
    border-radius: 8px 8px 0 0;
    /* Integrated tab look */
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 -5px 15px rgba(var(--primary-rgb), 0.3);
    white-space: nowrap;
    z-index: 10;
    text-transform: uppercase;
}

/* Ensure the card allows the badge to overflow */
.price-card.featured {
    overflow: visible !important;
    border-top-color: var(--primary);
    /* Highlight the top edge */
}

.wp-explore-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.wp-explore-link:hover {
    opacity: 1;
    gap: 12px;
}

.wp-explore-link svg {
    transition: transform 0.3s ease;
}

.wp-explore-link:hover svg {
    transform: translateX(4px);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(15, 20, 30, 0.6);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.price-val {
    position: relative;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 1.5rem 0;
}

.price-val span {
    font-size: 1.1rem;
    opacity: 0.5;
    font-weight: 500;
}

.activation-tag {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.feature-icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
}

.feature-icon.shield {
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    width: 100%;
    margin-top: 4rem;
}

/* Nexus Trust Band */
.nexus-trust-band {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.trust-micro-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.mono-icon {
    height: 24px;
    width: auto;
    filter: grayscale(1) opacity(0.4);
    transition: 0.4s ease;
}

.mono-icon:hover {
    filter: grayscale(0) opacity(1);
}

.reassurance-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.1rem 3.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
    margin: 3.5rem auto 0;
    position: relative;
    z-index: 10;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-icon {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.trust-divider {
    display: block;
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.payment-methods-zone {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
}

.payment-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
}

.payment-gateway-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.payment-gateway-icons:hover {
    opacity: 1;
}

.payment-icon {
    height: 22px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    filter: grayscale(0) brightness(1);
    transform: translateY(-2px);
}

/* Vibrant Marquee Reviews Section */
.nexus-marquee-reviews {
    padding: 7rem 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    background: transparent;
}

.nexus-marquee-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.15) 0%, transparent 70%);
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
}

.nexus-marquee-reviews::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(148, 163, 184, 0.12) 0%, transparent 70%);
    filter: blur(150px);
    pointer-events: none;
    z-index: -1;
}

.marquee-header {
    text-align: center;
    margin-bottom: 2rem;
}

.marquee-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.marquee-header h2 span {
    background: linear-gradient(to right, #06b6d4, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.marquee-tracks-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 10px 0;
}

/* Animations */
.track-to-left {
    animation: marquee-left 60s linear infinite;
}

.track-to-right {
    animation: marquee-right 60s linear infinite;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }

}

/* Pause on hover to allow reading */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Vibrant Glassmorphism 2.0 Cards */
.marquee-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 28px;
    width: 450px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Color accents for cards */
.marquee-card:nth-child(3n+1) {
    border-top: 3px solid #06b6d4;
}

.marquee-card:nth-child(3n+2) {
    border-top: 3px solid #ec4899;
}

.marquee-card:nth-child(3n+3) {
    border-top: 3px solid #8b5cf6;
}

.marquee-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 4px;
    font-size: 1.1rem;
}

.marquee-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Avatar backgrounds */
.marquee-card:nth-child(3n+1) .reviewer-avatar {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.marquee-card:nth-child(3n+2) .reviewer-avatar {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.marquee-card:nth-child(3n+3) .reviewer-avatar {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.reviewer-details h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 2px 0;
    font-weight: 700;
}

.reviewer-details span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.trust-link:hover {
    filter: brightness(1.2) drop-shadow(0 0 8px var(--primary-glow));
    gap: 12px;
}

@media (max-width: 768px) {
    .reassurance-zone {
        flex-direction: column;
        border-radius: 20px;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .trust-divider {
        display: none;
    }

    .payment-icons {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

}

.fused-pricing {
    padding: 40px 0 0px 0;
    margin-top: 0;
    position: relative;
    background: transparent;
    margin-bottom: -49px;
    /* Rely solely on unified-elite-bg */
    z-index: 5;
    /* Harmonized with elite-section */
    overflow: visible;
}

/* Ambient Glow Orb - Top Right Corner Flare */
.fused-pricing::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.35) 0%, transparent 70%);
    top: -200px;
    /* Positioned in the corner to bleed out */
    right: -200px;
    pointer-events: none;
    z-index: 1;
    /* Stays as a background layer */
    filter: blur(100px);
}

/* Dim the decoration that's causing the "bright corner" */
.fused-pricing .decoration-left,
.fused-pricing .decoration-right {
    opacity: 0.07;
    filter: blur(60px);
}

.pricing-view {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.pricing-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mini-toggle .toggle-label.active {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.mini-toggle .toggle-switch {
    background: var(--accent-gradient);
}

.mini-toggle .toggle-circle {
    background: #fff !important;
    /* Ensure it stays white as requested */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.vps-header-meta {
    text-align: center;
    margin-bottom: 3rem;
}

/* COMPARISON TABLE - LINE ASSEMBLY ANIMATION */
.comparison-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.comp-table-wrapper {
    max-width: 900px;
    margin: 4rem auto;
    background: rgba(13, 17, 23, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.comp-table {
    display: flex;
    flex-direction: column;
    position: relative;
}

.comp-header {
    display: flex;
    background: linear-gradient(90deg, #1e1b4b 0%, #312e81 100%);
    position: relative;
    z-index: 5;
}

.comp-row {
    display: flex;
    position: relative;
    transition: background 0.3s ease;
}

.comp-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comp-cell {
    padding: 1.25rem 1.5rem;
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.comp-cell.feature-name,
.comp-cell.feature-label {
    flex: 2;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.comp-cell.value-check,
.comp-cell.value-cross,
.comp-cell.brand-logo {
    justify-content: center;
    text-align: center;
}

/* THE LINE ANIMATION LOGIC */
/* Horizontal Lines */
.comp-row::before,
.comp-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(6, 182, 212, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

/* Vertical Divider */
.comp-cell:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(139, 92, 246, 0.2);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

/* Revelation Trigger */
.comp-table-wrapper.show .comp-header::before {
    transform: scaleX(1);
    transition-delay: 0.1s;
}

.comp-table-wrapper.show .comp-header .comp-cell:first-child::after {
    transform: scaleY(1);
    transition-delay: 0.2s;
}

.comp-table-wrapper.show .comp-row::before {
    transform: scaleX(1);
    transition-delay: calc(0.2s + (var(--row-index) * 0.08s));
}

.comp-table-wrapper.show .comp-row .comp-cell:first-child::after {
    transform: scaleY(1);
    transition-delay: calc(0.3s + (var(--row-index) * 0.08s));
}

/* Finishers & Polish */
.value-check {
    color: #10b981;
    font-weight: bold;
}

.value-cross {
    color: #ef4444;
    opacity: 0.6;
}

.comp-table-wrapper.show .comp-row::before {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0) 0%, rgba(6, 182, 212, 0.3) 50%, rgba(6, 182, 212, 0) 100%);
}

.comp-table-wrapper.show .comp-cell:first-child::after {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0) 0%, rgba(139, 92, 246, 0.3) 50%, rgba(139, 92, 246, 0) 100%);
}

/* --- Concept 2: Infra Activation Transition --- */
.infra-activation {
    position: relative;
    width: 100%;
    min-height: 500px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    padding: 80px 0;
    margin-top: -20px;
    z-index: 10;
}

.activation-content {
    position: relative;
    z-index: 5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.status-badge {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
    background: rgba(217, 70, 239, 0.2);
    /* Magenta tint */
    padding: 6px 18px;
    border: 2px solid #d946ef;
    border-radius: 2px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px #d946ef;
    box-shadow:
        0 0 20px rgba(217, 70, 239, 0.4),
        inset 0 0 10px rgba(217, 70, 239, 0.3);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    position: relative;
    overflow: hidden;
}

.status-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        transform: translateX(-100%);
    }

    20%,
    100% {
        transform: translateX(100%);
    }

}

.unified-story-section.show .status-badge {
    animation:
        badgeEnter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
        statusFlicker 2s linear infinite;
    animation-delay: 4.8s, 5.4s;
}

.activation-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    border-right: 3px solid var(--primary);
}

.unified-story-section.show .activation-title.main-typewriter {
    animation:
        mainTyping 1s steps(24) forwards,
        blinkCursor 0.8s step-end infinite alternate;
    animation-delay: 5s;
}

.activation-subtext {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 40px;
}

.typewriter {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    white-space: nowrap;
    width: 0;
}

/* Scroll Triggered Animations */
.unified-story-section.show .typewriter {
    animation: typing 1s steps(20) forwards;
    animation-delay: var(--delay);
}

/* HUD Brackets */
.hud-bracket {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 10;
}

.bracket-tl {
    top: -40px;
    left: -40px;
    border-right: 0;
    border-bottom: 0;
}

.bracket-tr {
    top: -40px;
    right: -40px;
    border-left: 0;
    border-bottom: 0;
}

.bracket-bl {
    bottom: -40px;
    left: -40px;
    border-right: 0;
    border-top: 0;
}

.bracket-br {
    bottom: -40px;
    right: -40px;
    border-left: 0;
    border-top: 0;
}

.final-climax-area {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
    margin-top: 40px;
}

.unified-story-section.show .final-climax-area {
    opacity: 1;
    transform: scale(1);
    animation:
        climaxImpact 0.4s cubic-bezier(0.17, 0.84, 0.44, 1) forwards,
        systemShake 0.5s cubic-bezier(.36, .07, .19, .97) both;
    animation-delay: 4.8s, 4.8s;
}

@keyframes climaxImpact {
    0% {
        transform: scale(0.9) translateY(10px);
        filter: brightness(3) blur(5px);
    }

    100% {
        transform: scale(1) translateY(0);
        filter: brightness(1) blur(0);
    }

}

.unified-story-section.show .hud-bracket {
    opacity: 0.6;
}

.unified-story-section.show .bracket-tl {
    animation: lockInTL 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 4.8s;
}

.unified-story-section.show .bracket-tr {
    animation: lockInTR 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 4.9s;
}

.unified-story-section.show .bracket-bl {
    animation: lockInBL 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 5s;
}

.unified-story-section.show .bracket-br {
    animation: lockInBR 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 5.1s;
}

/* Data Flow background */
.data-flow-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.data-flow-item {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    opacity: 0.1;
    animation: dataStream 3s linear infinite;
}

.activation-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(6, 182, 212, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0;
    z-index: 1;
}

.unified-story-section.show .activation-grid {
    animation: fadeIn 2s ease-out forwards;
}

.activation-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: 0 0 15px var(--primary);
    opacity: 0;
    z-index: 5;
}

.energy-tracer {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #d946ef, #fff, #d946ef, transparent);
    width: 0;
    box-shadow: 0 0 15px #d946ef;
    opacity: 0;
    z-index: 5;
}

.unified-story-section.show .activation-pulse {
    animation: corePulse 2s ease-out infinite;
}

/* Integrated Terminal inside HUD */
.integrated-terminal {
    margin-top: 25px;
    width: 100%;
    max-width: 420px;
    font-family: 'Fira Code', monospace;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 18px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-align: left;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.integrated-terminal::before {
    content: 'CONSOLE_LOG';
    position: absolute;
    top: -10px;
    left: 20px;
    background: #020617;
    padding: 0 10px;
    font-size: 0.6rem;
    color: var(--primary);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.integrated-terminal .boot-line {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
    opacity: 0;
    transform: translateX(-5px);
}

.unified-story-section.show .boot-line {
    animation: terminalLineIn 0.3s ease-out forwards;
    animation-delay: var(--delay);
}

.integrated-terminal .ok-tag {
    color: #10b981;
    font-weight: 900;
    margin-right: 8px;
}

.final-evolve-line {
    margin-top: 15px;
    opacity: 0;
}

.unified-story-section.show .final-evolve-line {
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 6s;
}

.final-evolve-line .evolution-text {
    color: var(--primary);
    font-weight: 900;
    font-size: 1.1rem;
    text-shadow: 0 0 15px var(--primary);
}

@keyframes terminalLineIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.activation-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.unified-story-section.show .activation-pulse.p1 {
    animation: radialPulse 1.2s ease-out forwards;
    animation-delay: 1.5s;
}

.unified-story-section.show .activation-pulse.p2 {
    animation: radialPulse 1.2s ease-out forwards;
    animation-delay: 2.2s;
}

.scanline-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.05) 50%, transparent 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 6;
}

/* Cinematic Keyframes */
@keyframes tracerMove {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}

@keyframes lockInTL {
    from {
        top: -100px;
        left: -100px;
        opacity: 0;
    }

    to {
        top: -20px;
        left: -20px;
        opacity: 1;
    }

}

@keyframes lockInTR {
    from {
        top: -100px;
        right: -100px;
        opacity: 0;
    }

    to {
        top: -20px;
        right: -20px;
        opacity: 1;
    }

}

@keyframes lockInBL {
    from {
        bottom: -100px;
        left: -100px;
        opacity: 0;
    }

    to {
        bottom: -20px;
        left: -20px;
        opacity: 1;
    }

}

@keyframes lockInBR {
    from {
        bottom: -100px;
        right: -100px;
        opacity: 0;
    }

    to {
        bottom: -20px;
        right: -20px;
        opacity: 1;
    }

}

@keyframes radialPulse {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }

    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
    }

}

@keyframes dataStream {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(500%);
        opacity: 0;
    }

}

@keyframes statusFlicker {
    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
    }

    40% {
        opacity: 1;
    }

    42% {
        opacity: 0.6;
    }

    44% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    92% {
        opacity: 0.2;
    }

    94% {
        opacity: 1;
    }

}

@keyframes scannerMove {
    0% {
        top: 0;
        opacity: 1;
    }

    50% {
        top: 100%;
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }

}

@keyframes mainTyping {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}

@keyframes blinkCursor {
    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary);
    }

}

@keyframes badgeEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}

@keyframes fadeIn {
    to {
        opacity: 1;
    }

}

@keyframes statusFlicker {
    0%,
    100% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    42% {
        opacity: 0.4;
    }

    44% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    92% {
        opacity: 0.2;
    }

    94% {
        opacity: 1;
    }

}

/* --- New Story Scale Bar --- */
.story-scale-container {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
    opacity: 0;
}

.unified-story-section.show .energy-tracer {
    animation: tracerExtend 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 5s;
}

@keyframes tracerExtend {
    0% {
        width: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 0.8;
    }

}

.unified-story-section.show .story-scale-container {
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

.story-scale-container .scale-bar-outer {
    height: 28px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(217, 70, 239, 0.3);
    /* Magenta border */
    position: relative;
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(217, 70, 239, 0.1);
}

.story-scale-container .scale-bar-inner {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #701a75, #d946ef, #fdf4ff);
    /* Pink/Magenta Energy */
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
}

.scale-segments {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg,
            transparent 0px, transparent 8px,
            rgba(0, 0, 0, 0.4) 8px, rgba(0, 0, 0, 0.4) 11px);
    background-size: 11px 100%;
    z-index: 3;
}

.scale-glow-layer {
    position: absolute;
    inset: 0;
    background: #d946ef;
    filter: blur(12px);
    opacity: 0.4;
    z-index: 1;
}

.scale-progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: #fff;
    filter: blur(15px);
    box-shadow: 0 0 30px #fff, 0 0 50px #d946ef;
    z-index: 4;
}

.unified-story-section.show .scale-bar-inner {
    animation: storyBarFill 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.7s;
}

@keyframes storyBarFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}

.core-glow {
    filter: blur(80px);
    background: radial-gradient(circle, var(--primary) 0%, var(--primary-dark) 40%, transparent 70%);
    opacity: 0;
    mix-blend-mode: screen;
}

.unified-story-section.show .core-glow {
    animation: coreBoiling 4s ease-in-out infinite alternate;
}

@keyframes coreBoiling {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
        filter: blur(60px) hue-rotate(0deg);
    }

    25% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1) rotate(90deg) skew(5deg);
        filter: blur(80px) hue-rotate(10deg);
    }

    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9) rotate(180deg) skew(-5deg);
        filter: blur(100px) hue-rotate(-10deg);
    }

    75% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.2) rotate(270deg) skew(3deg);
        filter: blur(85px) hue-rotate(5deg);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1) rotate(360deg);
        filter: blur(70px) hue-rotate(0deg);
    }

}

/* --- Benefit Bridge (Transition) --- */
.benefit-bridge {
    padding: 40px 0;
    margin-bottom: 60px;
    /* Lifted up to overlap with pricing's fade */
    text-align: center;
    position: relative;
    z-index: 5;
}

/* --- Nexus Hub Section --- */
.nexus-hub-section {
    position: relative;
    z-index: 5;
    background: #020617;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.hub-card {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.hub-card:hover {
    transform: translateY(-10px);
    background: rgba(15, 23, 42, 0.6);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.1);
}

.hub-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: 0.4s;
}

.hub-card:hover .hub-card-glow {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
}

.hub-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.hub-id-label {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    opacity: 0.6;
}

.hub-card-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-card-img {
    max-width: 80%;
    height: auto;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hub-card:hover .hub-card-img {
    transform: scale(1.1) rotate(2deg);
}

.hub-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.hub-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hub-card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.hub-card-link svg {
    transition: 0.3s;
}

.hub-card:hover .hub-card-link svg {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }

}

/* Remove old scale section styles */
.resource-scale-section {
    display: block;
    margin: 30px auto;
    padding: 60px;
    border-radius: 0;
    background: rgba(2, 6, 23, 0.5);
    /* Semi-transparent during build */
    backdrop-filter: blur(40px);
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
    opacity: 0;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease-out, background 1s ease-in 3s;
    /* Delay background solid until build finishes */
    border: none;
}

.resource-scale-section.show {
    opacity: 1;
    background: #020617;
    /* Solid color after build */
}

/* Wireframe Build Styles */
.build-wireframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.build-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wireframe-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 1 1;
    stroke-dashoffset: 1;
    stroke-linecap: square;
    stroke-linejoin: miter;
    vector-effect: non-scaling-stroke;
    transition: stroke-dashoffset 3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-scale-section.show .wireframe-path {
    stroke-dashoffset: 0;
}

/* Content sync with slower build */
.resource-scale-section .scale-container {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease-out 2.5s, transform 1s ease-out 2.5s;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.resource-scale-section.show .scale-container {
    opacity: 1;
    transform: translateY(0);
}

/* .resource-scale-section.show - removed redundant animation */
.performance-tagline.final-message {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0;
    opacity: 1;
    /* Always visible for the scramble effect */
    transform: none;
    transition: none;
    background: none;
    -webkit-text-fill-color: white;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

/* Scramble reveal handled by JS */
/* Activation orb styles removed */
.scale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    /* Reverted to tighter margin */
    padding: 0 5px;
}

.header-right-hud {
    display: flex;
    align-items: center;
}

.percent-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.percent-box.active {
    opacity: 1;
    transform: translateX(0);
}

.percent-box.confirm-glow {
    text-shadow: 0 0 15px rgba(90, 220, 255, 0.4);
    border-color: rgba(90, 220, 255, 0.3);
}

.bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Push HUD to the far right */
    gap: 30px;
    width: 100%;
}

.scale-bar-outer {
    flex: 1;
    /* Occupies remaining space but respects side HUD */
    max-width: none;
    margin: 0 !important;
}

.side-status-hud {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 22px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.side-status-hud.active {
    opacity: 1;
    transform: translateX(0);
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.status-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(223, 230, 238, 0.4);
    text-transform: uppercase;
}

.status-value {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #dfe6ee;
    letter-spacing: 0.5px;
}

.highlight-green {
    color: #4ade80 !important;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.2);
}

.highlight-blue {
    color: #60a5fa !important;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.2);
}

.scale-label {
    font-family: 'Courier New', monospace;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--primary);
    font-size: 0.9rem;
}

.scale-percent {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    /* Adjusted for box fit */
    color: #dfe6ee;
    line-height: 1;
    opacity: 1;
    /* Always visible once box appears */
    transition: none;
}

.scale-bar-outer {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 4px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    margin: 10px 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scale-bar-outer.visible {
    opacity: 1;
}

.scale-bar-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    transition: width 2s linear;
}

.scale-bar-inner.filled {
    animation: calmPulse 3s ease-in-out infinite;
}

@keyframes calmPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    }

    50% {
        transform: scale(1.005);
        box-shadow: 0 0 50px rgba(139, 92, 246, 0.6);
    }

}

.resource-scale-section.show .scale-bar-inner {
    width: 100%;
}

.scale-segments {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, transparent 95%, rgba(0, 0, 0, 0.3) 95%);
    background-size: 2% 100%;
}

.scale-glow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20px;
    background: white;
    filter: blur(8px);
    opacity: 0.8;
}

.resource-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

/* Vibrations & Shake */
@keyframes systemShake {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(-2px, 1px);
    }

    20% {
        transform: translate(2px, -1px);
    }

    30% {
        transform: translate(-1px, 2px);
    }

    40% {
        transform: translate(1px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }

}

/* Removed shake animation application */
@media (max-width: 768px) {
    .resource-stats-grid {
        grid-template-columns: 1fr;
    }

    .scale-bar-outer {
        height: 40px;
    }

    .scale-percent {
        font-size: 1.8rem;
    }

}

/* Global Section Utilities */
.section-padding {
    padding: 55px 0;
}

.benefit-bridge-padding {
    padding: 55px 0;
}

/* --- Section Glass Bridge --- */
.section-glass-bridge {
    position: relative;
    height: 72px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.03);
    z-index: 10;
}

/* Animations Shared/Keyframes */
@keyframes corePulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }

}

@keyframes ringExpand {
    0% {
        width: 20px;
        height: 20px;
        opacity: 0;
        border-width: 2px;
    }

    20% {
        opacity: 0.6;
    }

    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
        border-width: 0.5px;
    }

}

@keyframes packetTravel {
    0% {
        left: -10%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 110%;
        opacity: 0;
    }

}

@keyframes pathFlow {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 0;
    }

}

@keyframes nodeFloat {
    from {
        transform: translateY(-10px);
    }

    to {
        transform: translateY(10px);
    }

}

@keyframes nodePulse {
    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }

}

/* --- System Boot Sequence --- */
.boot-sequence-section {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.terminal-container {
    width: 100%;
    max-width: 600px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 5;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

.terminal-header {
    display: flex;
    gap: 6px;
    margin-bottom: 25px;
    opacity: 0.4;
}

.terminal-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.boot-line {
    color: #e2e8f0;
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.boot-sequence-section.show .boot-line {
    opacity: 1;
    transform: translateX(0);
    transition-delay: var(--delay);
}

.ok-tag {
    color: #4ade80;
    font-weight: 900;
    margin-right: 15px;
}

/* Final Evolution Animation */
.final-evolve {
    position: relative;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-text {
    transition: opacity 0.5s ease-out 4s;
}

.evolution-text {
    position: absolute;
    left: 60px;
    top: 15px;
    color: white;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
    opacity: 0;
    transform: scale(0.85);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 4.5s;
    white-space: nowrap;
    text-shadow: 0 0 30px var(--primary), 0 0 10px white;
}

.boot-sequence-section.show .final-evolve .status-text {
    opacity: 0;
}

.boot-sequence-section.show .final-evolve .evolution-text {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.terminal-scanline {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 50%,
            rgba(255, 255, 255, 0.02) 50%);
    background-size: 100% 6px;
    pointer-events: none;
    z-index: 6;
}

@media (max-width: 768px) {
    .terminal-container {
        margin: 0 15px;
        padding: 20px;
    }

    .boot-line {
        font-size: 0.85rem;
    }

    .evolution-text {
        font-size: 1.1rem;
        left: 45px;
    }

}

/* --- Lab-404 Ecosystem: SIMPLIFIED TACTICAL (v7 - Elegant Geometry) --- */
.lab-ecosystem-section {
    position: relative;
    padding: 0 0 140px;
    margin-top: 0;
    /* background: #01040a; commented for test */
    background: transparent !important;
    overflow: hidden;
}

/* Background Depth */
.ecosystem-lattice {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    /* Increased for visibility in gaps */
}

.lattice-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.lattice-line {
    stroke: var(--primary);
    stroke-width: 0.5;
    opacity: 0.1;
}

.lattice-line.diagonal {
    opacity: 0.05;
    stroke-dasharray: 4 4;
}

.lattice-packet {
    fill: #fff;
    filter: drop-shadow(0 0 8px var(--primary)) drop-shadow(0 0 15px var(--primary));
}

/* Moving Grid Backdrop - Enhanced Tactical Style */
.lab-ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background-image: */
    /* removed grid */
    /* background-size: auto; */
    z-index: 0;
    pointer-events: none;
}

.lab-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(210px, auto);
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* --- THE CARD: SIMPLIFIED CHAMFERED --- */
.lab-bento-item {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    clip-path: none;
    padding: 35px 30px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(6, 182, 212, 0.1);
}

.lab-bento-item:hover {
    border-color: var(--primary);
    background: rgba(22, 27, 34, 1);
}

/* Typography - Sentence Case */
.lab-bento-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    /* Removed text-transform: uppercase */
}

.lab-bento-item p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

.lab-bento-item:hover h4 {
    color: var(--primary);
}

/* Icon Wrapper: Clean Node */
.lab-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.lab-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.4));
}

.lab-icon-wrapper svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 12px var(--primary));
    transition: all 0.3s ease;
}

.lab-bento-item:hover .lab-icon-wrapper svg {
    transform: none;
    filter: drop-shadow(0 0 10px var(--primary));
}

/* HUD System Identifiers - Subtle */
.hud-id {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(6, 182, 212, 0.3);
}

.lab-bento-item:hover .hud-id {
    opacity: 0.8;
    text-shadow: 0 0 10px var(--primary);
}

/* Corner Accents - Balanced */
.deco-corner {
    position: absolute;
    width: 18px;
    /* Increased length */
    height: 18px;
    /* Increased length */
    border: 1px solid var(--primary);
    /* Brighter base */
    opacity: 0.6;
    /* More visible by default */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

/* Adjust corners for tactical inset edges */
.deco-corner.tl {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.deco-corner.br {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.lab-bento-item:hover .deco-corner,
.sol-card:hover .deco-corner,
.sol-mini-card:hover .deco-corner {
    opacity: 1;
    border-color: #fff;
    /* Flash effect on hover */
    filter: drop-shadow(0 0 10px var(--primary));
}

.lab-bento-item:hover .deco-corner.tl {
    transform: translate(-5px, -5px);
}

.lab-bento-item:hover .deco-corner.br {
    transform: translate(5px, 5px);
}

/* --- FEATURED CARD: THE NEXUS CORE --- */
.lab-bento-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.9) 100%),
        url('images/futuristic_server_banner_bg.png');
    background-size: cover;
    background-position: center;
    background-position: center;
    padding: 70px;
    justify-content: center;
    border-radius: 40px;
    /* Restore rounded corners */
    clip-path: none;
    /* Restore full border visibility */
}

.lab-bento-item.featured h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.lab-bento-item.featured .pill-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.lab-ecosystem-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.lab-ecosystem-link .arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lab-ecosystem-link:hover {
    color: var(--primary);
}

.lab-ecosystem-link:hover .arrow {
    background: var(--primary);
    color: #000;
    transform: translateX(8px);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Pill Badges */
.pill-badge.new {
    position: absolute;
    top: 30px;
    left: 35px;
    background: var(--secondary);
    color: white;
    box-shadow: 0 0 20px var(--secondary-glow);
}

@media (max-width: 1200px) {
    .lab-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lab-bento-item.featured {
        grid-column: span 2;
        padding: 40px;
    }

}

@media (max-width: 768px) {
    .lab-bento-grid {
        grid-template-columns: 1fr;
    }

    .lab-bento-item.featured {
        grid-column: span 1;
        padding: 30px;
    }

    .lab-bento-item.featured h2 {
        font-size: 2.2rem;
    }

}

/* --- Quantum Core Section Break --- */
.quantum-break-section {
    perspective: 1500px;
    z-index: 10;
    position: relative;
}

.quantum-card {
    position: relative;
    width: 100%;
    min-height: 480px;
    border-radius: 48px;
    overflow: hidden;
    background: #020617;
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
}

.quantum-card:hover {
    transform: rotateX(3deg) translateY(-10px);
    border-color: var(--primary);
}

.quantum-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    transition: transform 1.2s ease;
    z-index: 1;
}

.quantum-card:hover .quantum-bg {
    transform: scale(1.08);
}

.quantum-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(6, 182, 212, 0.1) 50%,
            var(--primary) 51%,
            rgba(6, 182, 212, 0.1) 52%,
            transparent 100%);
    opacity: 0.4;
    z-index: 4;
    pointer-events: none;
    animation: quantumScan 6s linear infinite;
}

@keyframes quantumScan {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(500%);
    }

}

.quantum-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 850px;
    padding: 4rem;
    background: radial-gradient(circle, rgba(2, 6, 23, 0.9) 0%, transparent 80%);
    border-radius: 40px;
}

.quantum-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 100, 0.3);
    border-radius: 100px;
    color: #10b981;
    font-size: 0.75rem;
    font-family: 'Fira Code', monospace;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 15px #10b981;
    animation: pulseSync 1.5s infinite alternate;
}

.quantum-content h3 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.quantum-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quantum-glitch-text {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--primary);
    opacity: 0.5;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.quantum-glitch-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* --- Elegant Header Section --- */
.inter-font {
    font-family: 'Inter', sans-serif !important;
}

.elegant-header,
#main-pricing-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    min-height: 1.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    letter-spacing: -2px;
}

.prefix-fade {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.prefix-fade.out {
    opacity: 0 !important;
    transform: translateY(-15px) !important;
}

.prefix-fade.in {
    opacity: 0 !important;
    transform: translateY(15px) !important;
}

/* --- LAB-404 SERVICES TERMINAL --- */
.lab-404-services-terminal {
    background: #000;
    color: #fff;
    padding: 4rem 0 6rem 0;
    font-family: 'Inter', sans-serif;
    border-top: none;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    z-index: 10;
}

.terminal-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Bar */
.terminal-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 17, 23, 0.5);
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.terminal-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.terminal-label {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.terminal-bars {
    display: flex;
    gap: 4px;
    color: var(--primary);
    font-weight: 900;
    opacity: 0.3;
    animation: terminal-flicker 2s infinite alternate;
}

@keyframes terminal-flicker {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0.3;
    }

}

.terminal-status-area {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fira Code', monospace;
    font-size: 0.7rem;
    opacity: 0.6;
}

.status-indicator {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

/* Wireframe Build Animation Styles */
.terminal-wireframe-builder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.wireframe-svg {
    width: 100%;
    height: 100%;
}

.wireframe-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

/* Animation triggers when section becomes visible or on load */
.lab-404-services-terminal.show .wireframe-path {
    animation: buildWireframe 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes buildWireframe {
    0% {
        stroke-dashoffset: 2000;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.2;
    }

}

/* Fade in the content as the wireframe builds */
.lab-404-services-terminal .terminal-container-wide {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease 0.5s;
}

.lab-404-services-terminal.show .terminal-container-wide {
    opacity: 1;
    transform: translateY(0);
}

/* Layout Grid */
.terminal-main-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Sidebar */
.lab-404-services-terminal .terminal-sidebar-new {
    width: 240px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
}

.lab-404-services-terminal .sidebar-top-box {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lab-404-services-terminal .explore-muted {
    font-family: 'Fira Code', monospace;
    font-size: 0.6rem;
    opacity: 0.4;
    letter-spacing: 2px;
}

.lab-404-services-terminal .sidebar-title {
    margin: 5px 0 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.lab-404-services-terminal .terminal-nav-vertical {
    display: flex;
    flex-direction: column;
    position: relative !important;
    /* Force override any phantom fixed */
    top: auto !important;
    left: auto !important;
    width: 100% !important;
}

.lab-404-services-terminal .nav-btn {
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    display: block;
    width: 100%;
}

.lab-404-services-terminal .nav-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.lab-404-services-terminal .nav-btn.active {
    color: var(--primary);
    background: rgba(6, 182, 212, 0.05);
    border-left: 2px solid var(--primary);
}

/* Feed Grid */
.lab-404-services-terminal .terminal-feed-new {
    flex-grow: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lab-404-services-terminal .feed-row {
    display: grid;
    grid-template-columns: 60px 1fr 200px 180px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lab-404-services-terminal .feed-row.row-labels {
    background: rgba(255, 255, 255, 0.02);
    font-family: 'Fira Code', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
}

.lab-404-services-terminal .feed-row-item {
    display: grid;
    grid-template-columns: 60px 1fr 200px 180px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #e2e8f0;
    transition: background 0.2s ease;
}

.lab-404-services-terminal .feed-row-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.lab-404-services-terminal .feed-row>div,
.lab-404-services-terminal .feed-row-item>div {
    padding: 1.25rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Default for headline */
}

.lab-404-services-terminal .col-tag,
.lab-404-services-terminal .col-date {
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.lab-404-services-terminal .feed-row>div:last-child {
    border-right: none;
}

.lab-404-services-terminal .col-num {
    justify-content: center;
    font-family: 'Fira Code', monospace;
    opacity: 0.3;
}

.lab-404-services-terminal .col-headline {
    font-weight: 600;
    font-size: 1.05rem;
}

.lab-404-services-terminal .col-tag .tag-box {
    font-family: 'Fira Code', monospace;
    font-size: 0.7rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
}

.lab-404-services-terminal .col-date {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    opacity: 0.8;
}

.lab-404-services-terminal .status-active {
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Responsive Hide */
@media (max-width: 1024px) {
    .feed-row {
        grid-template-columns: 50px 1fr 150px;
    }

    .col-date {
        display: none !important;
    }

}

@media (max-width: 768px) {
    .terminal-main-layout {
        flex-direction: column;
    }

    .terminal-sidebar-new {
        width: 100%;
    }

    .feed-row {
        grid-template-columns: 40px 1fr;
    }

    .col-tag {
        display: none !important;
    }

}

/* --- High Frequency & Digital Services Sections --- */
.high-frequency-section {
    padding: 120px 0 60px;
    background: #000;
    overflow: hidden;
    position: relative;
}

.hf-title-wrapper {
    position: relative;
    display: inline-block;
}

.hf-large-title {
    font-family: "Inter", sans-serif;
    font-size: clamp(4rem, 15vw, 18rem);
    line-height: 0.8;
    font-weight: 950;
    color: #fff;
    text-transform: none;
    letter-spacing: -0.07em;
    position: relative;
    z-index: 2;
    margin: 0;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.hf-nebula-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(6, 182, 212, 0.1) 40%, transparent 70%);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    animation: nebulaPulse 10s ease-in-out infinite alternate;
}

@keyframes nebulaPulse {
    0% {
        transform: translate(-30%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-20%, -40%) scale(1.1);
        opacity: 0.8;
    }

}

.digital-services-section {
    padding: 80px 0 160px;
    background: #000;
    position: relative;
}

.digital-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --- PREMIUM REDESIGNED CARD --- */
.service-card {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(2, 6, 23, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 4rem 2.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    cursor: pointer;
    min-height: 480px;
    --card-accent: var(--primary);
}

.service-card:nth-child(1) {
    --card-accent: #a855f7;
    /* Electric Purple */
}

.service-card:nth-child(2) {
    --card-accent: #ffcc00;
}

/* Yellow */
.service-card:nth-child(3) {
    --card-accent: #00ff88;
}

/* Green */
.service-card:nth-child(4) {
    --card-accent: #0088ff;
}

/* Blue */
/* Border Beam Effect */
.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            transparent 160deg,
            var(--card-accent) 180deg,
            transparent 200deg,
            transparent 360deg);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
    animation: beamRotate 4s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
}

@keyframes beamRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }

}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--card-accent);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(var(--card-accent), 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
            var(--card-accent) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover .card-glow {
    opacity: 0.15;
}

/* Dynamic Brackets */
.bracket {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--card-accent);
    opacity: 0.3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.bracket.tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.bracket.tr {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.bracket.bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.bracket.br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.service-card:hover .bracket {
    opacity: 1;
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 10px var(--card-accent));
}

.service-card:hover .bracket.tl {
    transform: translate(-5px, -5px);
}

.service-card:hover .bracket.tr {
    transform: translate(5px, -5px);
}

.service-card:hover .bracket.bl {
    transform: translate(-5px, 5px);
}

.service-card:hover .bracket.br {
    transform: translate(5px, 5px);
}

/* Icon Style */
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--card-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--card-accent);
    color: #000;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px var(--card-accent);
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 950;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
    height: 4rem;
    display: flex;
    align-items: center;
}

.service-card p {
    font-size: 1rem;
    color: rgba(148, 163, 184, 0.7);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.card-link {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--card-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    margin-top: auto;
    opacity: 0.8;
}

.service-card:hover .card-link {
    transform: translateX(10px);
    opacity: 1;
    text-shadow: 0 0 10px var(--card-accent);
}

.card-hud-deco {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    font-family: "Fira Code", monospace;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--card-accent);
    opacity: 0.1;
    letter-spacing: 3px;
    transition: opacity 0.4s;
}

.service-card:hover .card-hud-deco {
    opacity: 0.5;
}

@media (max-width: 1200px) {
    .digital-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

@media (max-width: 768px) {
    .digital-services-grid {
        grid-template-columns: 1fr;
    }

    .hf-large-title {
        font-size: 6rem;
    }

    .service-card {
        padding: 3rem 2rem;
    }

}

/* --- Nexus Managed Solutions --- */
.nexus-managed-solutions {
    position: relative;
    padding-bottom: 151px;
}

.managed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.managed-card {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 3rem;
    transition: var(--transition);
    overflow: hidden;
}

.managed-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
    transition: var(--transition);
}

.managed-card:hover .card-glow {
    opacity: 0.6;
    transform: scale(1.2);
}

.managed-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.managed-icon {
    width: 64px;
    height: 64px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.managed-title h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.managed-title p {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.managed-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.managed-features {
    list-style: none;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.managed-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.managed-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* --- Mockup Visuals & Images --- */
.managed-visual {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.managed-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 0.8;
    transition: var(--transition);
    filter: saturate(0.8) brightness(0.9);
}

.managed-card:hover .managed-image {
    opacity: 1;
    filter: saturate(1) brightness(1.1);
    transform: scale(1.02);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .dots {
    display: flex;
    gap: 6px;
}

.mockup-header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.address-bar {
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
    flex: 1;
}

.skeleton-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-line.long {
    width: 80%;
}

.skeleton-line.short {
    width: 40%;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.skeleton-box {
    height: 60px;
    background: rgba(6, 182, 212, 0.03);
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 12px;
}

.performance-view .chart-container {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 80px;
    margin-bottom: 15px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), transparent);
    border-radius: 4px 4px 0 0;
    opacity: 0.4;
    transition: var(--transition);
}

.managed-card:hover .chart-bar {
    opacity: 0.8;
}

.managed-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.link-arrow {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--primary);
    gap: 0.8rem;
}

@media (max-width: 1100px) {
    .managed-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {
    .managed-card {
        padding: 2rem;
    }

    .managed-title h3 {
        font-size: 1.5rem;
    }

}

/* --- Migration CTA Section (Nexus Dark Style) --- */
.migration-cta-section.dark-premium {
    padding: 0px 0;
    position: relative;
    background: transparent;
}

.migration-bento-card {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    margin-top: 90px;
    padding: 5rem;
    overflow: hidden;
    transition: var(--transition);
}

.migration-bento-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.migration-grid-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.hud-bracket-tl {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    opacity: 0.4;
}

.hud-bracket-br {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    opacity: 0.4;
}

.badge-nexus {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.1em;
    margin-right: 8px;
}

.badge-nexus.highlight {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: var(--primary);
}

.migration-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: #fff;
    font-weight: 900;
}

.migration-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

.migration-action-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.btn-nexus-primary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 3rem;
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.btn-nexus-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.4);
}

/* --- Visual Frame --- */
.migration-visual-frame {
    position: relative;
}

.visual-container {
    position: relative;
    width: 594px;
    max-width: 100%;
    height: 440px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.migration-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

@media (max-width: 1200px) {
    .migration-bento-card {
        padding: 3rem;
    }

    .migration-grid-inner {
        gap: 3rem;
    }

    .migration-title {
        font-size: 2.8rem;
    }

}

@media (max-width: 968px) {
    .migration-grid-inner {
        grid-template-columns: 1fr;
    }

    .migration-visual-frame {
        max-width: 500px;
        margin: 0 auto;
    }

    .migration-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

}

/* --- Nexus Migration Horizontal Strip --- */
.nexus-migration-horizontal {
    padding: 80px 0;
    position: relative;
    z-index: 5;
    background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.05), transparent);
    overflow: hidden;
}

.migration-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.migration-strip-content {
    flex: 1.2;
    max-width: 650px;
}

.migration-strip-content .hud-label {
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 2px;
}

/* Reusing existing badge styles but ensuring consistency */
.migration-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.badge-nexus {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 900;
    color: white;
}

.badge-nexus.highlight {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 15px var(--primary-glow);
}

.migration-strip-content .migration-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.migration-strip-content .migration-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.migration-strip-visual {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.migration-floating-img {
    max-width: 100%;
    max-height: 450px;
    /* Control section height */
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(0, 229, 255, 0.1));
    animation: nexusFloat 6s ease-in-out infinite;
}

@keyframes nexusFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

}

@media (max-width: 1024px) {
    .nexus-migration-horizontal {
        padding: 60px 0;
    }

    .migration-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .migration-strip-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .migration-strip-visual {
        justify-content: center;
    }

    .migration-strip-content .migration-title {
        font-size: 2.5rem;
    }

}

/* --- WordPress Technical Flow --- */
.wp-tech-flow {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, #040d21 0%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.flow-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.flow-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
}

/* Base Node Styles */
.flow-node {
    width: 280px;
    padding: 25px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-node:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
    transform: translateY(-5px);
}

.flow-node h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.flow-node p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.node-icon {
    width: 50px;
    height: 50px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
}

/* Branching Logic */
.flow-branch {
    display: flex;
    justify-content: center;
    gap: 150px;
    width: 100%;
    position: relative;
    margin: 80px 0;
}

/* Connectors */
.flow-line {
    position: absolute;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    width: 2px;
    z-index: 1;
    opacity: 0.3;
}

.flow-line.vertical {
    left: 50%;
    transform: translateX(-50%);
}

.branch-svg {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: calc(100% + 80px);
    pointer-events: none;
    z-index: 1;
}

.branch-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.3;
    animation: flowDash 20s linear infinite;
}

@keyframes flowDash {
    to {
        stroke-dashoffset: -100;
    }

}

/* Data Packets */
.data-packet {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    offset-rotate: auto;
    animation: packetMove 4s infinite linear;
}

@keyframes packetMove {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }

}

/* Stage Specifics */
.stage-label {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Fira Code', monospace;
    font-size: 0.7rem;
    color: var(--primary);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .flow-branch {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .stage-label {
        display: none;
    }

}

/* --- WordPress Nexus Card (Refined) --- */
.wp-nexus-section {
    position: relative;
    padding-top: 12px;
    padding-bottom: 80px;
    width: 100%;
    z-index: 2;
}

.wp-nexus-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
    filter: blur(130px);
    pointer-events: none;
    z-index: -1;
}

.wp-nexus-section::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(148, 163, 184, 0.1) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
}

.container-wp-card {
    max-width: 1400px !important;
    width: 95%;
    margin: 0 auto;
    padding: 0;
}

/* Unified Elite Background Wrapper 1 */
.unified-elite-bg-1 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #030712;
}

.unified-elite-bg-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

/* App Stack Section (Labs Sandbox) */
.app-stack-header {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.app-stack-header .stack-h2 {
    font-size: 14px;
    font-weight: 600;
    color: #06b6d4;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Fira Code', monospace;
    opacity: 0.6;
}

.app-stack-header .stack-h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.app-stack-header .stack-p {
    font-size: 18px;
    color: #737373;
    line-height: 1.6;
    max-width: 500px;
}

.app-tech-tray {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.app-tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.4);
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.app-tech-item:hover {
    background: rgba(33, 117, 155, 0.1);
    border-color: #21759b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-tech-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.app-tech-item span {
    font-size: 11px;
    font-weight: 600;
    color: #f5f5f5;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .app-stack-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

}

/* Nexus Ecosystem Section (High-Fidelity Redesign) */
.lab-ecosystem-section {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    /* Contain the slider and glows */
}

.eco-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.eco-header {
    text-align: left;
}

.eco-title {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f5f5f5;
    letter-spacing: -2px;
}

.eco-subtitle {
    font-size: 18px;
    color: #737373;
    max-width: 500px;
}

/* Slider Navigation (MultiversX Style) */
.slider-main_button-wrapper {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover:not(:disabled) {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
    color: #06b6d4;
    transform: translateY(-2px);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Slider Container */
.eco-slider-container {
    overflow: visible;
    margin: 0 -20px;
    padding: 20px;
}

.eco-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

/* Hi-Fi Card Design */
.eco-card.hifi-card {
    flex: 0 0 400px;
    background: #0e0e0e;
    border: 1px solid #212121;
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.eco-card.hifi-card:hover {
    transform: translateY(-10px);
    border-color: #333;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.5s ease, transform 0.8s ease;
}

.card-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eco-card.hifi-card:hover .card-image-bg {
    opacity: 0.7;
    transform: scale(1.05);
}

.eco-card.hifi-card .eco-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(14, 14, 14, 0.2) 0%, rgba(14, 14, 14, 0.9) 100%);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.eco-tag {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: #06b6d4;
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.eco-card-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 600;
}

.eco-card-desc {
    font-size: 16px;
    color: #a3a3a3;
    line-height: 1.6;
}

.eco-footer {
    position: relative;
    z-index: 2;
    padding: 0 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(14, 14, 14, 0.9);
}

.eco-status {
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: #737373;
}

.eco-status.active {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

.eco-count {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.eco-glow {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 30%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}

@media (max-width: 768px) {
    .eco-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .eco-card.hifi-card {
        flex: 0 0 calc(100vw - 40px);
        min-height: 400px;
    }

    .eco-title {
        font-size: 36px;
    }

}

/* INTERACTIVE 3D PILLARS SECTION */
.interactive-pillars {
    position: relative;
    padding-top: 20px;
    padding-bottom: 100px;
    z-index: 5;
    background: transparent;
    perspective: 1500px;
    overflow: hidden;
    /* Added to contain the slider track */
}

/* Slider Controls Header */
.pillars-slider-header {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
}

.pillars-nav-controls {
    display: flex;
    gap: 15px;
}

.pillar-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pillar-nav-btn:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: #06b6d4;
    color: #06b6d4;
    transform: scale(1.05);
}

.interactive-slider-wrapper {
    width: 100%;
    margin: 0 auto;
}

.interactive-grid {
    display: flex;
    /* Changed from grid to flex row */
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.pillar-card-3d {
    flex: 0 0 calc(25% - 15px);
    /* Forces 4 cards per view */
    min-width: 320px;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.pillar-card-3d:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.pillar-card-3d:hover .card-bg-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.4) 0%, rgba(3, 7, 18, 0.9) 100%);
    z-index: 2;
    transition: background 0.6s ease;
}

.pillar-card-3d:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.1) 0%, rgba(3, 7, 18, 0.95) 100%);
}

.card-content-3d {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 60px 40px;
    text-align: left;
    transform: translateZ(50px);
    font-family: 'Inter', sans-serif;
}

.card-title-3d {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: left;
}

.card-desc-3d {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
    text-align: left;
}

@media (max-width: 1200px) {
    .interactive-grid {
        gap: 15px;
    }

    .pillar-card-3d {
        min-width: 280px;
    }

}

@media (max-width: 700px) {
    .interactive-grid {
        padding: 0 1rem;
    }

    .pillar-card-3d {
        flex: 0 0 100%;
        min-width: 100%;
        height: 400px;
    }

}

/* DECK SHUFFLE ANIMATIONS - ORBITAL DEEP LOOP */
.pillar-card-3d.shuffling-next {
    animation: shuffleNext 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
    z-index: -1;
    /* Behind other cards */
}

.pillar-card-3d.shuffling-prev {
    animation: shufflePrev 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    /* Safeguard against flicker */
}

@keyframes shuffleNext {
    0% {
        transform: translateZ(0) translateX(0) rotateY(0) scale(1);
        opacity: 1;
        z-index: 1;
    }

    30% {
        /* Retreating deep into the "core" */
        transform: translateZ(-800px) translateX(-150px) rotateY(-15deg) scale(0.6);
        opacity: 0.8;
    }

    60% {
        /* Orbital loop at maximum depth */
        transform: translateZ(-1200px) translateX(600px) rotateY(0) scale(0.4);
        opacity: 0.5;
    }

    100% {
        /* Returning to the stack end from far right depth */
        transform: translateZ(-600px) translateX(1600px) rotateY(15deg) scale(0.8);
        opacity: 0;
    }

}

@keyframes shufflePrev {
    0% {
        /* Start deep but horizontally contained relative to the track's offset */
        transform: translateZ(-800px) translateX(400px) rotateY(15deg) scale(0.6);
        opacity: 0;
        z-index: -1;
    }

    50% {
        /* Orbiting forward while moving left to landing zone */
        transform: translateZ(100px) translateX(100px) rotateY(10deg) scale(1.02);
        opacity: 1;
        z-index: 10;
    }

    100% {
        transform: translateZ(0) translateX(0) scale(1);
        opacity: 1;
        z-index: 2;
    }

}

/* Smoother track transition for remaining cards */
.interactive-grid.is-moving {
    transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
}
