.elementor-65999 .elementor-element.elementor-element-e615203{--display:flex;--margin-top:70px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-65999 .elementor-element.elementor-element-ef400fd{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1464a4c */:root {
    --bg-dark: #000000;
    --bg-card: rgba(15, 23, 42, 0.6);
    --primary: #004EAA;
    --secondary: #06CE7D;
    --accent: #06CE7D;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;
    /* Updated to Manrope */
    --glass-border: rgba(255, 255, 255, 0.08);
    /* Fainter border */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48ZmlsdGVyIGlkPSJnoj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjYiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjZykiIG9wYWNpdHk9Ii4wNSIvPjwvc3ZnPg==');
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--primary);
    /* Solid blue as requested */
    color: white;
    box-shadow: 0 0 20px rgba(0, 78, 170, 0.4);
    /* Adjusted shadow color */
        margin-top: 30px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #003d85;
    /* Darker blue on hover */
    box-shadow: 0 0 40px rgba(0, 78, 170, 0.6);
}

.icon-btn .arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.icon-btn:hover .arrow {
    transform: translateX(5px);
}

/* Glass Panel Utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* Hero Section */
.hero-section {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    background: #000000;
    /* User requested black background */
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind text */
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-text {
    max-width: 80%;
    margin: 0 auto;
}

.badge-pill {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;

    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 78px;
    font-family: 'Literata', serif;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

/* About Section */
.about-section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.data-coverage-visual {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.data-lake-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.funnel-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.source-tag {
    padding: 0.5rem 1rem;
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.funnel-path {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.flow-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(148, 163, 184, 0.1), var(--accent));
    margin: 0 15px;
    animation: flow 1.5s infinite linear;
}

.insight-box {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid var(--primary);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Network Section */
.network-section {
    padding: 1rem 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-list li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 1.2rem;
    box-shadow: 0 0 10px var(--accent);
}

.network-graph-demo {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4), rgba(2, 6, 23, 0.8));
}

.network-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-node {
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.node-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
    z-index: 2;
}

.node-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 8px;
    border-radius: 4px;
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--accent);
    opacity: 0;
    animation: ripple 3s infinite;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(148, 163, 184, 0.8);
    pointer-events: none;
}

.orbit-1 {
    width: 220px;
    height: 220px;
    animation: orbit-spin 20s linear infinite;
}

.orbit-2 {
    width: 340px;
    height: 340px;
    animation: orbit-spin 30s linear infinite reverse;
}

.satellite {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Position on the ring by rotating? No, simpler to just absolute position and let parent rotate */
/* But wait, if parent rotates, children need to be offset from center */
.orbit-1 .sat-1 {
    transform: translate(-50%, -50%) translateY(-110px);
}

/* Top */
.orbit-1 .sat-2 {
    transform: translate(-50%, -50%) translateY(110px);
}

/* Bottom */

.orbit-2 .sat-3 {
    transform: translate(-50%, -50%) translateX(170px);
}

/* Right */

.node-dot {
    width: 12px;
    height: 12px;
    background: var(--text-muted);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    margin-bottom: 5px;
    transition: all 0.3s;
}

.node-dot.warning {
    background: #f43f5e;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.5);
}

.node-tooltip {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(2, 6, 23, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.orbit-1 .node-tooltip {
    animation: counter-spin 20s linear infinite;
}

.orbit-2 .node-tooltip {
    animation: counter-spin-reverse 30s linear infinite;
}

@keyframes orbit-spin {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes counter-spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes counter-spin-reverse {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes ripple {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.8;
    }

    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
    }
}

/* Capabilities */
.capabilities-section {
    padding: 5rem 0;
    
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Reduced from 320px for better mobile fit */
    gap: 2rem;
}


.feature-card {
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(34, 211, 238, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.hover-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.feature-card:hover .hover-glow {
    opacity: 1;
}

/* MCP Section */
.mcp-section {
    padding: 2rem 0;
    padding-bottom: 2rem;
}

.mcp-container {
    padding: 5rem 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mcp-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.layer {
    padding: 1.5rem 3rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.layer-lake {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.layer-mcp {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.3);
    z-index: 2;
}

.layer-agent {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.connector-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Animations Keyframes */
@keyframes flow {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(50%);
    }
}

/* Specific Heading Updates requested by User */
.section-header h2,
/* About KScan AI, Kscan AI Agent Capabilities */
.data-coverage-visual .text-content h3,
/* Unmatched Data Access & Coverage */
.network-section .text-content h2,
/* Network Mapping & Related Party Risk */
.mcp-text h2

/* Powered by MCP & the KScan Data Lake */
    {
    font-family: 'Literata', serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    color: #DDDDDD;
    /* Maintaining the color requested previously */
    margin-bottom: 40px;
    /* Added spacing */
}

/* Subheadings / Description Text Typography Update */
.hero-text p,
.section-lead,
.text-content p,
.mcp-text p,
.feature-card p {
    font-family: 'Manrope', sans-serif;
    /* font-size: 18px; Removed to respect original sizes */
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Ensure visibility if JS fails */
[data-scroll] {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .text-content {
        margin: 0 auto;
    }

    .network-graph-demo {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .feature-card{
        padding:1rem;
    }

    /* Reduce vertical spacing for mobile */
    .hero-section {
        min-height: auto;
        /* Allow hero to shrink */
        padding: 0;
    }

    .about-section,
    .network-section,
    .capabilities-section,
    .mcp-section {
        padding: 2rem 0;
        /* Reduced from 6rem */
    }
    .cards-grid{
        gap:1rem;
    }

    /* Scale down Literata headings for mobile */
    .section-header h2,
    .data-coverage-visual .text-content h3,
    .network-section .text-content h2,
    .mcp-text h2 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    /* Stack Data Coverage Section */
    .data-coverage-visual {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
        width: 100%;
        overflow: hidden;
    }

    .data-lake-funnel {
        order: 2;
        width: 100%;
        transform: scale(0.95);
        margin-top: 1rem;
    }

    .data-coverage-visual .text-content {
        order: 1;
        width: 100%;
        padding: 0 0.5rem;
    }

    /* Ensure Network Graph stacks correctly */
    .split-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Network Graph visual fix for mobile */
    .network-graph-demo {
        height: 350px;
        width: 100%;
    }

    .network-container {
        transform: scale(0.8);
    }

    /* MCP Mobile Fixes */
    .mcp-container {
        padding: 3rem 1rem;
    }

    /* Force vertical stack for diagram */
    .mcp-diagram {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    /* Resize layers for mobile stack */
    .layer {
        width: 100%;
        max-width: 280px;
        padding: 1rem;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Change horizontal connector to vertical */
    .connector-line {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, transparent, var(--accent), transparent);
    }

    /* Adjust text size and spacing */
    .mcp-text h2 {
        font-size: 26px;
        margin-bottom: 1.5rem;
    }

    .mcp-section {
        padding-bottom: 0rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
        /* Reduced from 2.2rem */
        line-height: 1.3;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        /* Prevent edge touching */
    }
    .hero-text{
        max-width: 100%;
    }

    .section-header h2,
    .data-coverage-visual .text-content h3,
    .network-section .text-content h2,
    .mcp-text h2 {
        font-size: 28px;
    }

    .split-layout {
        display: flex;
        flex-direction: column;
    }

    /* Network Graph visual fix for small mobile */
    .network-container {
        transform: scale(0.65);
    }
}

.start-kscan button:focus{
    background-color:#004eaa !important;
}/* End custom CSS */