.about-page {
    min-height: 100vh;
    background: transparent;
    padding-top: 80px;
    color: #111111;
}

.about-page * {
    letter-spacing: 0;
}

.about-hero,
.about-story,
.about-values,
.leadership-hero {
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    background: transparent;
}

.about-hero-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 4rem;
    align-items: center;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #525256;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: #111111;
}

.about-hero-copy h1 {
    max-width: 780px;
    margin: 0;
    color: #0f0f11;
    font-size: 4.2rem;
    line-height: 1.06;
    font-weight: 800;
}

.about-hero-copy p {
    max-width: 660px;
    margin: 1.5rem 0 0;
    color: #4b5563;
    font-size: 1.12rem;
    line-height: 1.8;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.25rem;
}

.about-primary-link,
.about-secondary-link,
.leader-linkedin,
.leader-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.about-primary-link {
    gap: 0.55rem;
    padding: 0.95rem 1.35rem;
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
}

.about-primary-link:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #111111;
}

.about-primary-link i,
.leader-linkedin i,
.leader-cta i {
    font-size: 1.35rem;
    line-height: 1;
}

.about-secondary-link {
    padding: 0.95rem 1.25rem;
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.18);
    background: rgba(255, 255, 255, 0.72);
}

.about-secondary-link:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 17, 17, 0.34);
    background: #ffffff;
}

.about-hero-panel {
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    padding: 2rem;
    box-shadow: 0 28px 70px rgba(17, 17, 17, 0.16);
}

.about-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-panel-top span {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.about-panel-top i {
    font-size: 1.55rem;
}

.about-hero-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.85;
}

.about-proof-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
}

.about-proof-grid div {
    padding: 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-proof-grid strong,
.about-proof-grid span {
    display: block;
}

.about-proof-grid strong {
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 1rem;
}

.about-proof-grid span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.55;
}

.about-story {
    padding-top: 5.5rem;
    padding-bottom: 5rem;
    background: transparent;
}

.about-values {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: transparent;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.about-section-heading {
    width: min(1200px, 100%);
    margin: 0 auto 2.5rem;
}

.about-section-heading h2,
.leadership-copy h2 {
    max-width: 840px;
    margin: 0;
    color: #111111;
    font-size: 2.75rem;
    line-height: 1.16;
    font-weight: 800;
}

.about-story-grid,
.about-values-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

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

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

.about-story-card,
.about-value-card {
    min-width: 0;
    border-radius: 8px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #ffffff;
    padding: 1.6rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-story-card:hover,
.about-value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 17, 17, 0.18);
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.07);
}

.about-story-card i {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 1.25rem;
    border-radius: 6px;
    background: #111111;
    color: #ffffff;
    font-size: 1.25rem;
}

.about-story-card h3,
.about-value-card h3 {
    margin: 0 0 0.85rem;
    color: #111111;
    font-size: 1.24rem;
    line-height: 1.28;
    font-weight: 800;
}

.about-story-card p,
.about-value-card p {
    margin: 0;
    color: #525256;
    font-size: 0.98rem;
    line-height: 1.75;
}

.about-value-card {
    background: #ffffff;
}

.about-value-card span {
    display: block;
    margin-bottom: 1.5rem;
    color: #8e8e93;
    font-size: 0.9rem;
    font-weight: 800;
}

.leadership-hero {
    padding-top: 5.5rem;
    padding-bottom: 6rem;
    background: transparent;
    overflow: hidden;
}

.leadership-shell {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.leadership-frame {
    position: relative;
}

.leadership-copy {
    max-width: 860px;
}

.leadership-intro {
    max-width: 760px;
    margin-top: 1.35rem;
}

.leadership-intro-text {
    margin: 0;
    color: #525256;
    font-size: 1.05rem;
    line-height: 1.85;
}

.leadership-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 3rem;
}

.carousel-stage {
    position: relative;
    min-height: 620px;
    margin: 0;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 8px;
    background:
        repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.035) 0, rgba(17, 17, 17, 0.035) 1px, transparent 1px, transparent 72px),
        linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
    overflow: hidden;
}

.ghost-typography {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(17, 17, 17, 0.05);
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 620px;
    z-index: 2;
}

