:root {
    /* Matrix 4.0 Palette */
    --bg-color: #050a06;
    --matrix-green: #00ff41;
    --matrix-green-glow: rgba(0, 255, 65, 0.4);
    --matrix-dark: #003b00;
    --text-color: #e0e0e0;
    --text-muted: #888;
    --glass-bg: rgba(13, 22, 15, 0.7);
    --glass-border: rgba(0, 255, 65, 0.15);
    --neon-shadow: 0 0 15px var(--matrix-green-glow);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Layout */
    --section-padding: 10rem 10%;
    --card-radius: 24px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* Atmospheric Layers */
.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 50;
}

.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 255, 65, 0.02) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 49;
    animation: scanlineMove 10s linear infinite;
}

@keyframes scanlineMove {
    from { background-position: 0 0; }
    to { background-position: 0 100%; }
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 48;
}

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.25;
}

.mouse-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0; /* Horizontal padding moved to nav */
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

header.scrolled {
    background: rgba(5, 10, 6, 0.95);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.logo span {
    color: var(--matrix-green);
    text-shadow: 0 0 10px var(--matrix-green-glow);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin-left: auto; /* Pushes to the right */
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-family: var(--font-mono);
}

nav a:hover {
    color: var(--matrix-green);
    text-shadow: 0 0 8px var(--matrix-green-glow);
}

.nav-btn {
    padding: 0.8rem 1.8rem;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--matrix-green);
    color: var(--matrix-green);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--matrix-green);
    color: #000;
    box-shadow: 0 0 20px var(--matrix-green-glow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    position: relative;
}

.badge {
    font-family: var(--font-mono);
    color: var(--matrix-green);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0.8;
    background: rgba(0, 255, 65, 0.05);
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.glitch {
    font-size: 6rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -2px;
    font-family: var(--font-mono);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch::before {
    color: #ff00c1;
    z-index: -1;
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    color: #00fff9;
    z-index: -2;
    animation: glitch-anim 2s infinite linear alternate;
}

@keyframes glitch-anim {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 3rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.tagline {
    max-width: 750px;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.cta-group {
    display: flex;
    gap: 2rem;
}

/* Button System */
.btn-neon {
    padding: 1.2rem 2.5rem;
    background: var(--matrix-green);
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
    border: none;
    font-family: var(--font-mono);
}

.btn-neon:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.5);
}

.btn-outline {
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: var(--font-mono);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-primary {
    background: var(--matrix-green);
    color: var(--bg-color);
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    transition: all 0.3s;
}

/* Section Header & Title */
.section-header {
    text-align: center;
    margin-bottom: 8rem;
    padding: 0 10%;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--matrix-green);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-family: var(--font-main);
    color: #fff;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.section-description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Features Grid */
.features {
    padding: var(--section-padding);
    background: radial-gradient(circle at center, rgba(0, 255, 65, 0.02) 0%, transparent 70%);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 4rem 3rem;
    border-radius: var(--card-radius);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--matrix-green);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--neon-shadow);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--matrix-green);
    filter: drop-shadow(0 0 10px var(--matrix-green-glow));
}

.card h3 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Execution Flow / How It Works */
.how-it-works {
    padding: var(--section-padding);
}

.process-container {
    display: flex;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.timeline-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.step-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s ease;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--neon-shadow);
}

.step-content h4 {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--matrix-green);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.step-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Code Terminal Upgrade */
.code-terminal {
    flex: 1.2;
    background: #0d1117;
    border-radius: 24px;
    border: 1px solid #30363d;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    font-family: var(--font-mono);
}

.terminal-header {
    background: #161b22;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #30363d;
}

.terminal-body {
    padding: 3rem;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
}

.price-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.price-card {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 5rem 4rem;
    border-radius: var(--card-radius);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: var(--matrix-green);
    transform: scale(1.05);
    background: rgba(0, 255, 65, 0.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), var(--neon-shadow);
}

.price-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.popular-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--matrix-green);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.plan-name {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--matrix-green);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.plan-price {
    margin-bottom: 4rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.6rem;
}

.currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.amount {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

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

.plan-features {
    list-style: none;
    margin-bottom: 4rem;
    flex-grow: 1;
    text-align: left;
}

.plan-features li {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    color: var(--text-color);
    line-height: 1.4;
}

.plan-features li.check::before {
    content: '✓';
    color: var(--matrix-green);
    font-weight: 900;
}

.plan-features li.cross::before {
    content: '✗';
    color: #ff5f56;
    font-weight: 900;
}

.price-card .btn-neon, 
.price-card .btn-outline {
    width: 100%;
    margin-top: auto; /* Pushes button to bottom */
}

@media (max-width: 1100px) {
    .price-grid { flex-direction: column; align-items: center; }
    .price-card { width: 100%; max-width: 500px; }
    .price-card.featured { transform: scale(1); }
    .price-card.featured:hover { transform: translateY(-10px); }
}

/* Integrations / Node Network */
.integrations {
    padding: 10rem 10%;
    text-align: center;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.node {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.node:hover {
    border-color: var(--matrix-green);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), var(--neon-shadow);
    background: rgba(0, 255, 65, 0.05);
}

.node-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.2));
}

.node h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.node p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Custom Support Card */
.custom-support-card {
    background: linear-gradient(135deg, rgba(13, 22, 15, 0.95), rgba(0, 59, 0, 0.4));
    border: 1px solid var(--matrix-green);
    padding: 6rem 4rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    margin: 10rem auto; /* Large margin to separate from grid and marquee */
    max-width: 1100px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px var(--matrix-green-glow);
    backdrop-filter: blur(20px);
    text-align: center;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.15) 0%, transparent 60%);
    animation: rotateGlow 15s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.support-content {
    position: relative;
    z-index: 2;
}

.support-content h3 {
    font-family: var(--font-main);
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.support-content p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Marquee / Platform Scroll */
.marquee-subtle {
    overflow: hidden;
    opacity: 0.8;
    padding: 3rem 0;
    margin-top: 6rem;
    margin-bottom: 4rem;
    position: relative;
    background: linear-gradient(to right, transparent, rgba(0, 255, 65, 0.02), transparent);
}

.marquee-subtle::before,
.marquee-subtle::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-subtle::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.marquee-subtle::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.marquee-content-subtle {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marquee-subtle 30s linear infinite;
    align-items: center;
}

.marquee-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 2rem;
    border-radius: 12px;
    color: var(--text-color);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.marquee-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--matrix-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--matrix-green);
}

.marquee-tag:hover {
    background: rgba(0, 255, 65, 0.08);
    border-color: var(--matrix-green);
    color: var(--matrix-green);
    transform: translateY(-3px);
}

@keyframes marquee-subtle {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Integrity Protocol Dashboard */
.usage-policy {
    padding: var(--section-padding);
    background: radial-gradient(circle at top, rgba(0, 255, 65, 0.04) 0%, transparent 60%);
}

.compliance-dashboard {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.compliance-panel {
    flex: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 5rem;
    border-radius: var(--card-radius);
    backdrop-filter: blur(25px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.compliance-panel.certified {
    border-left: 4px solid var(--matrix-green);
}

.compliance-panel.restricted {
    border-left: 4px solid #ff5f56;
}

.compliance-panel:hover {
    transform: translateY(-10px);
}

.panel-header {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.panel-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 20px;
}

.panel-title h4 {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.panel-title span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.integrity-list {
    list-style: none;
}

.integrity-list li {
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.check-icon::before { content: '✓'; color: var(--matrix-green); font-weight: 900; }
.cross-icon::before { content: '✗'; color: #ff5f56; font-weight: 900; }

/* Enterprise Bridge CTA */
.enterprise-bridge {
    max-width: 1400px;
    margin: 8rem auto 0;
    background: linear-gradient(90deg, rgba(13, 22, 15, 0.95), rgba(0, 59, 0, 0.3));
    border: 1px solid var(--matrix-green);
    border-radius: var(--card-radius);
    padding: 6rem;
    position: relative;
    overflow: hidden;
}

/* Navigation & Buttons */
.nav-link {
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--matrix-green);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--matrix-green);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-neon.small {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
    border-radius: 50px;
}

/* Security Advisory Upgrade */
.security-advisory {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 65, 65, 0.02);
    border: 1px solid rgba(255, 65, 65, 0.2);
    border-radius: 12px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    text-align: center;
}

.security-advisory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255, 65, 65, 0.05) 1px, rgba(255, 65, 65, 0.05) 2px);
    pointer-events: none;
}

.advisory-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 65, 65, 0.5);
    box-shadow: 0 0 15px rgba(255, 65, 65, 0.8);
    animation: scanAdvisory 4s linear infinite;
}

