body.about-page-body {
    --about-ink: #172235;
    --about-ink-soft: #53627c;
    --about-ink-faint: #7f8da3;
    --about-blue: #173b7a;
    --about-blue-deep: #0f2856;
    --about-blue-soft: #dfe9fb;
    --about-surface: #ffffff;
    --about-surface-muted: #eef4f9;
    --about-surface-soft: #f7fbff;
    --about-shadow: 0 24px 64px rgba(15, 40, 86, 0.1);
    --about-shadow-soft: 0 14px 36px rgba(15, 40, 86, 0.08);
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--about-ink);
    background:
        radial-gradient(circle at top right, rgba(23, 59, 122, 0.09), transparent 36%),
        linear-gradient(180deg, #fbfdff 0%, #f6fafe 100%);
    display: flex;
    flex-direction: column;
}

body.about-page-body .content-scroll-area {
    flex: 1;
    min-height: 0;
    margin-top: 100px;
    overflow-x: hidden;
}

html.js-motion [data-reveal] {
    opacity: 0;
    transform: translate3d(0, var(--reveal-offset, 24px), 0);
    transition:
        opacity var(--reveal-duration, 1380ms) cubic-bezier(0.16, 1, 0.3, 1),
        transform var(--reveal-duration, 1380ms) cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

html.js-motion [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

html.js-motion [data-sequence-item] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 1220ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 1220ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

html.js-motion [data-sequence-item].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

html.js-motion [data-motion-section] {
    --section-opacity: 1;
    --section-shift: 0px;
    opacity: var(--section-opacity);
    transform: translate3d(0, var(--section-shift), 0);
    transition: opacity 320ms ease-out, transform 320ms ease-out;
    will-change: opacity, transform;
}

html.js-motion .about-hero,
html.js-motion .about-section {
    animation: none;
}

.about-page-shell {
    width: 100%;
    padding-bottom: 0;
}

.about-section-inner {
    width: min(1120px, calc(100vw - 48px));
    margin: 0 auto;
}

.about-section--overview {
    position: relative;
    padding: clamp(56px, 6.5vw, 92px) 0 clamp(60px, 6vw, 88px);
    background:
        radial-gradient(circle at 100% 0%, rgba(23, 59, 122, 0.06), transparent 31%),
        radial-gradient(circle at 0% 100%, rgba(67, 119, 210, 0.08), transparent 30%),
        linear-gradient(135deg, #f5f8fc 0%, #eef4fa 100%);
    overflow: hidden;
}

.about-section--overview::before {
    content: '';
    position: absolute;
    left: -9rem;
    bottom: -12rem;
    width: 23rem;
    height: 23rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 100, 190, 0.08);
    box-shadow:
        0 0 0 1.8rem rgba(47, 100, 190, 0.035),
        0 0 0 3.6rem rgba(47, 100, 190, 0.03),
        0 0 0 5.4rem rgba(47, 100, 190, 0.022);
    pointer-events: none;
}

.about-section--overview .about-section-inner {
    width: min(1440px, calc(100vw - 36px));
}

.about-overview-card {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(4rem, 5.5vw, 5rem);
    padding: 0;
}

.about-overview-card::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 16%;
    bottom: 14%;
    width: 1px;
    background: rgba(23, 59, 122, 0.13);
    transform: translateX(-50%);
}

.about-overview-column {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.about-overview-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
}

.about-overview-icon {
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(47, 100, 190, 0.14);
    border-radius: 999px;
    color: var(--about-blue);
    background: rgba(255, 255, 255, 0.28);
    font-size: 1.28rem;
}

.about-overview-card .about-title,
.about-overview-card .about-heading-title {
    margin-top: 0.55rem;
    font-size: clamp(2.15rem, 3.2vw, 3rem);
    letter-spacing: -0.045em;
}

.about-overview-card .about-lead {
    max-width: 430px;
    margin-top: 2rem;
    font-size: 0.95rem;
    line-height: 1.9;
}

.about-goal-card {
    position: relative;
    margin-top: clamp(2rem, 4vw, 3rem);
    max-width: 430px;
    padding: 1.15rem 3.2rem 1.1rem 1.35rem;
    border: 1px solid rgba(23, 59, 122, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.28);
    color: var(--about-blue-deep);
}

.about-goal-card .about-hero-note-label {
    color: var(--about-blue-deep);
    opacity: 0.78;
}

.about-goal-card p {
    margin: 0.72rem 0 0;
    color: var(--about-blue-deep);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.7;
}

.about-goal-card i {
    position: absolute;
    right: 1.05rem;
    top: 1rem;
    color: rgba(47, 100, 190, 0.62);
    font-size: 1.35rem;
}

.about-overview-card .about-unit-map {
    margin-top: 1.55rem;
    text-align: left;
}

.about-overview-card .about-unit-track {
    gap: 1rem;
}

.about-overview-card .about-unit-tier {
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.55rem 0 0.8rem;
}

.about-overview-card .about-unit-tier--lead {
    border-bottom: none;
}

.about-overview-card .about-unit-list {
    justify-content: flex-start;
}

.about-overview-card .about-unit-name,
.about-overview-card .about-unit-tier--lead .about-unit-name {
    font-size: clamp(0.98rem, 1.25vw, 1.16rem);
}

.about-overview-card .about-logo-strip {
    margin-top: 1.6rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.about-overview-card .about-logo-chip {
    min-height: 82px;
    border-radius: 12px;
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.72);
}

.about-overview-card .about-logo-chip:nth-child(3),
.about-overview-card .about-logo-chip:nth-child(4) {
    padding-inline: 0.65rem;
}

.about-overview-card .about-logo-chip--dark {
    background: linear-gradient(135deg, rgba(16, 33, 63, 0.96) 0%, rgba(24, 52, 95, 0.96) 100%);
}

.about-overview-card .about-logo-chip img {
    width: 100%;
    max-width: 10rem;
    max-height: 46px;
}

.about-overview-card .about-logo-chip:nth-child(3) img {
    max-width: 9.2rem;
    max-height: 50px;
}

.about-overview-card .about-logo-chip:nth-child(4) img {
    max-width: 10.4rem;
    max-height: 40px;
}

.about-section--profile {
    padding: clamp(64px, 6vw, 92px) 0 clamp(76px, 7vw, 108px);
}

.about-section--profile .about-section-inner {
    width: min(1440px, calc(100vw - 72px));
}

.about-profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(360px, 0.92fr);
    gap: clamp(4rem, 6vw, 7rem);
    align-items: start;
}

