.about-page {
    --about-bg: #050519;
    --about-surface: #0b0c22;
    --about-surface-light: #11112a;
    --about-border: rgba(255, 255, 255, 0.08);
    --about-muted: #c8c6d9;
    --about-soft: #9694aa;
    --about-accent: #8a7cff;
    --about-accent-light: #b2a9ff;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(105, 88, 234, 0.18),
            transparent 27%
        ),
        radial-gradient(
            circle at 88% 38%,
            rgba(138, 124, 255, 0.1),
            transparent 28%
        ),
        var(--about-bg);
    color: #ffffff;
}

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

.about-container {
    width: min(
        calc(100% - 48px),
        1320px
    );
    margin-inline: auto;
}

.about-hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    padding: 145px 0 100px;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
    mask-image:
        linear-gradient(
            to bottom,
            #000 15%,
            transparent 92%
        );
}

.about-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(480px, 0.98fr);
    align-items: center;
    gap: clamp(55px, 7vw, 105px);
}

.about-kicker,
.about-section-heading > span,
.about-cta__box > div > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--about-accent-light);
    font-size: 13px;
    font-weight: 800;
}

.about-kicker::before,
.about-section-heading > span::before,
.about-cta__box > div > span::before {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
}

.about-hero h1 {
    max-width: 760px;
    margin: 22px 0 0;
    font-size: clamp(
        48px,
        5.2vw,
        76px
    );
    line-height: 1.26;
    letter-spacing: -1.8px;
    text-wrap: balance;
}

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

.about-hero__content > p {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--about-muted);
    font-size: 16px;
    line-height: 2.15;
}

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

.about-hero__actions .button {
    min-width: 155px;
}

.about-hero__signals {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 38px;
}

.about-hero__signals > div {
    min-width: 0;
    padding: 15px 16px;
    border: 1px solid var(--about-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.026);
}

.about-hero__signals strong {
    display: block;
    font-size: 12px;
}

.about-hero__signals span {
    display: block;
    margin-top: 5px;
    color: var(--about-soft);
    font-size: 9px;
    line-height: 1.8;
}

.about-hero__visual {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1;
    justify-self: end;
    isolation: isolate;
}

.about-hero__visual::before {
    content: "";
    position: absolute;
    inset: 13%;
    z-index: -2;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(138, 124, 255, 0.22),
            transparent 68%
        );
    filter: blur(12px);
}

.about-orbit {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(138, 124, 255, 0.18);
    border-radius: 50%;
}

.about-orbit--one::before,
.about-orbit--two::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--about-accent);
    box-shadow:
        0 0 22px rgba(138, 124, 255, 0.9);
}

.about-orbit--one::before {
    top: 11%;
    right: 15%;
}

.about-orbit--two {
    inset: 25%;
    border-color: rgba(255, 255, 255, 0.08);
}

.about-orbit--two::before {
    bottom: 4%;
    left: 17%;
    width: 7px;
    height: 7px;
    opacity: 0.75;
}

.about-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 190px;
    height: 190px;
    display: grid;
    place-content: center;
    justify-items: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(138, 124, 255, 0.32);
    border-radius: 44px;
    background:
        linear-gradient(
            145deg,
            rgba(17, 17, 42, 0.98),
            rgba(7, 8, 23, 0.98)
        );
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.34),
        inset 0 1px rgba(255, 255, 255, 0.06);
    transform-origin: center;
}

.about-core > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #8a7cff,
            #564393
        );
    font-size: 27px;
    font-weight: 900;
}

.about-core strong {
    margin-top: 13px;
    font-size: 17px;
    letter-spacing: 0.4px;
}

.about-core small {
    margin-top: 5px;
    color: #8d8ba0;
    font-size: 8px;
    direction: ltr;
}

.about-float-card {
    position: absolute;
    min-width: 195px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    background: rgba(11, 12, 34, 0.93);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.about-float-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(138, 124, 255, 0.13);
    color: var(--about-accent-light);
    font-size: 10px;
    font-weight: 900;
}

.about-float-card strong,
.about-float-card small {
    display: block;
}

.about-float-card strong {
    font-size: 10px;
}

.about-float-card small {
    margin-top: 3px;
    color: #858398;
    font-size: 8px;
}

.about-float-card--strategy {
    top: 9%;
    right: 0;
}

.about-float-card--design {
    top: 48%;
    left: -4%;
}

.about-float-card--develop {
    right: 5%;
    bottom: 8%;
}

.about-visual-status {
    position: absolute;
    left: 14%;
    bottom: 15%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(36, 199, 142, 0.18);
    border-radius: 999px;
    background: rgba(36, 199, 142, 0.07);
    color: #7ce4c0;
    font-size: 8px;
    font-weight: 700;
}

.about-visual-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #45d7a3;
    box-shadow:
        0 0 0 5px rgba(69, 215, 163, 0.1);
}

