.about-landing {
    --about-accent: #ff4f40;
    --about-accent-accessible: #d83b30;
    --about-accent-dark: #c93229;
    --about-ink: #17202e;
    --about-muted: #667085;
    --about-line: #e3e6eb;
    --about-surface: #f6f7f9;
    --about-purple: #2e186a;
    --about-section-space: 64px;
    color: var(--about-ink);
    overflow: hidden;
}

.about-landing *,
.about-landing *::before,
.about-landing *::after {
    box-sizing: border-box;
}

.about-landing a {
    text-decoration: none;
}

.about-hero {
    position: relative;
    padding: 72px 0 64px;
    background: #fff;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 86% 23%, rgba(255, 79, 64, .11), transparent 30%),
        radial-gradient(circle at 76% 88%, rgba(46, 24, 106, .055), transparent 25%);
    pointer-events: none;
}

.about-hero .container {
    position: relative;
}

.about-eyebrow,
.about-section-heading__kicker,
.about-benefit-card__tag {
    color: var(--about-accent-accessible);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 79, 64, .22);
    border-radius: 999px;
    background: rgba(255, 79, 64, .05);
}

.about-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--about-ink);
    font-size: clamp(48px, 5.2vw, 76px);
    line-height: 1.055;
    letter-spacing: -.045em;
}

.about-hero h1 span {
    color: var(--about-accent);
}

.about-hero__lead {
    max-width: 670px;
    margin: 27px 0 0;
    color: var(--about-muted);
    font-size: 19px;
    line-height: 1.62;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.about-button {
    display: inline-flex;
    min-height: 52px;
    padding: 13px 22px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    transition: transform .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.about-button--primary {
    background: var(--about-accent-accessible);
    color: #fff;
    box-shadow: 0 14px 30px rgba(216, 59, 48, .23);
}

.about-button--primary:hover {
    background: var(--about-accent-dark);
    color: #fff;
    box-shadow: 0 18px 34px rgba(201, 50, 41, .28);
}

.about-button--secondary {
    border-color: #d9dde5;
    background: #fff;
    color: var(--about-ink);
}

.about-button--secondary:hover {
    border-color: #b8bfcb;
    color: var(--about-ink);
}

.about-button:focus-visible,
.about-store-link:focus-visible {
    outline: 3px solid rgba(255, 79, 64, .3);
    outline-offset: 4px;
}

.about-hero__animation {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    margin-left: auto;
    transform: translateX(38px) scale(1.17);
    transform-origin: center right;
}

.about-animation__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-animation.is-ready .about-animation__poster {
    visibility: hidden;
}

.about-animation__player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .25s ease;
}

.about-animation.is-ready .about-animation__player {
    opacity: 1;
}

.about-section {
    padding: var(--about-section-space) 0;
}

.about-section--benefits {
    background: #fff;
}

.about-section--process {
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 79, 64, .08), transparent 24%),
        linear-gradient(180deg, #fff 0%, #f9f8fc 18%, #f6f8fb 82%, #fff 100%);
}

.about-section-heading {
    max-width: 790px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-section-heading--left {
    margin: 0 0 31px;
    text-align: left;
}

.about-section-heading h2,
.about-closing h2 {
    margin: 12px 0 0;
    color: var(--about-ink);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    letter-spacing: -.04em;
}

.about-section-heading p,
.about-closing p {
    margin: 19px 0 0;
    color: var(--about-muted);
    font-size: 17px;
    line-height: 1.65;
}

.about-benefit-card {
    display: flex;
    padding: 28px;
    flex-direction: column;
    border: 1px solid var(--about-line);
    border-radius: 21px;
    background: #fff;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.about-benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 79, 64, .34);
    box-shadow: 0 20px 42px rgba(23, 32, 46, .09);
}

.about-benefit-card__visual {
    position: relative;
    width: 100%;
    height: 176px;
    margin-bottom: 27px;
    overflow: hidden;
    border-radius: 16px;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 79, 64, .1), transparent 34%),
        #f8f6fc;
}

.about-benefit-card__visual .about-animation__player {
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}

.about-benefit-card__tag {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
}