.about-profile-main,
.about-profile-side {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.about-profile-main .about-title {
    margin-top: 0.7rem;
    font-size: clamp(3rem, 5.2vw, 4.7rem);
    line-height: 0.98;
}

.about-info-stack {
    margin-top: clamp(3.1rem, 5vw, 4.6rem);
    display: grid;
    gap: clamp(1.7rem, 2.8vw, 2.45rem);
}

.about-info-block {
    display: grid;
    grid-template-columns: minmax(7.5rem, 9rem) minmax(0, 1fr);
    gap: clamp(1.25rem, 2.2vw, 2.25rem);
    align-items: start;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(23, 59, 122, 0.14);
}

.about-info-title {
    margin: 0;
    color: var(--about-blue);
    font-family: 'Manrope', 'Noto Sans SC', 'Inter', sans-serif;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: 0.08em;
}

.about-name-list,
.about-partner-list {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.45rem 1.1rem;
    min-width: 0;
}

.about-name-list:has(.about-name-row) {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 0.62rem 1.1rem;
}

.about-name-row {
    display: contents;
}

.about-name-list span,
.about-partner-list span {
    min-width: 0;
    color: var(--about-blue-deep);
    font-family: 'Manrope', 'Noto Sans SC', 'Inter', sans-serif;
    font-size: clamp(1.1rem, 1.35vw, 1.34rem);
    font-weight: 800;
    line-height: 1.55;
}

.about-name-list--experts {
    gap: 0.55rem 1.25rem;
}

.about-expert-name {
    display: inline-flex;
    align-items: baseline;
    gap: 0.22rem;
}

.about-name-list span.about-expert-title {
    color: var(--about-ink);
    font-size: 0.72em;
    font-weight: 650;
    line-height: 1;
}

.about-name-list--inline {
    gap: 0.65rem clamp(1.2rem, 3vw, 2.4rem);
}

.about-name-list--inline span {
    font-size: clamp(1.12rem, 1.4vw, 1.38rem);
}

.about-partner-list {
    display: grid;
    gap: 0.52rem;
}

.about-partner-list span {
    font-size: clamp(1.02rem, 1.18vw, 1.18rem);
}

.about-profile-side {
    display: grid;
    gap: 1.35rem;
}

.about-profile-summary {
    margin: 0;
    padding-top: 1.1rem;
    border-top: 3px solid rgba(23, 59, 122, 0.22);
    color: var(--about-blue-deep);
    font-size: clamp(1.02rem, 1.12vw, 1.18rem);
    font-weight: 700;
    line-height: 1.95;
}

.about-profile-map {
    margin: 0;
    border: 1px solid rgba(23, 59, 122, 0.08);
    box-shadow: none;
}

.about-map-card.about-profile-map img {
    aspect-ratio: 1.48;
}

.about-contact-panel {
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(23, 59, 122, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
}

.about-contact-title {
    margin: 0.42rem 0 0;
    color: var(--about-blue-deep);
    font-family: 'Manrope', 'Noto Sans SC', 'Inter', sans-serif;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.about-contact-panel .about-contact-list {
    margin-top: 1.1rem;
    gap: 0.75rem;
}

.about-contact-panel .about-contact-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.85rem;
}

.about-contact-panel .about-contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1rem;
}

.about-contact-panel .about-contact-item-value {
    font-size: 0.95rem;
    line-height: 1.65;
}

.about-contact-panel .about-contact-actions {
    margin-top: 1.15rem;
    gap: 0.7rem;
}

.about-contact-panel .about-button {
    min-height: 44px;
    padding: 0.78rem 1.05rem;
    font-size: 0.86rem;
}

.about-hero {
    padding: clamp(44px, 7vw, 92px) 0 88px;
    animation: about-rise 0.7s ease both;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-hero-copy {
    max-width: 520px;
}

.about-kicker,
.about-heading-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--about-blue);
}

