/* --- Global Configuration --- */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0b10;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* --- Navigation --- */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(10, 11, 16, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1f222e;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

.logo span { color: #3a86ff; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #adb5bd;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
}

/* --- Hero & Typography --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center, #1c2541 0%, #0a0b10 100%);
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }

.highlight { color: #3a86ff; }

.elevator-pitch {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto 1rem;
}

.mission-statement {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-style: italic;
}

/* --- Sections & Cards --- */
.content-section { padding: 6rem 0; }

#foundation {
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
}

.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card, .bio, .contact-wrapper {
    background: #161b22;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #30363d;
}

.foundation-title { color: #10b981; margin-bottom: 1rem; }

.bio .title { color: #3a86ff; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }

/* --- Buttons --- */
.btn-primary, .btn-secondary, .btn-small {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary { background: #3a86ff; color: #fff; }
.btn-secondary { border: 1px solid #3a86ff; color: #3a86ff; margin-left: 10px; }
.btn-small { background: #3a86ff; color: #fff; padding: 8px 15px; font-size: 0.8rem; }

/* --- Forms --- */
.contact-form .form-group { display: flex; gap: 1rem; margin-bottom: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 15px; background: #0a0b10; border: 1px solid #30363d; color: #fff; border-radius: 5px;
}

/* --- Footer --- */
footer { padding: 4rem 0; text-align: center; background: #0d1117; }
.disclaimer { font-size: 0.8rem; color: #6e7681; margin-top: 1rem; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .form-group { flex-direction: column; }
}