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

html {
    scroll-behavior: smooth;
}

:root {
    --green-primary: #00FF00;
    --green-dark: #00DD00;
    --green-light: #00FF00;
    --dark-bg: #0a0a0a;
    --dark-secondary: #0a0a0a;
    --dark-tertiary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-tertiary);
    padding: 1rem 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 60px;
    width: auto;
}

.nav-brand-text {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--green-primary);
    line-height: 1;
    margin: 0;
    padding: 0;
}

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

.nav-links a {
    color: var(--green-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--green-light);
}

/* Hero Section */
.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(118, 185, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
}


.vision {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.mission {
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}


/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-title-green {
    color: var(--green-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--green-primary);
}

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

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

.vision-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--dark-bg);
    border: 1px solid var(--green-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.15);
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.vision-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 6rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--dark-bg);
    border: 1px solid var(--green-primary);
    border-radius: 16px;
    padding: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(118, 185, 0, 0.15);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card.featured-product {
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.1);
}

.product-card.featured-product::before {
    transform: scaleX(1);
    height: 3px;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.product-badge.enterprise {
    background: rgba(118, 185, 0, 0.15);
    color: var(--green-primary);
    border: 1px solid var(--green-primary);
}

.product-badge.consumer {
    background: rgba(118, 185, 0, 0.1);
    color: var(--green-light);
    border: 1px solid var(--green-light);
}

.product-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-stage {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 255, 0, 0.05);
    border-left: 3px solid var(--green-primary);
    border-radius: 4px;
}

.product-stage h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stage-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stage-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 0;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green-primary);
    font-weight: bold;
}

.product-features strong {
    color: var(--text-primary);
}

.product-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 255, 0, 0.03);
    border: 1px solid rgba(0, 255, 0, 0.15);
    border-radius: 8px;
}

.metric {
    text-align: center;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-primary);
    line-height: 1.1;
    min-height: 3.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--green-primary);
    color: var(--dark-bg);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-demo svg {
    width: 20px;
    height: 20px;
}

.btn-demo:hover {
    background: var(--green-light);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(118, 185, 0, 0.3);
}

/* Why AGI Section */
.why-agi {
    padding: 6rem 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--green-primary);
}

.agi-reasoning {
    max-width: 900px;
    margin: 0 auto;
}

.agi-point {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.agi-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-primary);
    line-height: 1;
    min-width: 80px;
}

.agi-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.agi-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--dark-bg);
    border: 1px solid var(--green-primary);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--green-primary);
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--green-light);
}

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

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid var(--green-primary);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--green-primary);
}

.contact-info {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-location {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--green-primary);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .brand {
        font-size: 2.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .vision {
        font-size: 2rem;
    }

    .mission {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .vision-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .agi-point {
        flex-direction: column;
        gap: 1rem;
    }

    .agi-number {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-metrics {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 2rem;
    }
}