.about-title {
    margin: 0.95rem 0 0;
    font-family: 'Manrope', 'Noto Sans SC', 'Inter', sans-serif;
    font-size: clamp(3.2rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--about-blue-deep);
}

.about-subtitle {
    margin: 1rem 0 0;
    max-width: 560px;
    font-family: 'Manrope', 'Noto Sans SC', 'Inter', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--about-ink-faint);
}

.about-lead {
    margin: 1.1rem 0 0;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--about-ink-soft);
}

.about-hero-media {
    position: relative;
    padding-left: clamp(0rem, 2vw, 1.5rem);
}

.about-hero-image {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #d9e6f8 0%, #edf4fb 100%);
    box-shadow: var(--about-shadow);
    transform: translateZ(0);
    max-width: 720px;
}

.about-hero-image img {
    display: block;
    width: 100%;
    aspect-ratio: 2771 / 1860;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.about-hero-media:hover .about-hero-image img {
    transform: scale(1.03);
}

.about-hero-note {
    position: absolute;
    left: clamp(10px, 2vw, 22px);
    bottom: clamp(10px, 1.8vw, 24px);
    width: min(300px, 70%);
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20, 43, 87, 0.96) 0%, rgba(28, 60, 121, 0.96) 100%);
    box-shadow: 0 18px 34px rgba(18, 41, 82, 0.18);
    color: #fff;
}

.about-hero-note-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.about-hero-note p {
    margin: 0.45rem 0 0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}

.about-section {
    padding: 88px 0;
    animation: about-rise 0.72s ease both;
}

.about-section--team,
.about-section--contact {
    background: var(--about-surface);
}

.about-section--team {
    position: relative;
    z-index: 5;
    padding-top: clamp(48px, 5vw, 68px);
}

.about-section--institutions {
    position: relative;
    z-index: 1;
    min-height: clamp(560px, 48vw, 700px);
    display: flex;
    align-items: center;
    padding: clamp(72px, 6vw, 104px) 0 clamp(76px, 7vw, 116px);
    background: var(--about-surface-muted);
}