.about-benefit-card h3,
.about-channel-story h3,
.about-process-list h3 {
    color: var(--about-ink);
    font-weight: 700;
    letter-spacing: -.02em;
}

.about-benefit-card h3 {
    margin: 0 0 11px;
    font-size: 22px;
    line-height: 1.3;
}

.about-benefit-card p {
    margin: 0;
    color: var(--about-muted);
    font-size: 16px;
    line-height: 1.65;
}

.about-process {
    position: relative;
    padding: 0;
}

.about-process::before {
    content: none;
}

.about-process__top {
    position: relative;
}

.about-process__top .about-section-heading--left {
    max-width: 760px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    text-align: center;
}

.about-process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 72px);
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}

.about-process-list::before {
    content: '';
    position: absolute;
    top: 205px;
    right: 16.666%;
    left: 16.666%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 79, 64, .48) 12%, rgba(255, 79, 64, .48) 88%, transparent);
}

.about-process-list li {
    position: relative;
    min-width: 0;
    padding: 0 16px;
    text-align: center;
}

.about-process-list li::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 199px;
    left: 50%;
    width: 13px;
    height: 13px;
    border: 4px solid #f7f8fb;
    border-radius: 50%;
    background: var(--about-accent);
    transform: translateX(-50%);
}

.about-process-list__visual {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 260px;
    height: 188px;
    margin: 0 auto 43px;
}

.about-process-list__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-process-list h3 {
    margin: 0 0 9px;
    font-size: 21px;
    line-height: 1.35;
}

.about-process-list p {
    margin: 0;
    color: var(--about-muted);
    font-size: 15px;
    line-height: 1.65;
}

.about-section--channels {
    background: #fff;
}

.about-channel-stories {
    max-width: 1080px;
    margin: 0 auto;
    border-top: 1px solid var(--about-line);
}

.about-channel-story {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    padding: 16px 0;
    align-items: center;
    gap: clamp(32px, 4vw, 48px);
    border-bottom: 1px solid var(--about-line);
}

.about-channel-story:nth-child(even) .about-channel-story__visual {
    grid-column: 2;
    grid-row: 1;
}

.about-channel-story:nth-child(even) .about-channel-story__copy {
    grid-column: 1;
    grid-row: 1;
}

.about-channel-story__visual {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.about-channel-story__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.36);
}

.about-channel-story__copy {
    max-width: 470px;
}

.about-channel-story__label {
    display: block;
    margin-bottom: 12px;
    color: var(--about-accent-accessible);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about-channel-story h3 {
    margin: 0 0 13px;
    font-size: clamp(26px, 2.35vw, 34px);
    line-height: 1.2;
}

.about-channel-story p {
    margin: 0;
    color: var(--about-muted);
    font-size: 17px;
    line-height: 1.7;
}

.about-section--closing {
    padding: 0 0 var(--about-section-space);
}

.about-closing {
    display: flex;
    padding: 54px 58px;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
    border-radius: 27px;
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 79, 64, .22), transparent 30%),
        var(--about-ink);
}

.about-closing > div:first-child {
    max-width: 680px;
}

.about-closing .about-section-heading__kicker,
.about-closing h2 {
    color: #fff;
}

.about-closing h2 {
    font-size: clamp(34px, 3.7vw, 48px);
}

.about-closing p {
    color: #c6ceda;
    font-size: 16px;
}

.about-store-links {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 12px;
}

