/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8f7f3;
    color: #14223d;
    font-family: 'Source Serif Pro', 'Georgia', serif;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #14223d;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f8f7f3;
    box-shadow: 0 2px 12px rgba(20,34,61,0.04);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #14223d;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #14223d;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #d4af37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #f8f7f3;
    padding: 6rem 0 2rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #14223d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: #14223d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    background: #fff;
    border: 1px solid #e3e6ed;
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(20,34,61,0.04);
}

.stat h3 {
    color: #14223d;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #14223d;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    background: #14223d;
    color: #fff;
    border-radius: 6px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border: none;
    transition: background 0.2s, color 0.2s;
    margin-right: 1rem;
}

.btn-primary {
    background: #14223d;
    color: #fff;
}

.btn-primary:hover {
    background: #d4af37;
    color: #14223d;
}

.btn-secondary {
    background: #fff;
    color: #14223d;
    border: 1px solid #14223d;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #14223d;
    border-color: #d4af37;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    width: 100%;
    height: 300px;
    background: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #14223d;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: #14223d;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #fff;
    border-radius: 18px;
    margin: 2rem 0;
    box-shadow: 0 2px 24px rgba(20,34,61,0.06);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(20,34,61,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e3e6ed;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.about-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-card .icon i {
    font-size: 1.5rem;
    color: white;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #14223d;
}

.about-card p {
    color: #14223d;
    line-height: 1.6;
}

/* Strategy Section */
.strategy {
    padding: 6rem 0;
    background: #fff;
    border-radius: 18px;
    margin: 2rem 0;
    box-shadow: 0 2px 24px rgba(20,34,61,0.06);
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.strategy-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #14223d;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.strategy-text h3:first-child {
    margin-top: 0;
}

.strategy-text p {
    color: #14223d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #14223d;
    margin-bottom: 0.5rem;
}

.step p {
    color: #14223d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Performance Section */
.performance {
    padding: 6rem 0;
    background: #fff;
    border-radius: 18px;
    margin: 2rem 0;
    box-shadow: 0 2px 24px rgba(20,34,61,0.06);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.performance-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(20,34,61,0.04);
    border: 1px solid #e3e6ed;
}

.performance-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #14223d;
    margin-bottom: 2rem;
}

.performance-metrics {
    display: grid;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.metric:last-child {
    border-bottom: none;
}

.metric .label {
    font-weight: 500;
    color: #14223d;
}

.metric .value {
    font-weight: 600;
    font-size: 1.1rem;
}

.value.positive {
    color: #059669;
}

.value.negative {
    color: #dc2626;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: #fff;
    border-radius: 18px;
    margin: 2rem 0;
    box-shadow: 0 2px 24px rgba(20,34,61,0.06);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 12px rgba(20,34,61,0.04);
    border: 1px solid #e3e6ed;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #14223d;
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: #14223d;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: #14223d;
    line-height: 1.6;
}

.team-member .linkedin-btn {
    color: #d4af37;
}

.team-member .linkedin-btn:hover {
    color: #14223d;
}

/* Careers Section */
.careers {
    padding: 6rem 0;
    background: #fff;
    border-radius: 18px;
    margin: 2rem 0;
    box-shadow: 0 2px 24px rgba(20,34,61,0.06);
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.careers-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #14223d;
    margin-bottom: 1rem;
}

.careers-info p {
    color: #14223d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.benefits h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #14223d;
    margin-bottom: 1rem;
}

.benefits ul {
    list-style: none;
}

.benefits li {
    color: #14223d;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}

/* Form Styles */
.application-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(20,34,61,0.04);
    border: 1px solid #e3e6ed;
}

.application-form h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #14223d;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #14223d;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group input[type="file"] {
    padding: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #fff;
    border-radius: 18px;
    margin: 2rem 0;
    box-shadow: 0 2px 24px rgba(20,34,61,0.06);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #14223d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #14223d;
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(20,34,61,0.04);
    border: 1px solid #e3e6ed;
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #14223d;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #f8f7f3;
    color: #14223d;
    padding: 3rem 0 1rem;
    border-top: 1px solid #e3e6ed;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #14223d;
}

.footer-section p {
    color: #14223d;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #14223d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #e3e6ed;
    padding-top: 1rem;
    text-align: center;
    color: #14223d;
}

.footer-social {
    margin-top: 1rem;
}

.footer-social a {
    color: #d4af37;
    margin-right: 0.5rem;
    transition: color 0.2s;
    vertical-align: middle;
}

.footer-social a:hover {
    color: #14223d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .strategy-content {
        grid-template-columns: 1fr;
    }
    
    .careers-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .stat h3 {
        font-size: 1.3rem;
    }
    
    .about, .strategy, .performance, .team, .careers, .contact, .research {
        padding: 2rem 0;
    }
    
    .chart-container {
        height: 180px !important;
    }
    
    #eonLogo {
        width: 120px !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
}

.role-selector {
    margin-bottom: 1.5rem;
}

.role-selector label {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.role-selector select {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

#roleInfo .role-info {
    display: none;
}
#roleInfo .role-info.active {
    display: block;
}

.research {
    padding: 6rem 0;
    background: #fff;
    border-radius: 18px;
    margin: 2rem 0;
    box-shadow: 0 2px 24px rgba(20,34,61,0.06);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.research-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(20,34,61,0.04);
    border: 1px solid #e3e6ed;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.research-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
    transform: translateY(-4px) scale(1.02);
}

.research-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #14223d;
}

.research-card p {
    color: #14223d;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.research-card .btn {
    margin-top: auto;
}

.nyu-uni {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}
.nyu-logo {
    height: 48px;
    width: 48px;
    object-fit: contain;
    display: block;
    margin-bottom: 0.2rem;
}
.nyu-uni span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #57068c;
    letter-spacing: 0.01em;
    text-align: center;
} 