.about-page {
    background: #f5f8ff;
    color: #0f172a;
}

.about-hero {
    position: relative;
    overflow: hidden;
    min-height: 74vh;
    display: flex;
    align-items: flex-end;
    padding: 9.5rem 1.5rem 5rem;
    background:
        radial-gradient(120% 130% at 80% 8%, rgba(130, 253, 40, 0.2) 0%, rgba(130, 253, 40, 0) 42%),
        radial-gradient(100% 120% at 10% 100%, rgba(36, 72, 255, 0.42) 0%, rgba(36, 72, 255, 0) 48%),
        #04112a;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 17, 42, 0.06) 0%, rgba(4, 17, 42, 0.62) 100%);
    pointer-events: none;
}

.about-hero-shell {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1.25rem;
}

.about-title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 auto 1.1rem;
    max-width: 16ch;
}

.about-lead {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 62ch;
    margin: 0 auto 1.8rem;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
}

.about-story,
.about-values,
.about-team {
    padding: 5.5rem 1.5rem;
}

.about-story {
    background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
}

.about-shell {
    max-width: 80rem;
    margin: 0 auto;
}

.about-story-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-story-card {
    border: 1px solid rgba(36, 72, 255, 0.12);
    border-radius: 1.25rem;
    background: #ffffff;
    padding: 1.6rem;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.about-story-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #10254f;
    margin-bottom: 0.65rem;
}

.about-story-card p {
    color: #4b5b77;
    line-height: 1.75;
}

.about-values {
    background: #ffffff;
}

.about-values-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-value-card {
    position: relative;
    border-radius: 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fbff;
    padding: 1.45rem;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.about-value-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.9rem;
    background: #2448ff;
    color: #ffffff;
    margin-bottom: 0.85rem;
}

.about-value-card h3 {
    font-size: 1.06rem;
    font-weight: 700;
    color: #10254f;
    margin-bottom: 0.45rem;
}

.about-value-card p {
    color: #4f607f;
    line-height: 1.65;
    font-size: 0.95rem;
}

.about-team {
    background: linear-gradient(180deg, #f6f8fe 0%, #f0f5ff 100%);
}

.about-team-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-member {
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #ffffff;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
    scroll-margin-top: 7.5rem;
}

.about-member-photo {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    display: block;
}

.about-member-body {
    padding: 1.25rem;
}

.about-member-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: #10254f;
    margin-bottom: 0.35rem;
}

.about-member-role {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #2448ff;
    margin-bottom: 0.6rem;
}

.about-member-bio {
    color: #4d5d79;
    line-height: 1.68;
    font-size: 0.92rem;
}

@media (max-width: 1024px) {
    .about-values-grid,
    .about-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
.about-story-grid,
.about-values-grid,
    .about-team-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-title {
        max-width: 19ch;
    }

    .about-hero {
        padding-top: 8.2rem;
        min-height: 68vh;
    }
}

@media (max-width: 640px) {
    .about-value-card {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.25rem 1rem;
        align-items: center;
        padding: 1.25rem;
    }

    .about-value-icon {
        margin-bottom: 0;
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .about-value-card h3 {
        margin-bottom: 0;
        font-size: 1rem;
    }

    .about-value-card p {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
        font-size: 0.88rem;
    }

    .about-member-body {
        padding: 1rem;
    }

    .about-member-name {
        font-size: 1rem;
    }

    .about-member-bio {
        font-size: 0.88rem;
    }
}