.about-section--institutions .about-section-inner {
    min-height: clamp(420px, 34vw, 520px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-heading {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.about-heading--center {
    display: block;
    text-align: center;
}

.about-heading--stack {
    display: block;
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.about-heading--stack .about-heading-copy {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1.15rem;
}

.about-heading--panel {
    margin-bottom: 2rem;
}

.about-heading-label--light,
.about-heading-title--light,
.about-heading-copy--light {
    color: #fff;
}

.about-heading-label--light {
    opacity: 0.68;
}

.about-heading-title {
    margin: 0.75rem 0 0;
    font-family: 'Manrope', 'Noto Sans SC', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.04em;
    color: var(--about-blue-deep);
}

.about-heading-copy {
    margin: 0;
    max-width: 680px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--about-ink-soft);
}

.about-team-grid {
    position: relative;
    z-index: 6;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.35rem, 2.6vw, 2.25rem);
}

.about-team-item {
    position: relative;
    padding-top: 1.4rem;
    text-align: center;
}

.about-team-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 52px;
    height: 1px;
    background: rgba(23, 59, 122, 0.2);
    transform: translateX(-50%);
}

.about-team-index {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--about-ink-faint);
}

.about-team-name {
    margin: 0.85rem 0 0;
    font-family: 'Manrope', 'Noto Sans SC', 'Inter', sans-serif;
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--about-blue-deep);
}

.about-team-role {
    display: inline-block;
    margin-left: 0.38rem;
    color: rgba(83, 98, 124, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    vertical-align: 0.08em;
    letter-spacing: 0;
}

.about-team-item--profile {
    cursor: pointer;
    outline: none;
    z-index: 20;
}

.about-team-item--profile:focus-visible {
    outline: 2px solid rgba(23, 59, 122, 0.22);
    outline-offset: 0.4rem;
    border-radius: 0.75rem;
}

.about-profile-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    margin-top: 0.42rem;
    color: rgba(83, 98, 124, 0.72);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.about-profile-hint::after {
    content: "↗";
    color: rgba(23, 59, 122, 0.62);
    font-size: 0.68rem;
    line-height: 1;
}

.about-team-item--profile:hover .about-profile-hint,
.about-team-item--profile:focus-visible .about-profile-hint {
    color: var(--about-blue-deep);
    transform: translateY(-1px);
}

.about-member-popover {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    z-index: 100;
    width: min(680px, calc(100vw - 48px));
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(23, 59, 122, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 60px rgba(15, 40, 86, 0.16);
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.98);
    transform-origin: top left;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

html.js-motion .about-member-popover {
    opacity: 0;
}

.about-team-item--profile:hover .about-member-popover,
.about-team-item--profile:focus-visible .about-member-popover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.about-member-photo {
    width: 112px;
    height: 150px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center top;
    background: var(--about-surface-muted);
}

.about-member-copy {
    min-width: 0;
}

.about-member-basic {
    margin-bottom: 0.85rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(23, 59, 122, 0.08);
}

.about-member-basic strong {
    display: block;
    color: var(--about-blue-deep);
    font-family: 'Manrope', 'Noto Sans SC', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 900;
}

.about-member-basic > span {
    display: block;
    margin-top: 0.25rem;
    color: var(--about-ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.55;
}

.about-member-basic dl {
    margin: 0.55rem 0 0;
    display: grid;
    gap: 0.28rem;
}

.about-member-basic dl div {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 0.45rem;
    align-items: baseline;
}

.about-member-basic dt,
.about-member-basic dd {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
}

.about-member-basic dt {
    color: var(--about-ink-faint);
    font-weight: 800;
}

.about-member-basic dd,
.about-member-basic a {
    color: var(--about-blue-deep);
    font-weight: 700;
    text-decoration: none;
}

.about-member-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--about-blue);
}

.about-member-label--section {
    margin-top: 0.75rem;
}

.about-member-copy p {
    margin: 0.55rem 0 0;
    color: var(--about-ink-soft);
    font-size: 0.84rem;
    line-height: 1.75;
}

.about-unit-track,
.about-unit-list,
.about-logo-strip {
    display: grid;
}

.about-unit-map {
    position: relative;
    margin-top: clamp(2.6rem, 4vw, 4rem);
    text-align: center;
}

.about-unit-track {
    position: relative;
    gap: clamp(1rem, 2.6vw, 2rem);
}

.about-unit-tier {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding: clamp(1rem, 2vw, 1.45rem) 0;
}

.about-unit-tier--lead {
    border-bottom: 1px solid rgba(23, 59, 122, 0.08);
}

.about-unit-label {
    color: var(--about-blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-unit-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.15rem;
    align-items: center;
}

.about-unit-name {
    position: relative;
    font-family: 'Manrope', 'Noto Sans SC', 'Inter', sans-serif;
    font-size: clamp(1.02rem, 1.22vw, 1.14rem);
    font-weight: 800;
    line-height: 1.45;
    color: var(--about-blue-deep);
}

.about-unit-tier--lead .about-unit-name {
    font-size: clamp(1.18rem, 1.55vw, 1.42rem);
}

.about-unit-name + .about-unit-name {
    padding-left: 1.05rem;
}

.about-unit-name + .about-unit-name::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(23, 59, 122, 0.34);
    transform: translateY(-50%);
}

html[lang^='en'] body.about-page-body .about-unit-name {
    font-size: clamp(0.98rem, 1.18vw, 1.08rem);
}

.about-logo-chip,
.about-map-card {
    border-radius: 22px;
    box-shadow: var(--about-shadow-soft);
}

.about-map-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--about-shadow);
}