.about-story,
.about-expertise,
.about-process,
.about-values,
.about-team,
.about-cta {
    position: relative;
    padding: 100px 0;
}

.about-story {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background:
        linear-gradient(
            180deg,
            rgba(17, 17, 42, 0.32),
            rgba(7, 8, 23, 0.12)
        );
}

.about-story__grid {
    display: grid;
    grid-template-columns:
        minmax(310px, 0.82fr)
        minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(45px, 8vw, 120px);
}

.about-section-heading {
    max-width: 680px;
}

.about-section-heading h2 {
    margin: 16px 0 0;
    font-size: clamp(
        32px,
        3.8vw,
        52px
    );
    line-height: 1.45;
    letter-spacing: -0.8px;
    text-wrap: balance;
}

.about-section-heading > p {
    margin: 18px 0 0;
    color: var(--about-muted);
    font-size: 14px;
    line-height: 2.05;
}

.about-section-heading--center {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.about-section-heading--center > span {
    justify-content: center;
}

.about-story__content > p {
    margin: 0;
    color: var(--about-muted);
    font-size: 15px;
    line-height: 2.2;
}

.about-story__content > p + p {
    margin-top: 18px;
}

.about-story__content blockquote {
    margin: 26px 0 0;
    padding: 20px 22px;
    border-right: 2px solid var(--about-accent);
    border-radius: 16px 0 0 16px;
    background: rgba(138, 124, 255, 0.06);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 2;
}

.about-expertise__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.about-expertise-card {
    position: relative;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--about-border);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(17, 17, 42, 0.88),
            rgba(7, 8, 23, 0.96)
        );
    transition:
        transform 200ms ease,
        border-color 200ms ease;
}

.about-expertise-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    left: -55px;
    bottom: -75px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(138, 124, 255, 0.13),
            transparent 70%
        );
}

.about-expertise-card:hover {
    transform: translateY(-4px);
    border-color: rgba(138, 124, 255, 0.32);
}

.about-card-index {
    color: var(--about-accent-light);
    font-size: 11px;
    font-weight: 900;
}

.about-expertise-card h3 {
    margin: 25px 0 0;
    font-size: 22px;
    line-height: 1.6;
}

.about-expertise-card p {
    max-width: 520px;
    margin: 12px 0 0;
    color: var(--about-soft);
    font-size: 12px;
    line-height: 2;
}

.about-expertise-card a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 22px;
    color: var(--about-accent-light);
    font-size: 10px;
    font-weight: 800;
}

.about-process {
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(105, 88, 234, 0.1),
            transparent 36%
        );
}

.about-process__grid {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 46px;
}

.about-process__grid::before {
    content: "";
    position: absolute;
    top: 31px;
    right: 7%;
    left: 7%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(138, 124, 255, 0.34),
            transparent
        );
}

.about-process__grid article {
    position: relative;
    z-index: 1;
    padding: 23px 20px;
    border: 1px solid var(--about-border);
    border-radius: 19px;
    background: rgba(11, 12, 34, 0.86);
}

.about-process__grid article > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(138, 124, 255, 0.23);
    border-radius: 14px;
    background: var(--about-surface);
    color: var(--about-accent-light);
    font-size: 10px;
    font-weight: 900;
}

.about-process__grid h3 {
    margin: 22px 0 0;
    font-size: 16px;
}

.about-process__grid p {
    margin: 10px 0 0;
    color: var(--about-soft);
    font-size: 10px;
    line-height: 2;
}

.about-values {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(17, 17, 42, 0.23);
}

.about-values__grid {
    display: grid;
    grid-template-columns:
        minmax(310px, 0.82fr)
        minmax(0, 1.18fr);
    gap: clamp(45px, 8vw, 110px);
}

.about-values__list {
    display: grid;
    gap: 11px;
}

.about-values__list article {
    display: grid;
    grid-template-columns: 14px 1fr;
    align-items: start;
    gap: 14px;
    padding: 19px;
    border: 1px solid var(--about-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.022);
}

.about-values__list i {
    width: 10px;
    height: 10px;
    margin-top: 7px;
    border: 2px solid var(--about-accent);
    border-radius: 50%;
    box-shadow:
        0 0 0 5px rgba(138, 124, 255, 0.08);
}

.about-values__list h3 {
    margin: 0;
    font-size: 14px;
}

.about-values__list p {
    margin: 7px 0 0;
    color: var(--about-soft);
    font-size: 10px;
    line-height: 1.9;
}

.about-team__grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 13px;
    margin-top: 46px;
}

.about-team__grid article {
    min-height: 210px;
    padding: 23px;
    border: 1px solid var(--about-border);
    border-radius: 19px;
    background:
        linear-gradient(
            160deg,
            rgba(17, 17, 42, 0.92),
            rgba(7, 8, 23, 0.92)
        );
}

.about-team__grid span {
    color: var(--about-accent-light);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
    direction: ltr;
}

.about-team__grid h3 {
    margin: 35px 0 0;
    font-size: 16px;
    line-height: 1.7;
}

