@charset "UTF-8";

/* ============================================
   CLOUDPULSE AI - NEXT-GEN LANDING PAGE CSS
   Ultra-modern, High-performance UI/UX
   ============================================ */

:root {
    --bg-base: #0a0e17;
    /* Deepest blue/black */
    --bg-surface: #101623;
    --bg-panel: rgba(16, 22, 35, 0.6);

    --accent-primary: #3b82f6;
    /* Electric Blue */
    --accent-secondary: #0ea5e9;
    /* Cyan */
    --accent-glow: rgba(59, 130, 246, 0.5);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.02);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ================= Base Styles ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--text-main);
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Optimize paint performance */
    will-change: scroll-position;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ================= Typography & Utilities ================= */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hover-gradient {
    transition: var(--transition);
}

.hover-gradient:hover {
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

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

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ================= Buttons ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), #2563eb);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #4f46e5, var(--accent-secondary));
}

.glow-btn {
    box-shadow: 0 4px 15px var(--accent-glow);
}

.glow-btn:hover {
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border-color: var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: var(--text-muted);
}

/* ================= Dynamic Background Mesh ================= */
.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    /* GPU Acceleration */
    will-change: transform;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    left: -200px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    /* purple touch */
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* ================= Navbar ================= */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1400px;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 0.4rem 1.5rem;
    background: rgba(16, 22, 35, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 0.35rem 1.5rem;
    background: rgba(10, 14, 23, 0.85);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    top: 12px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.logo-icon {
    color: var(--accent-secondary);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================= Hero Section (Premium Layout) ================= */
.hero {
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 2rem;
    position: relative;
    box-sizing: border-box;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
    z-index: 5;
}

/* Premium Badge styling */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(59, 130, 246, 0.1);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-secondary);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(14, 165, 233, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

/* Enhanced Typography */
.hero-title {
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 95%;
}

.text-highlight {
    color: var(--text-light);
    font-weight: 600;
}

/* Feature List */
.hero-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.hf-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Enhanced CTA */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-cta-group .btn-large {
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* ================= Hero Visual (Luxe Mockup) ================= */
.float-anim {
    animation: float-soft 6s ease-in-out infinite;
}

.float-anim-reverse {
    animation: float-soft 7s ease-in-out infinite reverse;
}

@keyframes float-soft {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.luxe-mockup-container {
    position: relative;
    width: 100%;
    z-index: 5;
    perspective: 1000px;
}

.mockup-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    z-index: -1;
    filter: blur(40px);
}

.mockup-window {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mockup-window:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
}

.mw-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mw-mac-btns {
    display: flex;
    gap: 8px;
}

.mw-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mw-btn.close {
    background: #ff5f56;
}

.mw-btn.min {
    background: #ffbd2e;
}

.mw-btn.max {
    background: #27c93f;
}

.mw-title {
    margin: 0 auto;
    font-size: 0.85rem;
    font-family: monospace;
    color: var(--text-muted);
}

.mw-status {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mw-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mw-chart-container {
    position: relative;
    height: 220px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.chart-overlay-stats {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    display: flex;
    gap: 2rem;
    z-index: 2;
}

.cos-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cos-item span {
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.cos-item strong {
    font-family: monospace;
    font-size: 1.6rem;
    line-height: 1;
}

.svg-chart-luxe {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.luxe-line {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: drawChart 3s ease-in-out forwards alternate infinite;
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

.mw-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mw-metric-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.mwm-data {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mwm-data .lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mwm-data .val {
    font-weight: 700;
    font-size: 1.1rem;
    font-family: inherit;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.badge-1 {
    top: -35px;
    right: -45px;
}

.badge-2 {
    bottom: -15px;
    left: -50px;
}

/* ================= Trusted By ================= */
.trusted-by {
    padding: 2rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.trusted-by p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.6;
}

.logos i {
    font-size: 2.5rem;
    color: #fff;
    transition: var(--transition);
}

.logos i:hover {
    opacity: 1;
    transform: scale(1.1);
    color: var(--accent-secondary);
}

/* ================= Features Grid ================= */
.features {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border-top: 2px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
    border-top-color: var(--accent-primary);
}

.feature-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    border-radius: 50px;
    margin-left: 0.8rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
    font-weight: 700;
}

.f-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

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

/* ================= How It Works ================= */
.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 8rem 2rem;
}

.steps-list {
    list-style: none;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--glass-border);
}

.step-item:hover .step-num {
    color: var(--accent-primary);
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

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

/* Integration Visual Animation */
.integration-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: ring-pulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.pulse-ring.delay {
    animation-delay: 2s;
}

@keyframes ring-pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.center-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    z-index: 10;
    box-shadow: 0 0 30px var(--accent-glow);
}

.orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-muted);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.item-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.item-2 {
    bottom: 20%;
    left: 10%;
}

.item-3 {
    bottom: 20%;
    right: 10%;
}

/* ================= Comparison Slider ================= */
.comparison-slider {
    padding: 8rem 0;
    overflow: hidden;
}

.metrics-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mc-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.mc-card.before-ai {
    border-left: 3px solid #ef4444;
}

.mc-card.after-ai {
    border-left: 3px solid #10b981;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.05), transparent);
}

.mc-header {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.mt-icon {
    font-size: 1.2rem;
}

.mc-body {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.mc-stat {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mc-stat span:first-child {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mc-stat span:last-child {
    font-size: 1.2rem;
    font-family: monospace;
    font-weight: 700;
}

.mc-status {
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.c-red {
    color: #ef4444;
}

.c-green {
    color: #10b981;
}

/* ================= Holographic Simulation Demo ================= */
.hologram-panel {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.holo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.4);
    z-index: 10;
}

.holo-controls {
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.3rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.holo-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.holo-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.holo-launch {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--text-light);
    padding: 0.6rem 1.2rem;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.holo-launch:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.holo-display {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}

.holo-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
    pointer-events: none;
    z-index: 1;
}

.traffic-indicator {
    width: 100%;
    max-width: 400px;
    margin-bottom: 3rem;
    z-index: 5;
}

.ti-label {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    display: flex;
    justify-content: space-between;
    font-family: monospace;
}

.ti-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.ti-bar-fill {
    height: 100%;
    width: 15%;
    /* Default steady state */
    background: var(--accent-secondary);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-secondary);
    transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.server-cluster {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    z-index: 5;
    min-height: 120px;
}

.s-node {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.s-node i {
    font-size: 1.5rem;
    color: var(--text-light);
    z-index: 2;
    transition: color 0.3s;
}

.sn-label {
    font-size: 0.75rem;
    font-family: monospace;
    font-weight: bold;
    z-index: 2;
    transition: color 0.3s;
}

.sn-ring {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all 0.4s;
    z-index: 1;
}

.base-node {
    border-color: rgba(59, 130, 246, 0.3);
}

.base-node .sn-ring {
    border-color: rgba(59, 130, 246, 0.2);
}

.ai-node {
    border-color: rgba(16, 185, 129, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.holo-status {
    position: absolute;
    bottom: 1.5rem;
    font-family: monospace;
    font-weight: bold;
    letter-spacing: 2px;
    z-index: 5;
    text-shadow: 0 0 10px currentColor;
    transition: color 0.3s;
}

/* AI Spawn Animation Classes */
.node-spawn {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Spike Effects */
.spike-warning .ti-bar-fill {
    background: #ef4444 !important;
    box-shadow: 0 0 15px #ef4444;
}

.spike-crash {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.1) !important;
}

.spike-crash i,
.spike-crash .sn-label {
    color: #ef4444 !important;
}

.shake {
    animation: shake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes shake {

    10%,
    90% {
        transform: translate3d(-3px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(4px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-6px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(6px, 0, 0);
    }
}

/* ================= ROI Calculator ================= */
.roi-calculator {
    padding: 8rem 0;
}

.savings-result.premium-card {
    margin-top: 2rem;
    padding: 2rem;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.15), rgba(16, 22, 35, 0.9));
    border-left: 4px solid var(--accent-secondary);
}

.sr-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.2rem;
}

.massive-gradient {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin: 0.2rem 0 1.2rem 0;
    font-family: var(--font-heading);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.savings-visual {
    margin-bottom: 1rem;
}

.sv-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.6rem;
    position: relative;
}

.sv-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    transition: width 0.3s ease;
}

.sv-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.s-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.co2-badge {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(16, 185, 129, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.co2-icon {
    font-size: 1.2rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.co2-text {
    display: flex;
    flex-direction: column;
}

.co2-text strong {
    color: #10b981;
    font-size: 0.95rem;
}

.co2-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Calculator Panel */
.calc-panel {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.calc-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-header label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
}

.calc-value {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: -1px;
}

.slider-container {
    margin: 2rem 0;
}

.premium-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin: 1rem 0;
}

.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #58a6ff;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.8);
    border: 4px solid #0d1117;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.calc-breakdown {
    margin-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.b-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.b-row.final-row {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--glass-border);
}

/* ================= Use Cases ================= */
.use-cases {
    padding: 8rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.uc-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.uc-tab {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    background: rgba(16, 22, 35, 0.6);
}

.uc-tab:hover,
.uc-tab.active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--text-main);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.uc-content {
    padding: 4rem;
    text-align: center;
}

.uc-pane {
    display: none;
    animation: fadeUp 0.4s ease forwards;
}

.uc-pane.active {
    display: block;
}

.uc-pane h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-secondary);
}

.uc-pane p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================= Developer Experience ================= */
.devex {
    padding: 8rem 0;
}

.devex-visual {
    position: relative;
    width: 100%;
}

.api-overlay {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 320px;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.8);
    z-index: 5;
}

.api-header {
    background: rgba(59, 130, 246, 0.15);
    color: #58a6ff;
    padding: 0.6rem 1rem;
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

.api-overlay pre {
    margin: 0;
    padding: 1.2rem;
    color: #7ee787;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-x: auto;
}

.devex-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.dv-feat {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.dv-icon {
    font-size: 1.4rem;
    background: rgba(59, 130, 246, 0.1);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
    flex-shrink: 0;
}

.dv-text h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.dv-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.terminal {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0d1117;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-header {
    background: #161b22;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.terminal-tabs {
    display: flex;
    gap: 4px;
    margin-left: 2rem;
    flex: 1;
}

.t-tab {
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    font-family: monospace;
    color: #8b949e;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.t-tab.active,
.t-tab:hover {
    color: #58a6ff;
    background: rgba(255, 255, 255, 0.05);
}

.t-actions i {
    color: #8b949e;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.2s;
}

.t-actions i:hover {
    color: #fff;
}

.terminal-body {
    padding: 2.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #c9d1d9;
}

.prompt {
    color: #58a6ff;
    font-weight: bold;
    margin-right: 0.8rem;
}

.muted {
    color: #8b949e;
}

.success {
    color: #3fb950;
}

/* ================= Security ================= */
.security {
    padding: 8rem 0;
    background: radial-gradient(ellipse at bottom, rgba(16, 22, 35, 1), rgba(10, 14, 23, 1));
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.security-card {
    text-align: center;
    padding: 4rem 2.5rem;
    transition: transform var(--transition);
    position: relative;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.security-card:hover::before {
    opacity: 1;
}

.s-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.security-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
}

.security-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ================= Pricing ================= */
.pricing {
    padding: 8rem 0;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 3rem;
}

.bt-label {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.bt-label.active {
    color: var(--text-main);
    font-weight: 600;
}

.discount-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 66px;
    height: 36px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border: 1px solid var(--glass-border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--accent-secondary);
    transition: .4s;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

input:checked+.slider {
    background-color: rgba(14, 165, 233, 0.2);
}

input:checked+.slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 36px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
}

.pricing-card.popular {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    background: linear-gradient(180deg, rgba(16, 22, 35, 0.9), rgba(10, 14, 23, 0.95));
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.p-tier {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.p-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
}

.p-price .currency {
    font-size: 1.8rem;
    color: var(--text-muted);
    font-weight: bold;
}

.p-price .amount {
    font-size: 4rem;
    font-weight: 800;
    font-family: monospace;
    color: var(--text-main);
    letter-spacing: -2px;
}

.p-price .period {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-left: 0.2rem;
}

.p-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.p-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    flex: 1;
}

.p-features li {
    margin-bottom: 1.2rem;
    color: var(--text-main);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.p-features li i {
    color: #10b981;
    font-size: 1.1rem;
}

.p-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.p-features li.disabled i {
    color: var(--text-muted);
}

.p-btn {
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    padding: 1rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= Testimonials ================= */
.testimonials {
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.t-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.t-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    flex: 1;
}

.t-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-secondary);
}

.t-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ================= FAQ Section ================= */
.faq {
    padding: 8rem 0;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.05), transparent 70%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: var(--accent-secondary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    color: var(--text-muted);
    opacity: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

/* ================= Contact Section ================= */
.contact-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.contact-form button {
    margin-top: 0.5rem;
    width: fit-content;
}

/* ================= CTA Section ================= */
.final-cta {
    padding: 6rem 0;
}

.container-cta {
    padding: 4rem;
    text-align: center;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(16, 22, 35, 0.8));
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
}

.cta-inner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-inner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* ================= Footer ================= */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    background: rgba(10, 14, 23, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-col p {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
    max-width: 250px;
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.socials a:hover {
    color: var(--accent-secondary);
}

.link-col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.link-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.link-col a:hover {
    color: var(--text-main);
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* ================= INTERSECTION OBSERVER ANIMATIONS ================= */
/* High Performance: Using only opacity and transform */
.observe-me {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.observe-me.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Staggering Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* ================= Live Telemetry ================= */
.live-telemetry {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 10;
}

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

.metric-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #111520;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.3);
}

.m-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.m-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: rgba(59, 130, 246, 0.1);
}

.m-icon.cpu {
    color: #818cf8;
    background: rgba(129, 140, 248, 0.1);
}

.m-icon.mem {
    color: #f43f5e;
    background: rgba(244, 63, 94, 0.1);
}

.m-icon.ec2 {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
}

.m-icon.net {
    color: #6366f1;
    background: rgba(99, 102, 241, 0.1);
}

.m-icon.res {
    color: #eab308;
    background: rgba(234, 179, 8, 0.1);
}

.m-icon.cost {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.m-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.m-body {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.m-value {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.m-unit {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.m-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: bold;
}

.m-badge.up {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
}

.m-badge.down {
    background: rgba(244, 63, 94, 0.1);
    color: #fb7185;
}

.m-footer {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.m-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.m-fill {
    height: 100%;
    border-radius: 2px;
}

.cpu-fill {
    background: linear-gradient(90deg, #818cf8, #6366f1);
}

.mem-fill {
    background: linear-gradient(90deg, #818cf8, #0ea5e9);
}

.m-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.m-status i {
    color: #4ade80;
}

.m-status.alive i {
    color: var(--text-muted);
    animation: pulse-opacity 1.5s infinite;
}

.m-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}

.node-dots {
    display: flex;
    gap: 4px;
}

.n-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.n-dot.active {
    background: #4ade80;
    box-shadow: 0 0 5px rgba(74, 222, 128, 0.5);
}

@keyframes pulse-opacity {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
        color: #fff;
    }
}

/* Gauges Grid */
.gauges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 0;
}

.gauge-box {
    background: #151923;
    padding: 2.5rem;
    text-align: center;
}

.g-title {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2rem;
}

.gauge-container {
    position: relative;
    max-width: 250px;
    margin: 0 auto;
}

.gauge-svg {
    width: 100%;
    overflow: visible;
}

.g-text {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
}

/* ================= Before/After Slider ================= */
.comparison-slider {
    padding: 8rem 0;
}

.ba-slider-container {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: var(--radius-md);
    overflow: hidden;
    user-select: none;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
}

.ba-before {
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.1), #0a0e17);
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.ba-after {
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1), #0a0e17);
    z-index: 1;
}

.chart-label {
    position: absolute;
    top: 2rem;
    font-weight: 700;
    font-family: monospace;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.red-label {
    left: 2rem;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    z-index: 10;
}

.green-label {
    right: 2rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    z-index: 10;
}

.chart-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.svg-text-overlay {
    position: absolute;
    font-family: monospace;
    font-weight: 800;
    font-size: 1.25rem;
    white-space: nowrap;
    z-index: 10;
    letter-spacing: 1px;
}

.svg-text-red {
    color: #ef4444;
    top: 38%;
    left: 2rem;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.svg-text-blue {
    color: #3b82f6;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.svg-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}



.ba-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    margin: 0;
    opacity: 0;
    z-index: 5;
    cursor: ew-resize;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #fff;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.ba-slider-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* ================= Global Map ================= */
.global-map {
    padding: 8rem 0;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--radius-md);
    background: #0f121a;
    overflow: hidden;
    margin-top: 0;
}

.g-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.g-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.g-feature i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.gf-text h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.gf-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.conn-line {
    stroke: rgba(59, 130, 246, 0.4);
    fill: none;
    stroke-width: 2;
    stroke-dasharray: 8, 8;
    animation: dash-flow 2s linear infinite;
}

@keyframes dash-flow {
    from {
        stroke-dashoffset: 16;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.region-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-family: monospace;
    font-size: 0.85rem;
    z-index: 2;
}

.region-node .ping {
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80;
    position: relative;
}

.region-node .ping::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    border-radius: 50%;
    border: 1px solid #4ade80;
    animation: radar-ping 2s linear infinite;
}

.us-west {
    top: 40%;
    left: 15%;
}

.us-east {
    top: 35%;
    left: 35%;
}

.eu-west {
    top: 30%;
    left: 48%;
}

.sa-east {
    top: 60%;
    left: 35%;
}

.ap-south {
    top: 55%;
    left: 75%;
}

@keyframes radar-ping {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.global-overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 260px;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.8);
    z-index: 5;
    padding: 1.5rem;
}

.go-header {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.8rem;
}

.go-row {
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.go-row:last-child {
    margin-bottom: 0;
}

/* ================= Integrations Marquee ================= */
.integrations {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: scroll-marquee 20s linear infinite;
    width: max-content;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
    font-weight: 700;
}

.logo-box i {
    font-size: 2rem;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================= ML Core Visual ================= */
.ml-core {
    padding: 8rem 0;
}

.core-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.core-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.core-stat .stat-icon {
    font-size: 1.2rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.core-stat .stat-info h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.core-stat .stat-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.core-canvas-container {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.css-3d-core {
    position: relative;
    width: 200px;
    height: 200px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.core-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #3b82f6, #020617);
    border-radius: 50%;
    box-shadow: 0 0 30px #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    z-index: 10;
}

.orbit-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transform-style: preserve-3d;
}

.ax1 {
    animation: spin-ax1 10s linear infinite;
}

.ax2 {
    animation: spin-ax2 14s linear infinite;
}

.ax3 {
    animation: spin-ax3 18s linear infinite;
}

.orbit-node {
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 10px #0ea5e9;
    transform: translateX(-50%);
}

@keyframes spin-ax1 {
    0% {
        transform: rotateX(60deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(60deg) rotateY(0deg) rotateZ(360deg);
    }
}

@keyframes spin-ax2 {
    0% {
        transform: rotateX(60deg) rotateY(60deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(60deg) rotateY(60deg) rotateZ(360deg);
    }
}

@keyframes spin-ax3 {
    0% {
        transform: rotateX(60deg) rotateY(-60deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(60deg) rotateY(-60deg) rotateZ(360deg);
    }
}

.core-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

.pulse-text {
    font-family: monospace;
    color: #4ade80;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ================= Technical Blog / Resources ================= */
.resources {
    padding: 8rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
}

.blog-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    font-family: monospace;
    font-weight: bold;
}

.blog-title {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.4;
}

.blog-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--accent-secondary);
    gap: 1rem;
}

/* ================= Responsive ================= */
@media (max-width: 1024px) {

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

    .hero-content {
        margin: 0 auto;
    }

    .hero-cta,
    .hero-stats {
        justify-content: center;
    }

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

    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions .btn-outline {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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