@keyframes scanAdvisory {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.security-advisory h3 {
    color: #ff5f56;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 65, 65, 0.3);
}

.security-advisory p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.security-advisory .highlight {
    color: #fff;
    font-weight: 700;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.advisory-footer {
    margin-top: 3rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 65, 65, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.status-dot.pulsing {
    width: 8px;
    height: 8px;
    background: #ff5f56;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff5f56;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Neural Integration Pattern */
.integrations {
    padding: var(--section-padding);
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 65, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 65, 0.03) 0%, transparent 40%);
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30L0 0M30 30L60 0M30 30L60 60M30 30L0 60' stroke='rgba(0, 255, 65, 0.02)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.integration-grid {
    position: relative;
    z-index: 1;
}

/* Pricing Toggle Visual */
.plan-price {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Stats Bar - Restored and Spaced */
.stats-bar {
    padding: 8rem 10%;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--matrix-green);
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--matrix-green-glow);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
}

@media (max-width: 500px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* Footer - Fixed Alignment */
footer {
    padding: 10rem 10% 6rem;
    background: #020503;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 4rem;
}

.footer-logo {
    justify-self: start;
}

.copyright {
    justify-self: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact {
    justify-self: end;
    text-align: right;
}

.footer-contact a {
    color: var(--matrix-green);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--matrix-green);
}

@media (max-width: 1000px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .footer-logo, .copyright, .footer-contact {
        justify-self: center;
        text-align: center;
    }
}

/* Integrity Protocol & Usage Policy */
.usage-policy {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 65, 0.02));
}

.compliance-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.compliance-panel {
    background: rgba(0, 15, 5, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.compliance-panel.certified { border-left: 4px solid var(--matrix-green); }
.compliance-panel.restricted { border-left: 4px solid #ff5f56; }

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

.panel-icon { font-size: 2.5rem; }

.panel-title h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.panel-title span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.integrity-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.integrity-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.check-icon::before { content: '✓'; color: var(--matrix-green); font-weight: bold; }
.cross-icon::before { content: '✕'; color: #ff5f56; font-weight: bold; }

/* Enterprise Bridge Highlight Card */
.enterprise-bridge {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 16px;
    padding: 5rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.enterprise-bridge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--matrix-green);
    box-shadow: 0 0 20px var(--matrix-green);
}

.bridge-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.bridge-info { 
    max-width: 100%;
}

.bridge-info h4 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.bridge-info p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 850px;
}

.bridge-cta {
    flex-shrink: 0;
}

.bridge-cta .btn-neon {
    white-space: nowrap;
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    display: inline-block;
}

@media (max-width: 1100px) {
    .bridge-content { 
        grid-template-columns: 1fr;
        text-align: center; 
        gap: 4rem; 
    }
    .bridge-info p { margin: 0 auto; }
    .enterprise-bridge { padding: 4rem 2rem; }
    .bridge-cta .btn-neon { width: 100%; max-width: 400px; }
}

/* =============================================
   MATRIX NEURAL TERMINAL (Docs Dashboard)
   ============================================= */

.matrix-dashboard {
    background: #020503;
    min-height: 100vh;
    color: var(--matrix-green);
    position: relative;
    overflow: hidden;
}

/* Neural Header */
.neural-header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid var(--matrix-green);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.terminal-search {
    display: flex;
    align-items: center;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid var(--matrix-green);
    padding: 10px 20px;
    border-radius: 4px;
    width: 450px;
}

.terminal-search input {
    background: transparent;
    border: none;
    outline: none;
    margin-left: 15px;
    width: 100%;
    font-family: var(--font-mono);
    color: var(--matrix-green);
    font-size: 0.85rem;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-pulse {
    width: 10px;
    height: 10px;
    background: var(--matrix-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--matrix-green);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.status-text {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 3px;
}

/* =============================================
   STABILIZED NEURAL TERMINAL (Docs Dashboard)
   ============================================= */

/* =============================================
   STABILIZED NEURAL TERMINAL (Docs Dashboard)
   ============================================= */

.matrix-dashboard {
    background: #020503;
    height: 100vh; /* Locked height for dashboard feel */
    color: var(--matrix-green);
    position: relative;
    overflow: hidden; /* Main window shouldn't scroll */
    display: flex;
    flex-direction: column;
}

.neural-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    flex-shrink: 0;
    z-index: 1000;
}

.neural-wrapper {
    display: flex;
    flex: 1;
    overflow: hidden;
    width: 100%;
}

/* Sidebar Reset & Stabilization */
.neural-sidebar {
    width: 320px;
    background: rgba(5, 15, 8, 0.98);
    backdrop-filter: blur(30px);
    border-right: 1px solid rgba(0, 255, 65, 0.2);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 100;
}

.sidebar-header-area {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.sidebar-brand {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0;
}

.sidebar-brand span {
    color: #fff;
    text-shadow: 0 0 10px var(--matrix-green);
}

/* Navigation System */
.neural-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding: 15px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--matrix-green) rgba(0,0,0,0.5);
}

.neural-nav::-webkit-scrollbar { width: 4px; }
.neural-nav::-webkit-scrollbar-thumb { background: var(--matrix-green); }

.nav-item {
    display: grid;
    grid-template-columns: 35px 1fr;
    align-items: center;
    gap: 15px;
    padding: 14px 40px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border-left: 4px solid transparent;
}

.nav-item:hover {
    background: rgba(0, 255, 65, 0.08);
    color: #fff;
    padding-left: 45px;
}

.nav-item.active {
    background: rgba(0, 255, 65, 0.15);
    color: var(--matrix-green);
    border-left: 4px solid var(--matrix-green);
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.4);
}

.nav-divider {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(0, 255, 65, 0.4);
    padding: 25px 40px 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Content Area Fixes */
.neural-content {
    flex: 1;
    padding: 60px 80px;
    overflow-y: auto;
    background: rgba(0, 5, 0, 0.2);
    position: relative;
}

.api-section-node {
    display: none;
    max-width: 1100px;
    margin: 0 auto;
}

.api-section-node.active {
    display: block;
    animation: fadeInNode 0.4s ease;
}

@keyframes fadeInNode {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.terminal-breadcrumb {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.neural-card {
    background: rgba(0, 20, 5, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 8px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.neural-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--matrix-green);
    box-shadow: 0 0 20px var(--matrix-green);
}

.api-header-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.api-glyph {
    font-size: 2.5rem;
    color: var(--matrix-green);
    text-shadow: 0 0 20px var(--matrix-green);
}

.api-title-text h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.api-title-text p {
    color: var(--matrix-green);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    opacity: 0.7;
}

.api-meta-terminal {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 4px;
    border-left: 4px solid var(--matrix-green);
    margin-bottom: 60px;
}

.api-meta-terminal p {
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.method-highlight {
    color: #fff;
    background: var(--matrix-green);
    color: #000;
    padding: 2px 8px;
    font-weight: 800;
}

.endpoint-neural {
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

/* Neural Table */
.neural-table-wrapper {
    margin-bottom: 80px;
}

.neural-table {
    width: 100%;
    border-collapse: collapse;
}

.neural-table th {
    text-align: left;
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    border-bottom: 1px solid var(--glass-border);
}

.neural-table td {
    padding: 25px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 255, 65, 0.05);
}

.param-key {
    font-family: var(--font-mono);
    color: var(--matrix-green);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.status-req {
    color: #ff3e3e;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.status-opt {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* Terminal Examples V3 */
.example-node {
    margin-bottom: 80px;
}

.node-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-bottom: 30px;
    color: #fff;
}

.node-glow {
    color: var(--matrix-green);
    text-shadow: 0 0 10px var(--matrix-green);
}

.code-terminal-v3 {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.code-terminal-v3 label {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #020503;
    padding: 0 10px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--matrix-green);
    letter-spacing: 2px;
}

.code-terminal-v3 pre {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0aec0;
}

@media (max-width: 1100px) {
    .neural-wrapper { flex-direction: column; }
    .neural-sidebar { width: 100%; height: auto; position: static; }
    .neural-content { padding: 40px 20px; }
}
