.about-page-view {
    background: #ffffff;
}

.about-page {
    padding: clamp(18px, 4vw, 34px) 0 22px;
    font-family: var(--font-base);
}

.about-shell {
    max-width: 1200px;
    margin: 0 auto;
}

.about-shell + .about-shell {
    margin-top: 34px;
}

.about-kicker {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    background: #f8f9fb;
    border: 1px solid #d4dae3;
    color: #34506f;
    font-size: 15px;
    font-weight: 1000;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.about-kicker-icon {
    color: #f77714;
    font-size: 20px;
    line-height: 1;
}

.about-title {
    margin: 18px 0 0;
    color: #111111;
    font-size: var(--font-size-h1);
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.about-title-underline {
    color: #111111;
    position: relative;
    display: inline-block;
}

.about-title-underline::after {
    content: "";
    position: absolute;
    left: -1%;
    bottom: -2px;
    width: 102%;
    height: 8px;
    border-bottom: 4px solid #ff3d40;
    border-radius: 999px;
    transform: rotate(-1.2deg);
    opacity: 0.95;
    pointer-events: none;
}

.about-points {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: #171717;
    font-size: var(--font-size-body);
    line-height: 1.37;
    font-weight: 500;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-points li + li {
    margin-top: 10px;
}

.about-points li::before {
    content: "\2713";
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: #f77714;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    transform: translateY(2px);
}

.about-team-kicker {
    margin: 0;
    color: #ff7a45;
    font-size: var(--font-size-subheading);
    font-weight: 700;
    line-height: 1.1;
}

.about-team-title {
    margin: 4px 0 0;
    color: #111111;
    font-size: var(--font-size-h2);
    line-height: 1.08;
}

.founder-card {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

.founder-photo-wrap {
    width: min(100%, 240px);
    border-radius: 6px;
    overflow: hidden;
    background: #d5d5d5;
    border: 1px solid #c8c8c8;
}

.founder-photo-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-copy h3 {
    margin: 0;
    color: #db6518;
    font-size: var(--font-size-h3);
    line-height: 1.04;
}

.founder-role {
    margin: 0;
    color: #db6518;
    font-size: var(--font-size-subheading);
    font-weight: 700;
    line-height: 1.04;
}

.founder-copy p {
    margin: 18px 0 0;
    color: #1f1f1f;
    font-size: var(--font-size-body);
    line-height: 1.36;
}

.about-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 560ms ease, transform 660ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) and (max-width: 1199px) {
    .founder-card {
        grid-template-columns: 210px 1fr;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .about-page {
        padding-top: 14px;
    }

    .about-shell + .about-shell {
        margin-top: 24px;
    }

    .about-kicker {
        font-size: 12px;
        padding: 8px 12px;
        gap: 6px;
    }

    .about-kicker-icon {
        font-size: 14px;
    }

    .about-title {
        margin-top: 12px;
        line-height: 1.18;
    }

    .about-points {
        margin-top: 14px;
        line-height: 1.34;
    }

    .about-points li {
        gap: 10px;
    }

    .about-points li::before {
        flex-basis: 20px;
        width: 20px;
        height: 20px;
        font-size: 12px;
        line-height: 20px;
    }

    .founder-card {
        margin-top: 12px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .founder-photo-wrap {
        max-width: 170px;
    }

    .founder-copy p {
        margin-top: 12px;
        line-height: 1.32;
    }
}
