/* Apple-Style About Page Redesign */

:root {
    --bg-color: #ffffff;
    --bg-secondary: #f5f5f7;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --accent-color: #0071e3;
    --card-bg: #ffffff;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --border-radius-lg: 28px;
    --border-radius-md: 18px;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.about-container {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    overflow-x: hidden;
    padding-bottom: 60px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fade-in-up {
    opacity: 0; /* JS usually triggers this, but we'll just run it with delay or immediately for simplicity in pure CSS context */
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

/* Typography Basics */
h1, h2, h3, h4, h5 {
    margin: 0;
    font-family: var(--font-heading);
}

.section-eyebrow {
    font-size: 17px; /* 21px in some contexts, 12/14 small caps in others. Let's go generic section header style */
    line-height: 1.23536;
    font-weight: 600;
    letter-spacing: -0.022em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase; /* Optional, but common for eyebrows */
    letter-spacing: 0.05em;
    font-size: 12px;
    text-align: center;
}

.section-headline {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.005em;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
}

/* Section Common */
.section-block {
    padding: 60px 0;
    max-width: 980px;
    margin: 0 auto;
}

.section-content {
    max-width: 100%;
}

.section-text {
    font-size: 21px; /* Large readable body text */
    line-height: 1.4;
    font-weight: 400;
    color: var(--text-secondary); /* A bit softer than black */
    max-width: 700px;
    margin: auto;
    margin-bottom: 24px;
    text-align: center;
}

.mission-section {
    text-align: center;
    display: flex;
    justify-content: center;

    .section-content {
/*       box-shadow: 1px 1px 30px -10px #00000033;
        border-radius: 28px;
        padding: 60px;
        background-color: #fff;*/ 
    }
}



.center-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero-section {
    padding: 80px 20px 60px;
    text-align: center;
}

.hero-title {
    font-size: 64px; /* Big hero text */
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 28px;
    line-height: 1.14286;
    font-weight: 400;
    letter-spacing: .007em;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.bento-card {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    transition: transform 0.3s cubic-bezier(0,0,0.5,1);
}

.bento-card:hover {
    transform: scale(1.02);
}

.large-card {
    grid-column: span 1;
    grid-row: span 2;
}

.full-width-card {
    grid-column: 1 / -1;
}

.bento-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 20px;
    color: var(--text-primary);
}

.bento-card p {
    font-size: 17px;
    color: var(--text-secondary);
    margin: 0;
}

.bento-card .feature-text {
    margin: 10px 0;


    b {
        font-weight: 600;
    }
}

    .bento-card .feature-text a {
        margin-left: auto;
        white-space: nowrap;
        background-color: #0071e3;
        color: #fff;
        border-radius: 50px;
        padding: 4px 10px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
    }



.card-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.coming-soon {
    display: inline-block;
    font-size: 11px;
    line-height: normal;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 99px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateY(-2px);
}

/* Tech Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #d2d2d7;
    padding-top: 40px;
}

.tech-item h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tech-item p {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Leadership */
.profile-card {
    background: var(--bg-secondary);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

.profile-info h4 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-info .role {
    display: block;
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.profile-info p {
    font-size: 19px;
    line-height: 1.4;
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-primary);
}

.link-arrow {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.link-arrow:hover {
    text-decoration: underline;
}

/* CTA */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--bg-secondary);
    margin-top: 60px;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.button-primary {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 980px; /* Pill shape */
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: inline-block;
}

.button-primary:hover {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .about-container{
        padding: 0 10px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 21px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .large-card {
        grid-row: auto;
    }
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .section-headline {
        font-size: 32px;
    }
    .cta-content h2 {
        font-size: 36px;
    }
    .profile-card {
        padding: 30px;
    }
}