.leader-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    transform-origin: center center;
    transform: translate(-50%, -50%) translateX(-290px) scale(0.76);
    opacity: 0.55;
    filter: blur(2px);
    transition: transform 650ms cubic-bezier(0.4, 0, 0.2, 1), opacity 650ms cubic-bezier(0.4, 0, 0.2, 1), filter 650ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    display: grid;
    place-items: center;
}

.leader-slide[data-state="center"] {
    transform: translate(-50%, -50%) translateX(0) scale(1.08);
    opacity: 1;
    filter: blur(0);
    z-index: 4;
}

.leader-slide[data-state="left"] {
    transform: translate(-50%, -50%) translateX(-290px) scale(0.76);
    opacity: 0.62;
    filter: blur(2px);
    z-index: 2;
}

.leader-slide[data-state="right"] {
    transform: translate(-50%, -50%) translateX(290px) scale(0.76);
    opacity: 0.62;
    filter: blur(2px);
    z-index: 2;
}

.leader-portrait {
    width: 100%;
    height: 390px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.11);
    display: grid;
    place-items: center;
}

.leader-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.leader-meta {
    margin-top: 1.2rem;
    text-align: center;
}

.leader-role {
    margin: 0 0 0.45rem;
    color: #525256;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.leader-name {
    margin: 0;
    color: #111111;
    font-size: 1.65rem;
    line-height: 1.12;
    font-weight: 800;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111111;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 5;
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.05);
    border-color: rgba(17, 17, 17, 0.35);
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.1);
}

.carousel-prev {
    left: 1.25rem;
}

.carousel-next {
    right: 1.25rem;
}

.leader-details {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 8px;
    background: #f7f7f7;
}

.leader-kicker {
    margin-bottom: 0.35rem;
    color: #8e8e93;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.leader-detail-name {
    margin: 0;
    color: #111111;
    font-size: 1.8rem;
    line-height: 1.15;
    font-weight: 800;
}

.leader-detail-role {
    margin: 0.4rem 0 1.1rem;
    color: #111111;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.leader-caption {
    max-width: none;
    margin: 0;
    color: #525256;
    font-size: 1rem;
    line-height: 1.8;
}

.leader-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
    margin-top: 1.4rem;
}

.leader-linkedin {
    gap: 0.55rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid #0a66c2;
    background: #0a66c2;
    color: #ffffff;
}

.leader-linkedin:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #0a66c2;
}

.leader-cta {
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(17, 17, 17, 0.22);
    background: #111111;
    color: #ffffff;
}

.leader-cta:hover {
    transform: translateY(-2px);
    background: #ffffff;
    color: #111111;
    border-color: #111111;
}

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

    .leadership-showcase {
        grid-template-columns: 1fr;
    }

    .leader-details {
        justify-content: flex-start;
    }

    .leader-actions {
        flex-direction: row;
    }

    .about-hero-copy {
        grid-column: 1 / -1;
    }

    .about-hero-panel {
        grid-column: 1 / -1;
    }

    .about-hero-copy h1 {
        font-size: 3.45rem;
    }

    .leader-slide[data-state="left"] {
        transform: translate(-50%, -50%) translateX(-235px) scale(0.72);
    }

    .leader-slide[data-state="right"] {
        transform: translate(-50%, -50%) translateX(235px) scale(0.72);
    }
}

