/* Apple-Inspired Design System */
:root {
    /* Colors */
    --primary: #bdcd00;
    --primary-dark: #a8b800;
    --secondary: #33665a;
    --secondary-dark: #254a41;
    --text-main: #1d1d1f;
    --text-light: #86868b;
    --bg-body: #fbfbfd;
    --bg-grey: #f5f5f7;
    --white: #ffffff;

    /* Glassmorphism */
    --glass: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.5);
    --blur: 20px;

    /* Shadows & Radius */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Typography */
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-grey {
    background-color: var(--bg-grey);
}

.bg-dark {
    background-color: #111;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-light {
    color: var(--text-light);
}

.mb-large {
    margin-bottom: 60px;
}

.mt-medium {
    margin-top: 40px;
}

.mt-large {
    margin-top: 60px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Components */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--secondary-dark);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.glass {
    background: var(--glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--glass-border);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(var(--blur));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.glass-white {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-white:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.glass-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 60px;
}

/* About Section - New Design */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(51, 102, 90, 0.1), rgba(189, 205, 0, 0.15));
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content .section-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.about-content .section-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-socials {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 12px;
}

.nav-social {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    color: var(--secondary);
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nav-social:hover {
    transform: translateY(-3px);
    background: var(--secondary);
    color: var(--white);
}

@media (max-width: 768px) {
    .nav-socials { display: none; }
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--text-main);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem !important;
}

.btn-nav:hover {
    background: var(--secondary);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    /* Navbar offset */
    background: radial-gradient(circle at 80% 20%, rgba(189, 205, 0, 0.15), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(51, 102, 90, 0.1), transparent 40%);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Bento Grid - Legacy (unused) */

/* Objectives Grid - New Design */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.objective-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.objective-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.objective-card:hover::before {
    transform: scaleX(1);
}

.objective-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(189, 205, 0, 0.15);
    line-height: 1;
    letter-spacing: -0.05em;
}

.objective-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(51, 102, 90, 0.1), rgba(189, 205, 0, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.objective-card:hover .objective-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(51, 102, 90, 0.2), rgba(189, 205, 0, 0.3));
}

.objective-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 700;
}

.objective-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Audience Grid - New Design */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.audience-label {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Contact Section - New Design */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.contact-info .section-text {
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primary);
}

.contact-icon {
    font-size: 1.5rem;
}

.cta-card {
    text-align: center;
    padding: 48px 40px;
}

.cta-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-card .social-links {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--secondary-dark);
    transform: scale(1.1);
}

/* Floating socials for left of About/Objectives */
.section-socials {
    position: absolute;
    left: -74px;
    top: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1200;
}

.section-socials .social-floating {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    color: var(--secondary);
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.section-socials .social-floating:hover {
    transform: translateY(-4px);
    background: var(--primary);
    color: var(--secondary-dark);
}

@media (max-width: 768px) {
    .section-socials { display: none; }
}

/* Footer */
.footer {
    background: #000;
    color: #888;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #555;
}

.footer-credit a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--white);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    /* Simple hide for now, would need burger menu */

    .section-padding {
        padding: 60px 0;
    }

    .section-header .section-title::after {
        width: 50px;
        margin-top: 16px;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .objective-card {
        padding: 32px 24px;
    }

    .objective-number {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-title {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .audience-card {
        padding: 20px 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .cta-card {
        padding: 32px 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}