﻿@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg-dark: #0b0f19;
    --bg-card: #151b2b;
    --primary: #00f260; /* Neon Green/Cyan blend logic */
    --primary-grad: linear-gradient(135deg, #00f260 0%, #0575e6 100%);
    --accent: #0575e6;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --glow: 0 0 20px rgba(5, 117, 230, 0.4);
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

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

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

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

/* Header */
.main-header {
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-head);
    font-weight: 700; font-size: 1.4rem;
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo img { width: 35px; height: 35px; }

.nav-links a { margin-left: 30px; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.nav-links a:hover { color: var(--primary); text-shadow: 0 0 10px rgba(0, 242, 96, 0.5); }

.btn-glow {
    background: var(--primary-grad);
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-head);
    border: none;
    cursor: pointer;
    box-shadow: var(--glow);
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(5, 117, 230, 0.6); }

/* Hero */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, #1a2336 0%, var(--bg-dark) 70%);
    position: relative;
}

.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('grid.png'); /* Optional grid pattern */
    opacity: 0.1; pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative; z-index: 2;
}

.hero-text h1 {
    font-family: var(--font-head);
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero-text span { color: #00f260; }

.hero-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; }

.hero-img {
    width: 100%; height: 500px;
    background: #151b2b;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.hero-img-inner { width: 100%; height: 100%; background: url('hero-ai.jpg') center/cover; opacity: 0.8; }

/* Stats Strip */
.stats-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 30px 0;
    background: rgba(255,255,255,0.02);
}
.stats-grid { display: flex; justify-content: space-around; text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--text-main); font-weight: 700; }
.stat-desc { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Features */
.section { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 70px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 15px; }
.section-head p { color: var(--text-muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: 0.3s;
}
.feature-card:hover {
    border-color: #0575e6;
    transform: translateY(-5px);
    box-shadow: var(--glow);
}
.icon { font-size: 2rem; margin-bottom: 20px; background: var(--primary-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.feature-card h3 { font-family: var(--font-head); margin-bottom: 15px; font-size: 1.3rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Bridge/Article Teaser */
.bridge { background: #0f1420; border-top: 1px solid var(--border); }
.bridge-layout { display: flex; align-items: center; gap: 60px; }
.bridge-img { flex: 1; height: 400px; border-radius: 8px; overflow: hidden; position: relative; }
.bridge-img div { width: 100%; height: 100%; background: url('bridge-data.jpg') center/cover; transition: 0.5s; }
.bridge-img:hover div { transform: scale(1.05); }
.bridge-content { flex: 1; }
.tag { background: rgba(0, 242, 96, 0.1); color: #00f260; padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; display: inline-block; }

/* Form Section */
.cta-section { background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1526 100%); position: relative; }
.form-box {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    text-align: center;
}
.form-box h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; }
.form-input {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border);
    padding: 15px;
    margin-bottom: 15px;
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
}
.form-input:focus { outline: none; border-color: #0575e6; }
.form-legal { font-size: 0.75rem; color: var(--text-muted); margin-top: 15px; text-align: left; }
.form-legal a { text-decoration: underline; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 80px 0 30px; background: #080b12; color: var(--text-muted); }
.footer-row { display: flex; justify-content: space-between; margin-bottom: 50px; }
.footer-col h4 { color: #fff; margin-bottom: 20px; font-family: var(--font-head); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: #00f260; }
.copyright { text-align: center; border-top: 1px solid var(--border); padding-top: 20px; font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
    .hero-content, .bridge-layout, .footer-row { grid-template-columns: 1fr; flex-direction: column; }
    .hero-text h1 { font-size: 2.5rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-img { height: 300px; order: -1; }
}

/* Article Styles */
.article-page { max-width: 800px; margin: 120px auto; padding: 0 24px; }
.article-title { font-family: var(--font-head); font-size: 2.8rem; line-height: 1.2; margin-bottom: 20px; }
.article-meta { border-left: 3px solid #00f260; padding-left: 15px; color: var(--text-muted); margin-bottom: 40px; }
.article-body { font-size: 1.1rem; color: #cbd5e1; }
.article-body h2 { font-family: var(--font-head); color: #fff; margin: 40px 0 20px; font-size: 1.8rem; }
.article-body p { margin-bottom: 20px; }
.highlight-box { background: rgba(5, 117, 230, 0.1); border: 1px solid #0575e6; padding: 25px; border-radius: 8px; margin: 30px 0; }