.about-contact-item-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(23, 59, 122, 0.08);
    color: var(--about-blue);
    font-size: 1.15rem;
}

.about-logo-strip {
    margin-top: 1.35rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-logo-chip {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(23, 59, 122, 0.08);
    box-shadow: none;
    transition: background-color 0.24s ease, border-color 0.24s ease;
}

.about-logo-chip--dark {
    background: linear-gradient(135deg, rgba(16, 33, 63, 0.96) 0%, rgba(24, 52, 95, 0.96) 100%);
    border-color: rgba(255, 255, 255, 0.04);
}

.about-logo-chip:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(23, 59, 122, 0.14);
}

.about-logo-chip--dark:hover {
    background: linear-gradient(135deg, rgba(16, 33, 63, 0.98) 0%, rgba(24, 52, 95, 0.98) 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.about-logo-chip img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 44px;
    object-fit: contain;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-contact-intro {
    margin: 1rem 0 0;
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--about-ink-soft);
}

.about-contact-list {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.about-contact-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.about-contact-item-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--about-ink-faint);
}

.about-contact-item-value {
    margin: 0.35rem 0 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.75;
    color: var(--about-blue-deep);
}

.about-contact-item-value a {
    color: inherit;
    text-decoration: none;
}

.about-contact-item-value a:hover {
    text-decoration: underline;
}

.about-contact-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.about-button:hover {
    transform: translateY(-1px);
}

.about-button--primary {
    background: var(--about-blue);
    color: #fff;
    box-shadow: 0 14px 32px rgba(23, 59, 122, 0.2);
}

.about-button--primary:hover {
    color: #fff;
    background: #1c458d;
}

.about-button--secondary {
    background: rgba(23, 59, 122, 0.08);
    color: var(--about-blue-deep);
}

.about-button--secondary:hover {
    background: rgba(23, 59, 122, 0.12);
    color: var(--about-blue-deep);
}

.about-map-wrap {
    display: block;
}

.about-map-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #dce7f7;
}

.about-map-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.34;
    object-fit: cover;
}

.about-map-badge {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 32px rgba(15, 40, 86, 0.16);
}

.about-map-badge-title {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--about-blue-deep);
}

.about-map-badge p,
.about-map-badge p {
    margin: 0.35rem 0 0;
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--about-ink-soft);
}

html[lang^='en'] body.about-page-body .about-title {
    font-size: clamp(2.8rem, 6.2vw, 4.4rem);
    letter-spacing: -0.04em;
}

html[lang^='en'] body.about-page-body .about-subtitle {
    max-width: 640px;
    font-size: clamp(0.92rem, 1.15vw, 1rem);
}

html[lang^='en'] body.about-page-body .about-team-name {
    font-size: 1.08rem;
}

html[lang^='en'] body.about-page-body .about-profile-main .about-title {
    font-size: clamp(2.8rem, 5vw, 4.25rem);
}

html[lang^='en'] body.about-page-body .about-name-list span {
    font-size: clamp(1rem, 1.16vw, 1.16rem);
}

html[lang^='en'] body.about-page-body .about-name-list--inline span {
    max-width: none;
}