.about-store-link {
    display: flex;
    min-width: 166px;
    min-height: 61px;
    padding: 10px 16px;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 13px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.about-store-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.about-store-link img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.about-store-link span {
    display: grid;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.about-store-link small {
    color: #c6ceda;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: .02em;
}

@media (min-width: 1400px) {
    .about-hero__animation {
        transform: translateX(80px) scale(1.2);
    }
}

@media (max-width: 1199px) {
    .about-hero__animation {
        transform: translateX(20px) scale(1.08);
    }

    .about-closing {
        display: block;
    }

    .about-store-links {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .about-landing {
        --about-section-space: 56px;
    }

    .about-hero {
        padding: 64px 0 56px;
        text-align: center;
    }

    .about-hero h1,
    .about-hero__lead {
        margin-right: auto;
        margin-left: auto;
    }

    .about-hero__actions {
        justify-content: center;
    }

    .about-hero__animation {
        max-width: 650px;
        margin: 4px auto 0;
        transform: none;
        transform-origin: center;
    }

    .about-section-heading--left {
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .about-process {
        padding: 0;
    }

    .about-process__top .about-section-heading--left {
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
    }

    .about-process-list {
        margin-top: 36px;
    }

    .about-channel-story {
        grid-template-columns: minmax(0, 1fr) minmax(270px, .88fr);
        gap: 32px;
    }

    .about-channel-story__visual {
        height: 184px;
    }

}

@media (max-width: 767px) {
    .about-landing {
        --about-section-space: 48px;
    }

    .about-hero {
        padding: 48px 0;
    }

    .about-hero .row {
        --bs-gutter-y: 1.5rem;
    }

    .about-eyebrow {
        margin-bottom: 19px;
        font-size: 11px;
    }

    .about-hero h1 {
        font-size: 38px;
        line-height: 1.09;
        letter-spacing: -.04em;
    }

    .about-hero__lead {
        margin-top: 21px;
        font-size: 16px;
        line-height: 1.62;
    }

    .about-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 27px;
    }

    .about-button {
        width: 100%;
    }

    .about-hero__animation {
        width: 112%;
        margin-right: -6%;
        margin-left: -6%;
    }

    .about-section-heading {
        margin-bottom: 32px;
    }

    .about-section-heading h2,
    .about-closing h2 {
        font-size: 34px;
        line-height: 1.17;
    }

    .about-section-heading p,
    .about-closing p {
        font-size: 15px;
    }

    .about-benefit-card {
        max-width: 520px;
        margin: 0 auto;
        padding: 24px;
        text-align: center;
    }

    .about-benefit-card__visual {
        height: 190px;
    }

    .about-process {
        padding: 0;
    }

    .about-process-list {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 28px;
    }

    .about-process-list::before {
        top: 52px;
        right: auto;
        bottom: 52px;
        left: 47px;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(255, 79, 64, .42) 10%, rgba(255, 79, 64, .42) 90%, transparent);
    }

    .about-process-list li {
        display: grid;
        grid-template-columns: 98px minmax(0, 1fr);
        min-height: 142px;
        padding: 18px 0;
        align-items: center;
        gap: 18px;
        text-align: left;
    }

    .about-process-list li::before {
        content: none;
    }

    .about-process-list__visual {
        position: relative;
        top: auto;
        left: auto;
        width: 94px;
        height: 112px;
        margin: 0;
        background: #f8f8fb;
        transform: none;
    }

    .about-process-list h3 {
        margin: 0 0 5px;
    }

    .about-channel-story {
        grid-template-columns: 1fr;
        padding: 16px 0;
        gap: 4px;
        text-align: center;
    }

    .about-channel-story:nth-child(even) .about-channel-story__visual,
    .about-channel-story:nth-child(even) .about-channel-story__copy {
        grid-column: 1;
    }

    .about-channel-story:nth-child(even) .about-channel-story__visual {
        grid-row: 1;
    }

    .about-channel-story:nth-child(even) .about-channel-story__copy {
        grid-row: 2;
    }

    .about-channel-story__visual {
        height: 168px;
    }

    .about-channel-story__copy {
        max-width: 520px;
        margin: 0 auto;
    }

    .about-channel-story h3 {
        font-size: 27px;
    }

    .about-section--closing {
        padding: 0 0 var(--about-section-space);
    }

    .about-closing {
        padding: 36px 24px;
        border-radius: 21px;
        text-align: center;
    }

    .about-store-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-store-link {
        justify-content: center;
    }
}

@media (max-width: 390px) {
    .about-hero h1 {
        font-size: 35px;
    }

    .about-benefit-card__visual {
        height: 166px;
    }

    .about-process-list li {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 14px;
    }

    .about-process-list__visual {
        width: 86px;
        height: 104px;
    }

    .about-process-list::before {
        left: 43px;
    }

    .about-channel-story__visual {
        height: 160px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-button,
    .about-benefit-card,
    .about-store-link,
    .about-animation__player {
        transition: none;
    }
}