.about-team__grid p {
    margin: 10px 0 0;
    color: var(--about-soft);
    font-size: 10px;
    line-height: 2;
}

.about-cta {
    padding-top: 35px;
    padding-bottom: 115px;
}

.about-cta__box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: clamp(30px, 5vw, 58px);
    overflow: hidden;
    border: 1px solid rgba(138, 124, 255, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(138, 124, 255, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #11112a,
            #09091e
        );
}

.about-cta__box::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -80px;
    bottom: -180px;
    border: 1px solid rgba(138, 124, 255, 0.16);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(138, 124, 255, 0.035),
        0 0 0 90px rgba(138, 124, 255, 0.02);
}

.about-cta__box > div {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.about-cta__box h2 {
    margin: 15px 0 0;
    font-size: clamp(
        29px,
        3.6vw,
        48px
    );
    line-height: 1.5;
    text-wrap: balance;
}

.about-cta__box p {
    max-width: 620px;
    margin: 13px 0 0;
    color: var(--about-muted);
    font-size: 12px;
    line-height: 2;
}

.about-cta__box > .button {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    min-width: 190px;
}

@media (prefers-reduced-motion: no-preference) {
    .about-core {
        animation:
            about-core-float 5s ease-in-out infinite;
    }

    .about-float-card--strategy {
        animation:
            about-card-float 6s ease-in-out infinite;
    }

    .about-float-card--design {
        animation:
            about-card-float 7s ease-in-out -1.5s infinite;
    }

    .about-float-card--develop {
        animation:
            about-card-float 6.5s ease-in-out -3s infinite;
    }

    .about-orbit--one {
        animation:
            about-orbit-spin 25s linear infinite;
    }
}

@keyframes about-core-float {
    0%,
    100% {
        transform:
            translate(-50%, -50%)
            translateY(0);
    }

    50% {
        transform:
            translate(-50%, -50%)
            translateY(-9px);
    }
}

@keyframes about-card-float {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -8px;
    }
}

@keyframes about-orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1100px) {
    .about-hero__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(410px, 0.82fr);
        gap: 40px;
    }

    .about-hero h1 {
        font-size: clamp(
            44px,
            5.5vw,
            62px
        );
    }

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

    .about-process__grid::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .about-hero {
        min-height: auto;
        padding-top: 125px;
    }

    .about-hero__grid,
    .about-story__grid,
    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__content {
        max-width: 820px;
        margin-inline: auto;
        text-align: center;
    }

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

    .about-hero__content > p {
        margin-inline: auto;
    }

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

    .about-hero__signals {
        text-align: right;
    }

    .about-hero__visual {
        width: min(100%, 600px);
        justify-self: center;
        margin-top: 25px;
    }

    .about-story__grid,
    .about-values__grid {
        gap: 38px;
    }

    .about-cta__box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .about-page {
        padding-bottom: 88px;
    }

    .about-container {
        width: min(
            calc(100% - 30px),
            1320px
        );
    }

    .about-hero {
        padding: 105px 0 65px;
    }

    .about-hero h1 {
        margin-top: 17px;
        font-size: clamp(
            37px,
            11vw,
            49px
        );
        line-height: 1.42;
        letter-spacing: -0.8px;
    }

    .about-hero__content > p {
        margin-top: 18px;
        font-size: 13px;
        line-height: 2.05;
    }

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

    .about-hero__actions .button {
        width: 100%;
    }

    .about-hero__signals {
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .about-hero__visual {
        margin-top: 10px;
        transform: scale(0.92);
    }

    .about-float-card {
        min-width: 165px;
        grid-template-columns: 36px 1fr;
        padding: 10px;
    }

    .about-float-card > span {
        width: 36px;
        height: 36px;
    }

    .about-float-card--design {
        left: -7%;
    }

    .about-visual-status {
        left: 4%;
    }

    .about-story,
    .about-expertise,
    .about-process,
    .about-values,
    .about-team {
        padding: 72px 0;
    }

    .about-section-heading h2 {
        font-size: clamp(
            29px,
            9vw,
            39px
        );
    }

    .about-section-heading > p,
    .about-story__content > p {
        font-size: 12px;
    }

    .about-expertise__grid,
    .about-process__grid,
    .about-team__grid {
        grid-template-columns: 1fr;
    }

    .about-expertise-card {
        min-height: 235px;
        padding: 23px;
    }

    .about-cta {
        padding-top: 20px;
        padding-bottom: 75px;
    }

    .about-cta__box {
        padding: 25px 20px;
        border-radius: 21px;
    }

    .about-cta__box > .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero__visual {
        width: 500px;
        max-width: none;
        margin-inline: -100px;
        transform: scale(0.72);
    }

    .about-float-card--strategy {
        right: 6%;
    }

    .about-float-card--develop {
        right: 9%;
    }

    .about-float-card--design {
        left: 2%;
    }
}