@media (min-width: 992px) {
    html[lang^='en'] body.about-page-body .about-section--profile .about-section-inner {
        width: min(1500px, calc(100vw - 72px));
    }

    html[lang^='en'] body.about-page-body .about-profile-layout {
        grid-template-columns: minmax(0, 1.95fr) minmax(430px, 0.86fr);
        gap: clamp(3rem, 4.4vw, 5.2rem);
    }

    html[lang^='en'] body.about-page-body .about-info-block {
        grid-template-columns: minmax(7.5rem, 9rem) minmax(0, 1fr);
        gap: clamp(1.05rem, 1.8vw, 1.75rem);
    }

    html[lang^='en'] body.about-page-body .about-name-list span,
    html[lang^='en'] body.about-page-body .about-partner-list span,
    html[lang^='en'] body.about-page-body .about-map-badge-title,
    html[lang^='en'] body.about-page-body .about-contact-item-value {
        white-space: nowrap;
    }

    html[lang^='en'] body.about-page-body .about-contact-item-value {
        font-size: 0.98rem;
    }
}

@keyframes about-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html.js-motion [data-reveal],
    html.js-motion [data-sequence-item],
    html.js-motion [data-motion-section] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .about-hero,
    .about-section,
    .about-logo-chip,
    .about-map-card,
    .about-button,
    .about-hero-image img {
        animation: none;
        transition: none;
    }
}

@media (max-width: 991.98px) {
    body.about-page-body .content-scroll-area {
        margin-top: 92px;
    }

    .about-section-inner {
        width: min(100vw - 32px, 1120px);
    }

    .about-section--overview .about-section-inner {
        width: min(100vw - 32px, 1120px);
    }

    .about-hero-grid,
    .about-profile-layout,
    .about-overview-card,
    .about-heading,
    .about-contact-grid,
    .about-unit-map,
    .about-unit-tier,
    .about-logo-strip {
        grid-template-columns: 1fr;
    }

    .about-section--profile .about-section-inner {
        width: min(100vw - 32px, 1120px);
    }

    .about-profile-layout {
        gap: 3rem;
    }

    .about-profile-side {
        max-width: 720px;
    }

    .about-overview-card {
        gap: 2.25rem;
    }

    .about-overview-card::after {
        left: clamp(1.5rem, 5vw, 3rem);
        right: clamp(1.5rem, 5vw, 3rem);
        top: 50%;
        bottom: auto;
        width: auto;
        height: 1px;
        transform: none;
    }

    .about-overview-card .about-logo-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-unit-tier {
        gap: 0.65rem;
    }

    .about-hero-media {
        padding-left: 0;
        margin-top: 1rem;
    }

    .about-hero-note {
        left: 0.9rem;
        bottom: 0.9rem;
        width: min(320px, calc(100% - 2rem));
    }

    .about-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .about-page-shell {
        padding-bottom: 56px;
    }

    .about-section {
        padding: 64px 0;
    }

    .about-section--overview {
        padding: 42px 0 58px;
    }

    .about-overview-card {
        padding: 0;
    }

    .about-section--profile .about-section-inner {
        width: min(100vw - 24px, 1120px);
    }

    .about-info-stack {
        margin-top: 2.4rem;
        gap: 1.65rem;
    }

    .about-info-block {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding-top: 1rem;
    }

    .about-name-list,
    .about-name-list--inline {
        gap: 0.34rem 0.9rem;
    }

    .about-contact-panel {
        padding: 1.1rem;
    }

    .about-overview-heading {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .about-overview-icon {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.12rem;
    }

    .about-overview-card .about-lead {
        max-width: none;
    }

    .about-overview-card .about-unit-list {
        align-items: flex-start;
    }

    .about-goal-card {
        max-width: none;
    }

    .about-overview-card .about-logo-strip {
        gap: 0.75rem;
    }

    .about-section--institutions {
        min-height: auto;
        padding: 84px 0 96px;
    }

    .about-section--institutions .about-section-inner {
        min-height: auto;
        gap: 2.8rem;
    }

    .about-section-inner {
        width: min(100vw - 20px, 1120px);
    }

    .about-unit-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .about-unit-name + .about-unit-name {
        padding-left: 0;
    }

    .about-unit-name + .about-unit-name::before {
        display: none;
    }

    .about-title {
        font-size: clamp(2.6rem, 11vw, 3.35rem);
    }

    .about-lead {
        font-size: 0.95rem;
    }

    .about-hero-note p {
        font-size: 0.92rem;
    }

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

    .about-contact-item {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .about-contact-item-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .about-map-badge {
        left: 0.9rem;
        right: 0.9rem;
        bottom: 0.9rem;
    }
}
