/* Backplaned Website Styles */

:root {
    --backplane-blue: #0A2540;
    --circuit-cyan: #00D4AA;
    --silicon-silver: #F6F9FC;
    --agent-orange: #FF6B35;
    --signal-green: #00C853;
    --dark-matter: #1A1A1A;
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dark: #0A2540;
    --card-bg: #FFFFFF;
    --border-light: rgba(0, 212, 170, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--backplane-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--circuit-cyan);
}

.nav-cta {
    background: var(--circuit-cyan);
    color: var(--backplane-blue) !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
}

.nav-cta:hover {
    background: #00E5B8;
}

/* Hero Section */
.hero {
    padding: 80px 24px 120px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-visual {
    margin-bottom: 32px;
}

.network-graph {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--circuit-cyan);
    margin-bottom: 48px;
    font-weight: 500;
}

/* CLI Demo */
.cli-demo {
    max-width: 560px;
    margin: 0 auto 48px;
}

.cli-window {
    background: var(--dark-matter);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cli-header {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cli-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.cli-dot.red { background: #FF5F56; }
.cli-dot.yellow { background: #FFBD2E; }
.cli-dot.green { background: #27C93F; }

.cli-body {
    padding: 20px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-align: left;
}

.cli-body p {
    margin-bottom: 8px;
}

.prompt {
    color: var(--circuit-cyan);
    margin-right: 8px;
}

.output {
    color: var(--text-muted);
}

/* Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: var(--circuit-cyan);
    color: var(--backplane-blue);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #00E5B8;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--circuit-cyan);
    color: var(--circuit-cyan);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border: 2px solid var(--backplane-blue);
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--backplane-blue);
    color: var(--text-white);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

.section-title.light {
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -48px;
    margin-bottom: 48px;
}

/* Features Section */
.features {
    background: var(--silicon-silver);
    padding: 100px 24px;
}

.features .section-title {
    color: var(--text-dark);
}

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

.feature-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(10, 37, 64, 0.7);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.learn-more {
    color: var(--circuit-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.learn-more:hover {
    color: #00B896;
}

/* How It Works */
.how-it-works {
    background: var(--backplane-blue);
    padding: 100px 24px;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--circuit-cyan);
    color: var(--backplane-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-content p {
    color: var(--text-muted);
}

.step-code {
    background: var(--dark-matter);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.step-code p {
    color: var(--text-white);
    margin-bottom: 4px;
}

.step-output {
    color: var(--signal-green) !important;
}

.step-visual {
    background: var(--dark-matter);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 16px 0;
    font-family: 'JetBrains Mono', monospace;
}

.step-visual code {
    color: var(--circuit-cyan);
}

.file-icon {
    margin-right: 8px;
}

.step-connector {
    width: 2px;
    height: 32px;
    background: var(--circuit-cyan);
    opacity: 0.4;
    margin-bottom: 16px;
}

/* Example Section */
.example {
    background: var(--dark-matter);
    padding: 100px 24px;
}

.terminal-window {
    max-width: 800px;
    margin: 0 auto 32px;
    background: #0D0D0D;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #FF5F56; }
.terminal-dot.yellow { background: #FFBD2E; }
.terminal-dot.green { background: #27C93F; }

.terminal-title {
    margin-left: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.terminal-body {
    padding: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-prompt {
    color: var(--circuit-cyan);
    margin-right: 8px;
}

.terminal-command {
    color: var(--text-white);
    margin-bottom: 16px;
}

.terminal-output {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.terminal-comment {
    color: rgba(255, 255, 255, 0.4);
}

.timestamp {
    color: var(--circuit-cyan);
}

.sender {
    color: var(--signal-green);
    font-weight: 500;
}

.example-features {
    text-align: center;
    color: var(--text-muted);
}

.check {
    color: var(--signal-green);
    margin-right: 8px;
    margin-left: 24px;
}

/* Pricing Section */
.pricing {
    background: var(--silicon-silver);
    padding: 100px 24px;
}

.pricing .section-title {
    color: var(--text-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--circuit-cyan);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--circuit-cyan);
    color: var(--backplane-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-icon {
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.price span {
    font-size: 1rem;
    color: rgba(10, 37, 64, 0.5);
    font-weight: 400;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: rgba(10, 37, 64, 0.8);
}

.features-list li:last-child {
    border-bottom: none;
}

.enterprise-note {
    text-align: center;
    margin-top: 48px;
    color: rgba(10, 37, 64, 0.6);
}

.enterprise-note a {
    color: var(--circuit-cyan);
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--dark-matter);
    padding: 64px 24px 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-brand span {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--circuit-cyan);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #00E5B8;
}

.footer-tagline {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 32px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--text-muted);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