@media (max-width: 760px) {
    .about-hero,
    .about-story,
    .about-values,
    .leadership-hero {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .about-hero {
        padding-top: 4rem;
        padding-bottom: 3.5rem;
    }

    .about-hero-inner,
    .about-story-grid,
    .about-values-grid,
    .leader-details {
        grid-template-columns: 1fr;
    }

    .about-hero-inner {
        gap: 2rem;
    }

    .about-hero-copy h1 {
        font-size: 2.45rem;
        line-height: 1.12;
    }

    .about-hero-copy p,
    .leadership-intro-text {
        font-size: 1rem;
    }

    .about-section-heading h2,
    .leadership-copy h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .about-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-primary-link,
    .about-secondary-link,
    .leader-linkedin,
    .leader-cta {
        width: 100%;
    }

    .leadership-showcase {
        margin-top: 2rem;
    }

    .leader-details {
        padding: 1.5rem;
    }

    .leader-actions {
        flex-direction: column;
    }

    .carousel-stage {
        min-height: 520px;
    }

    .carousel-track {
        height: 520px;
    }

    .ghost-typography {
        font-size: 3.2rem;
        align-items: flex-start;
        padding-top: 2rem;
    }

    .leader-slide {
        width: 210px;
    }

    .leader-slide[data-state="center"] {
        transform: translate(-50%, -50%) translateX(0) scale(1);
    }

    .leader-slide[data-state="left"] {
        transform: translate(-50%, -50%) translateX(-155px) scale(0.62);
        opacity: 0.22;
    }

    .leader-slide[data-state="right"] {
        transform: translate(-50%, -50%) translateX(155px) scale(0.62);
        opacity: 0.22;
    }

    .leader-portrait {
        height: 330px;
    }

    .carousel-arrow {
        width: 42px;
        height: 42px;
    }

    .carousel-prev {
        left: 0.75rem;
    }

    .carousel-next {
        right: 0.75rem;
    }
}

@media (max-width: 420px) {
    .about-hero-copy h1 {
        font-size: 2.12rem;
    }

    .about-hero-panel,
    .about-story-card,
    .about-value-card {
        padding: 1.25rem;
    }

    .leader-slide {
        width: 190px;
    }

    .leader-portrait {
        height: 300px;
    }
}

/* Palette refresh: royal blue, light grey, sky blue */
.about-page {
    background: var(--bg-white);
    color: var(--primary);
}

.about-hero,
.about-story,
.about-values,
.leadership-hero {
    background: var(--bg-white);
}

.about-values,
.leadership-hero {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-section) 100%);
}

.about-eyebrow,
.leadership-intro-text,
.leader-role,
.leader-kicker,
.leader-caption,
.about-hero-copy p,
.about-story-card p,
.about-value-card p {
    color: var(--text-secondary);
}

.about-eyebrow::before {
    background: var(--sky-blue);
}

.about-hero-copy h1,
.about-section-heading h2,
.leadership-copy h2,
.leader-name,
.leader-detail-name,
.leader-detail-role,
.about-story-card h3,
.about-value-card h3 {
    color: var(--primary);
}

.about-primary-link,
.leader-cta {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.about-primary-link:hover,
.leader-cta:hover {
    background: var(--primary-dark);
    color: var(--text-white);
    border-color: var(--primary-dark);
}

.about-secondary-link {
    color: var(--primary);
    border-color: rgba(16, 54, 125, 0.18);
    background: var(--bg-white);
}

.about-secondary-link:hover {
    border-color: rgba(16, 54, 125, 0.34);
    background: var(--accent-light);
}

.about-hero-panel {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 28px 70px rgba(16, 54, 125, 0.18);
}

.about-story-card,
.about-value-card,
.carousel-stage,
.leader-details,
.leader-portrait {
    border-color: rgba(16, 54, 125, 0.12);
    background: var(--bg-white);
    box-shadow: 0 16px 42px rgba(16, 54, 125, 0.06);
}

.about-story-card:hover,
.about-value-card:hover {
    border-color: rgba(116, 180, 217, 0.7);
    box-shadow: 0 18px 45px rgba(16, 54, 125, 0.1);
}

.about-story-card i,
.about-value-card span {
    color: var(--primary);
    background: var(--accent-light);
}

.carousel-stage {
    background:
        repeating-linear-gradient(90deg, rgba(16, 54, 125, 0.04) 0, rgba(16, 54, 125, 0.04) 1px, transparent 1px, transparent 72px),
        linear-gradient(180deg, var(--bg-white) 0%, var(--light-grey) 100%);
}

.ghost-typography {
    color: rgba(16, 54, 125, 0.06);
}

.carousel-arrow {
    border-color: rgba(16, 54, 125, 0.18);
    color: var(--primary);
}

.leader-linkedin {
    border-color: var(--primary);
    background: var(--primary);
}

.leader-linkedin:hover {
    background: var(--accent-light);
    color: var(--primary);
}
