html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    /* This ensures sections stop about 80px from the top, 
       leaving room for your sticky nav */
    scroll-margin-top: 80px; 
}

:root {
    --dark-green: #2d361e;
    --off-white: #f7f6f2;
    --text-color: #333;
    --light-gray: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

/* Typography */
h1, h2, h3 {
    font-weight: 300;
    text-transform: none;
}

em {
    font-style: italic;
    font-family: serif; /* Gives that premium look from screenshots */
}

.subtitle, .subtitle-centered {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--light-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.subtitle-centered { text-align: center; }

/* Hero Section */
.hero {
    height: 100vh;
    /* Change 'center center' to 'center top' if the head is being cut off */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('hero-bg.jpg') no-repeat center top / cover;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Update the navigation for sticky behavior */
/* FIXED HEADER & HORIZONTAL ALIGNMENT */
/* RESTORED ORIGINAL STYLING */
nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem; /* Restored original spacing */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent; /* Ensures it starts transparent */
    transition: all 0.4s ease-in-out;
}

/* Original White Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #ffffff; /* Explicit white */
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 300;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

/* Original White Logo */
.logo {
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-weight: 400;
}

/* Original White Button */
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1.8rem;
    color: #ffffff !important;
}

/* SCROLLED STATE - Only activates when moving down */
nav.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1rem 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

nav.scrolled .nav-links a,
nav.scrolled .logo {
    color: #2d361e; /* Changes to brand green when white background appears */
}

nav.scrolled .btn-outline {
    border-color: #2d361e;
    color: #2d361e !important;
}.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 { font-size: 4rem; }
.hero-content p { font-size: 1.1rem; margin-top: 1rem; opacity: 0.9; }

/* Story Section */
.story-section {
    display: flex;
    padding: 8rem 4rem;
    gap: 4rem;
    align-items: center;
}

.story-text { flex: 1; }
.story-image { flex: 1; }
.story-image img { width: 100%; filter: grayscale(100%); }

.story-text h2 { font-size: 3rem; margin-bottom: 2rem; }
.story-text p { margin-bottom: 1.5rem; color: #555; }

.short-hr { width: 50px; border: 0; border-top: 1px solid #000; margin: 2rem 0; }
.quote { font-style: italic; font-size: 0.9rem; color: #888; }

/* Experts Grid */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 4rem;
    text-align: center;
}

.expert .num { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.expert hr { width: 30px; margin: 1rem auto; border-top: 1px solid #ccc; }
.expert p { font-size: 0.7rem; letter-spacing: 1px; color: #999; }

/* Dark Section */
.dark-section {
    background-color: var(--dark-green);
    color: white;
    padding: 8rem 4rem;
}

.centered-h2 { text-align: center; font-size: 3rem; margin-bottom: 5rem; }

.mission-vision {
    display: flex;
    gap: 6rem;
    max-width: 1000px;
    margin: 0 auto 6rem;
}

.mission-vision h3 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.mission-vision p { font-size: 0.95rem; opacity: 0.8; }

.footer-pillars {
    display: flex;
    justify-content: space-around;
    border-top: 0.5px solid rgba(255,255,255,0.2);
    padding-top: 4rem;
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* Innovation Section */
.innovation-section {
    background-color: var(--off-white);
    padding: 8rem 4rem;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inn-item h3 { margin: 1rem 0; font-size: 1.2rem; }
.inn-item p { font-size: 0.85rem; color: #666; }

/* Footer */
/* Footer Adjustments */
/* White CTA Section */
.footer-cta {
    padding: 10rem 4rem 6rem;
    text-align: center;
    background-color: #fff;
}

.footer-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 300;
}

.footer-cta .join-text {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-cta .email a {
    font-size: 2.2rem;
    color: #333;
    text-decoration: none;
    font-weight: 300;
}

/* Dark Green Footer Block (Matching Screenshot 10) */
.footer-dark {
    background-color: #2d361e; /* The dark olive green from your brand colors */
    color: #f7f6f2;
    padding: 6rem 4rem 3rem;
    text-align: center;
}

.launch-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-pill-tags {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-legal-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

/* Copyright Statement Styling */
.footer-copyright-statement {
    margin-top: 3rem;
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5); /* Subtle white for a premium look */
    line-height: 1.8;
}

.footer-copyright-statement .tagline {
    font-style: italic;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Adjusting the legal bar to accommodate new text */
.footer-legal-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Responsive Fix */
/* MOBILE RESPONSIVENESS */

@media (max-width: 768px) {
    /* Ensure the copyright text doesn't become tiny */
    .footer-copyright-statement p {
        font-size: 0.55rem !important;
        line-height: 2;
        padding: 0 20px;
    }

    .footer-copyright-statement .tagline {
        font-size: 0.75rem !important;
        margin-top: 15px !important;
    }

    /* Stack the experts grid to 1 column for phones */
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Adjust the main Hero text for readability */
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

}

}