/* About Us — page-specific styles */

.about-hero {
    min-height: clamp(22rem, 58vh, 38rem);
    padding-top: 4.5rem;
    padding-bottom: 5rem;
    color: #fff;
}

.about-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem;
    }
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.5rem;
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.about-hero__badge-dot {
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #f5dfad;
    box-shadow: 0 0 0 2px rgba(245, 223, 173, 0.35);
}

.about-hero__title {
    margin: 0 0 1.35rem;
    max-width: 34rem;
    font-size: clamp(2rem, 3.2vw + 0.85rem, 2.85rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: #fff;
}

.about-hero__lead {
    margin: 0 0 2rem;
    max-width: 36rem;
    font-size: clamp(1rem, 0.55vw + 0.92rem, 1.125rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .about-hero__actions {
        gap: 1rem;
    }
}

.about-hero__panel {
    padding: 1.75rem 1.5rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 18px 42px rgba(15, 23, 42, 0.08);
}

@media (min-width: 576px) {
    .about-hero__panel {
        padding: 2rem 1.75rem 1.65rem;
    }
}

.about-hero__panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.about-hero__panel-title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.25rem, 1.2vw + 0.95rem, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
}

.about-hero__panel-lead {
    margin: 0;
    max-width: 18rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
}

.about-hero__panel-seal {
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(245, 223, 173, 0.35);
}

.about-hero__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-hero__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.9rem 1rem;
    background: #eef4fb;
    border-radius: 14px;
}

.about-hero__highlight-badge {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
    background: #e2e8f0;
    border-radius: 50%;
}

.about-hero__highlight-title {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.about-hero__highlight-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.about-section {
    padding: 4rem 0 5rem;
}

/* Who we are */

.about-who {
    background: #fff;
}

.about-who__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 992px) {
    .about-who__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem;
    }
}

.about-who__kicker {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2563eb;
}

.about-who__title {
    margin: 0 0 1.25rem;
    max-width: 34rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(1.85rem, 2.4vw + 0.85rem, 2.65rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.about-who__intro {
    margin: 0 0 1.75rem;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

.about-who__note {
    padding: 1.75rem 1.5rem;
    background: #f7f7f5;
    border-radius: 18px;
}

.about-who__note p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #475569;
}

.about-who__note p + p {
    margin-top: 1.15rem;
}

.about-who__panel {
    position: relative;
    overflow: hidden;
    padding: 2rem 1.75rem 1.85rem;
    background: linear-gradient(165deg, #0b213f 0%, #102a43 52%, #0f2740 100%);
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(11, 33, 63, 0.22);
}

.about-who__panel::after {
    content: "";
    position: absolute;
    width: min(18rem, 55vw);
    height: min(18rem, 55vw);
    right: -5.5rem;
    bottom: -8rem;
    border: 1px solid rgba(147, 197, 253, 0.22);
    border-radius: 50%;
    pointer-events: none;
}

.about-who__panel-title,
.about-who__panel-lead,
.about-who__values {
    position: relative;
    z-index: 1;
}

.about-who__panel-title {
    margin: 0 0 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(1.35rem, 1.4vw + 0.95rem, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.about-who__panel-lead {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.about-who__values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 576px) {
    .about-who__values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.about-who__value {
    padding: 1rem 1rem 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
}

.about-who__value-title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
}

.about-who__value-text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

/* Mission & values */

.about-mission {
    background: #f4f8fc;
}

.about-mission__head {
    max-width: 44rem;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.about-mission__kicker {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2563eb;
}

.about-mission__title {
    margin: 0 0 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(1.75rem, 2.2vw + 0.85rem, 2.35rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.about-mission__intro {
    margin: 0 auto;
    max-width: 40rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #475569;
}

.about-mission__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

@media (min-width: 992px) {
    .about-mission__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.about-mission-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.65rem 1.5rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.about-mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #93c5fd 100%);
}

.about-mission-card__label {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #475569;
}

.about-mission-card__label-rule {
    flex: 1;
    max-width: 2.5rem;
    height: 2px;
    background: #2563eb;
}

.about-mission-card__title {
    margin: 0 0 0.85rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.about-mission-card__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
}

.about-mission__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-mission__tag {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
}

/* What we do */

.about-areas {
    background: #fff;
}

.about-areas__head {
    max-width: 40rem;
    margin: 0 0 2.5rem;
}

.about-areas__kicker {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2563eb;
}

.about-areas__title {
    margin: 0 0 0.85rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(1.75rem, 2.2vw + 0.85rem, 2.35rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.about-areas__intro {
    margin: 0;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #475569;
}

.about-areas__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .about-areas__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.about-areas-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
    padding: 1.35rem 1.25rem;
    background: #f4f8fc;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
}

.about-areas-card__index {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: #0b213f;
    border-radius: 10px;
}

.about-areas-card__title {
    margin: 0 0 0.45rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.about-areas-card__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #64748b;
}

/* Responsible cooperation */

.about-cooperation {
    background: linear-gradient(135deg, #0a1f3d 0%, #0b213f 52%, #102a43 100%);
}

.about-cooperation__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 992px) {
    .about-cooperation__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 3rem;
    }
}

.about-cooperation__kicker {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.about-cooperation__title {
    margin: 0 0 1.25rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(1.75rem, 2.2vw + 0.85rem, 2.35rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #fff;
}

.about-cooperation__intro {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.about-cooperation__cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-cooperation-card {
    padding: 1.15rem 1.25rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
}

.about-cooperation-card__title {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.about-cooperation-card__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

/* IAOA ecosystem */

.about-ecosystem {
}

.about-ecosystem__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 992px) {
    .about-ecosystem__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 3rem;
    }
}

.about-ecosystem__kicker {
    margin: 0 0 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2563eb;
}

.about-ecosystem__title {
    margin: 0 0 1rem;
    max-width: 34rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: clamp(1.75rem, 2.2vw + 0.85rem, 2.35rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.about-ecosystem__intro {
    margin: 0 0 1.75rem;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #475569;
}

.about-ecosystem__statement {
    padding: 1.75rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.about-ecosystem__statement-title {
    margin: 0 0 0.85rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.about-ecosystem__statement-text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #475569;
}

.about-ecosystem__nav {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-ecosystem-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.2rem;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.about-ecosystem-link:hover {
    border-color: rgba(15, 23, 42, 0.14);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.about-ecosystem-link__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.about-ecosystem-link__title {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.about-ecosystem-link__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #64748b;
}

.about-ecosystem-link__icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.95rem;
    color: #64748b;
    background: #eef4fb;
    border-radius: 50%;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.about-ecosystem-link:hover .about-ecosystem-link__icon {
    color: #0f172a;
    background: #eef4fb;
}

@media (prefers-reduced-motion: reduce) {
    .about-ecosystem-link {
        transition: none;
    }

    .about-ecosystem-link:hover {
        transform: none;
    }
}

/* Join IAOA CTA — shared .iaoa-page-hero--cta shell in main.css */

.about-cta__inner {
    width: 100%;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.about-cta__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
}

@media (min-width: 992px) {
    .about-cta__grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

.about-cta__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3.5vw + 0.75rem, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}

.about-cta__lead {
    margin: 0;
    max-width: 40rem;
    font-size: clamp(1rem, 0.9vw + 0.9rem, 1.125rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.about-cta__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

@media (min-width: 992px) {
    .about-cta__actions {
        margin-left: auto;
    }
}
