/* ==================== About Page Styles ==================== */

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-microcopy {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero-cta {
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(1, 91, 217, 0.25);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(1, 91, 217, 0.35);
}

/* Content Sections */
.content-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section.gray-bg {
    background: #f9f9f9;
    max-width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-gray);
}

.content-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Core Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.principle-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--color-think);
}

.principle-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
}

.principle-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.principle-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* Difference Section */
.difference-section {
    max-width: 900px;
    margin: 2rem auto 0;
}

.difference-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--color-think);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.difference-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.difference-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* Engagement Promise */
.engagement-promise {
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 2rem auto;
}

.engagement-promise h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

.engagement-promise p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Core Values */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.value-item {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    border-left: 4px solid var(--color-ai);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Verticals Grid */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.vertical-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--color-think);
}

.vertical-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vertical-icon i {
    font-size: 1.75rem;
    color: white;
}

.vertical-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.vertical-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--color-think);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--color-think), var(--color-ai)) border-box;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-photo i {
    font-size: 3.5rem;
    color: white;
}

.team-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.team-role {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-ai);
    margin-bottom: 1.5rem;
}

.team-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
    text-align: left;
    margin-bottom: 1rem;
}

.team-quote {
    background: linear-gradient(135deg, #f8f9fa, #e8f4f8);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-dark);
    margin-top: 1.5rem;
    border-left: 4px solid var(--color-think);
    text-align: left;
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.status-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--color-think);
    transition: all 0.3s ease;
}

.status-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.status-card.building {
    background: linear-gradient(135deg, #f8f9fa, #e8f4f8);
    border-color: var(--color-ai);
}

.status-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.status-card ul {
    list-style: none;
    padding: 0;
}

.status-card li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.status-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-think);
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-think), var(--color-ai));
    color: white;
    padding: 80px 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: var(--color-think);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
/* ==================== Optional Image Sections ==================== */
/* Journey/Timeline Image */
.journey-image-container {
    max-width: 1000px;
    margin: 0 auto;
}

.journey-image-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(1, 91, 217, 0.05) 0%, rgba(106, 13, 173, 0.05) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.journey-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.journey-image-wrapper:hover .journey-image {
    transform: scale(1.02);
}

.journey-placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(3px);
    border: 3px dashed rgba(1, 91, 217, 0.3);
    margin: 1.5rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.journey-placeholder-overlay i {
    font-size: 4rem;
    color: rgba(1, 91, 217, 0.4);
    margin-bottom: 1.5rem;
}

.journey-placeholder-overlay span {
    font-size: 1.125rem;
    color: rgba(1, 91, 217, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.journey-image-wrapper:hover .journey-placeholder-overlay {
    background: rgba(255, 255, 255, 0.95);
    border-width: 4px;
}

/* Team in Action Grid */
.team-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-action-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.team-action-image-wrapper {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(1, 91, 217, 0.05) 0%, rgba(106, 13, 173, 0.05) 100%);
}

.team-action-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-action-card:hover .team-action-image {
    transform: scale(1.05);
}

.team-action-placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    border: 2px dashed rgba(1, 91, 217, 0.3);
    margin: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    transition: all 0.3s ease;
}

.team-action-placeholder-overlay i {
    font-size: 2.5rem;
    color: rgba(1, 91, 217, 0.4);
    margin-bottom: 1rem;
}

.team-action-placeholder-overlay span {
    font-size: 0.875rem;
    color: rgba(1, 91, 217, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-action-card:hover .team-action-placeholder-overlay {
    background: rgba(255, 255, 255, 0.95);
    border-width: 3px;
}

.team-action-card h3 {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .principles-grid,
    .verticals-grid,
    .team-grid,
    .status-grid {
        grid-template-columns: 1fr;
    }

    .vertical-card {
        flex-direction: column;
        text-align: center;
    }

    .team-bio {
        text-align: center;
    }

    .content-section {
        padding: 60px 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}
