/* About Page — Editorial Typography Design */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Hero ────────────────────────────────────── */
.about-hero {
    background: #0f172a;
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(37, 99, 235, 0.15), transparent),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(118, 75, 162, 0.1), transparent);
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 750px;
}

.about-hero h1 em {
    font-style: italic;
    color: #60a5fa;
}

.about-hero-sub {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── Shared Eyebrow ─────────────────────────── */
.about-section-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* ── CTA Button ─────────────────────────────── */
.about-cta-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 2px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.about-cta-btn.dark {
    background: #0f172a;
}

.about-cta-btn.dark:hover {
    background: #2563eb;
}

/* ── Team Section ───────────────────────────── */
.about-team {
    padding: 100px 0;
    background: #f8fafc;
}

.about-team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-team-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 0;
}

.about-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-team-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease;
}

.about-team-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-team-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 2.5rem 0;
}

.about-team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    object-fit: cover;
    flex-shrink: 0;
}

.about-team-card-header h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 0.35rem;
    line-height: 1.2;
}

.about-team-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2563eb;
    font-weight: 500;
    margin: 0;
}

.about-team-card-body {
    padding: 2rem 2.5rem 2.5rem;
}

.about-team-card-body p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.about-team-card-body h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.about-team-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.about-team-card-body li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-team-card-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border: 1.5px solid #2563eb;
    border-radius: 50%;
}

/* ── Our Story (Dark) ───────────────────────── */
.about-story {
    padding: 100px 0;
    background: #0f172a;
    color: white;
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.about-story::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-story-left .about-section-eyebrow {
    color: #60a5fa;
}

.about-story-left h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-left p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.about-story-right h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-diff-list li {
    padding: 1.25rem 0 1.25rem 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-diff-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-diff-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.55rem;
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 2px;
    transform: rotate(45deg);
}

.about-diff-list li strong {
    display: block;
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.about-diff-list li span {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ── Mission & Values ───────────────────────── */
.about-mission {
    padding: 100px 0;
    background: white;
}

.about-mission-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.about-mission-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.about-mission-statement {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-value {
    padding: 2rem;
    padding-left: 2.5rem;
    position: relative;
}

.about-value::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2rem;
    bottom: 2rem;
    width: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.about-value h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.about-value p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Testimonial (Dark) ─────────────────────── */
.about-testimonial {
    background: #0f172a;
    color: white;
    padding: 80px 0;
    position: relative;
}

.about-testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.about-testimonial-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-testimonial-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 2rem;
}

.about-testimonial blockquote {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 0 2rem;
}

.about-testimonial cite {
    font-style: normal;
    color: #94a3b8;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 1.5rem;
}

.about-testimonial-results {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-testimonial-results span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #60a5fa;
    letter-spacing: 0.5px;
}

/* ── Bottom CTA ─────────────────────────────── */
.about-bottom-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.about-bottom-cta h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #0f172a;
    margin-bottom: 1rem;
}

.about-bottom-cta p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ── Animations ─────────────────────────────── */
@keyframes aboutFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-hero .container > * {
    animation: aboutFadeUp 0.8s ease-out both;
}

.about-hero .container > *:nth-child(1) { animation-delay: 0s; }
.about-hero .container > *:nth-child(2) { animation-delay: 0.1s; }
.about-hero .container > *:nth-child(3) { animation-delay: 0.2s; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .about-team-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-team {
        padding: 60px 0;
    }

    .about-story {
        padding: 60px 0;
    }

    .about-mission {
        padding: 60px 0;
    }

    .about-team-card-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 2rem 0;
    }

    .about-team-card-body {
        padding: 1.5rem 2rem 2rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-testimonial blockquote {
        font-size: 1.25rem;
    }

    .about-testimonial-results {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

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

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

    .about-team-photo {
        width: 100px;
        height: 100px;
    }

    .about-team-card-header h3 {
        font-size: 1.3rem;
    }

    .about-story-left h2 {
        font-size: 1.8rem;
    }
}
