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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #0066cc;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: auto;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo-img {
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.btn-connect {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-connect:hover {
    background-color: #333;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 80px;
    padding: 0;
    min-height: calc(100vh - 80px);
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(45, 45, 45, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 3;
    padding: 40px 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 20px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.title-line-large {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.text-content p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Built Section */
.section-built {
    background-color: var(--bg-white);
}

/* Partners Section */
.section-partners {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Team Image Section */
.section-team-image {
    padding: 0;
}

.team-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Autonomy Section */
.section-autonomy {
    background-color: var(--bg-white);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.option-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.option-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.option-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* Stats Section */
.section-stats {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.stat-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Scaling Section */
.section-scaling {
    background-color: var(--bg-white);
}

.section-intro {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 900px;
}

.section-intro strong {
    color: var(--text-dark);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Mission Section */
.section-mission {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--secondary-color);
    padding: 100px 0;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content .section-title {
    margin-bottom: 30px;
}

.mission-content .title-line {
    color: rgba(255, 255, 255, 0.7);
}

.mission-content .title-line-large {
    color: var(--secondary-color);
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.mission-text strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-list a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .btn-connect {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        min-height: calc(100vh - 70px);
        height: calc(100vh - 70px);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .title-line-large {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: calc(100vh - 70px);
        height: calc(100vh - 70px);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .title-line-large {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

/* Page-Specific Styles */
.page-hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--secondary-color);
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.page-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.mission-statement {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.feature-item {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.approach-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Benefits List */
.benefits-list {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.benefit-item strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Differentiators */
.differentiators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.differentiator-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.differentiator-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.differentiator-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Highlight Section */
.highlight-section {
    background-color: var(--bg-light);
    padding: 60px;
    border-radius: 8px;
    margin: 60px 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--secondary-color);
    border-radius: 8px;
    margin: 60px 0;
}

.cta-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.story-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.story-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.story-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
    font-style: italic;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.criterion-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.criterion-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.criterion-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Jobs List */
.jobs-list {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.job-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.job-location {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.job-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Culture Grid */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.culture-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.culture-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.culture-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Qualities List */
.qualities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.quality-item {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.quality-item strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.quality-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* News List */
.news-list {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.news-item {
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-bottom: 3px solid var(--accent-color);
}

.news-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-item h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.news-excerpt {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Active Nav Link */
.nav-list a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive Updates for New Pages */
@media (max-width: 1024px) {
    .features-showcase,
    .approach-grid,
    .values-grid,
    .differentiators,
    .stories-grid,
    .criteria-grid,
    .culture-grid,
    .qualities-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 42px;
    }
    
    .page-subtitle {
        font-size: 20px;
    }
    
    .content-section h2 {
        font-size: 32px;
    }
    
    .highlight-section,
    .cta-section {
        padding: 40px 20px;
    }
}