:root {
    --bg-color: #020408; 
    --surface-color: #070B14; 
    --border-color: #1A263D;
    --primary: #4BA8FF;
    --secondary: #63DCBE;
    --muted: #64748B;
    --error: #FF6B6B;
    --warning: #FFD93D;
    --white: #FFFFFF;
}

.logo-image {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.hero-logo {
    height: 72px; 
    width: auto;
    object-fit: contain;
    margin: 16px 0 16px;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.mono { font-family: 'Space Mono', monospace; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.w-full { width: 100%; }

h1, h2, h3, p { margin: 0; }
.mono-subtitle { color: var(--primary); letter-spacing: 2px; font-size: 12px; font-family: 'Space Mono', monospace; }
.section-title { font-size: 32px; font-weight: 800; }
.section-desc { color: var(--muted); font-size: 16px; margin-top: 16px; line-height: 1.5; }

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-padding { padding: 80px 24px; }
.text-center { text-align: center; }

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}
.orb-top {
    top: -150px; left: -200px;
    width: 600px; height: 600px;
    background: rgba(75, 168, 255, 0.03);
}
.orb-bottom {
    bottom: 50px; right: -150px;
    width: 500px; height: 500px;
    background: rgba(99, 220, 190, 0.02); 
}

.navbar {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1152px;
    margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { color: var(--primary); }
.logo-text { font-size: 20px; font-weight: 700; color: var(--white); }
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    margin: 0 8px;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; gap: 12px; align-items: center; }

.btn-text { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600; }
.btn-text:hover { color: var(--white); }
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); }
.btn-large { padding: 16px 32px; font-size: 16px; border-radius: 12px; }

.glass-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}
.glass-title { font-weight: 700; }
.muted-title { color: var(--muted); font-size: 12px; }

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    flex-wrap: wrap;
    gap: 48px;
}
.hero-content { max-width: 500px; }
.hero-title { font-size: 56px; font-weight: 800; line-height: 1.1; margin: 16px 0 8px; }
.hero-subtitle { color: var(--muted); font-size: 24px; font-weight: 300; margin-bottom: 16px; }
.hero-buttons { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-visual { width: 400px; }

.stat-row { display: flex; justify-content: space-between; margin-top: 16px; }
.stat-card {
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}
.stat-label { color: var(--accent); font-size: 10px; font-family: 'Space Mono', monospace; margin-bottom: 4px; }
.stat-value { font-size: 18px; font-weight: 700; }
.stock-row { display: flex; align-items: center; margin-bottom: 8px; }
.stock-name { width: 60px; color: var(--muted); font-size: 12px; }
.bar-track { flex: 1; height: 20px; background: var(--surface-color); border-radius: 4px; margin: 0 12px; }
.bar-fill { height: 100%; border-radius: 4px; opacity: 0.8; }
.stock-count { width: 40px; text-align: right; font-size: 12px; font-weight: 700; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}
.feature-card { width: 100%; max-width: 320px; text-align: left; }
.feature-icon {
    display: inline-flex;
    padding: 12px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
    border-radius: 12px;
    color: var(--accent);
    margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.split-section { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.split-section.reverse { flex-direction: row-reverse; }
.split-content { flex: 1; min-width: 300px; }
.split-visual { flex: 1; min-width: 350px; }

.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.icon-check { color: var(--primary); font-size: 20px; }

.inventory-header { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }
.divider { border: 0; border-top: 1px solid var(--border-color); margin: 16px 0; }
.inventory-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.inv-name { flex: 2; font-size: 14px; }
.inv-stock { flex: 1; font-size: 14px; }
.inv-status { padding: 4px 8px; border-radius: 12px; font-size: 10px; font-weight: 700; }
.status-primary { background: rgba(75, 168, 255, 0.15); color: var(--primary); }
.status-error { background: rgba(255, 107, 107, 0.15); color: var(--error); }

.chat-header { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 40px; height: 40px; background: rgba(75, 168, 255, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.chat-name { font-weight: 700; }
.chat-role { color: var(--muted); font-size: 12px; }
.chat-row { display: flex; margin-bottom: 16px; align-items: flex-start; }
.chat-row.right { justify-content: flex-end; }
.chat-avatar-small { width: 24px; height: 24px; border-radius: 50%; margin-right: 8px; margin-top: 4px; }
.bubble { max-width: 250px; padding: 12px; border-radius: 12px; border: 1px solid; }
.bubble-left { background: var(--surface-color); border-color: var(--border-color); }
.bubble-right { background: rgba(75, 168, 255, 0.15); border-color: rgba(75, 168, 255, 0.3); }
.bubble-sender { font-size: 10px; font-family: 'Space Mono', monospace; display: block; margin-bottom: 4px; }
.bubble p { font-size: 14px; }
.chat-input { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 12px; }
.input-placeholder { color: var(--muted); font-size: 14px; }
.send-icon { color: var(--primary); font-size: 18px; }

.pricing-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.pricing-card { width: 300px; padding: 24px; background: var(--surface-color); border: 1px solid var(--border-color); border-radius: 16px; text-align: left; }
.pricing-card.highlighted { background: rgba(75, 168, 255, 0.05); border-color: rgba(75, 168, 255, 0.4); }
.pricing-card h3 { font-weight: 700; margin-bottom: 8px; }
.price { font-size: 32px; font-weight: 800; }
.price span { font-size: 14px; color: var(--muted); font-weight: 400; }
.price-desc { color: var(--muted); font-size: 14px; margin-top: 8px; }

footer { text-align: center; padding: 48px; border-top: 1px solid var(--border-color); color: var(--muted); font-size: 12px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-visual, .split-visual { width: 100%; min-width: 100%; }
}