.about-main {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0 100px;
}

.about-hero {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 70px;
    padding: 72px 0 90px;
}

.about-hero-copy h1 {
    max-width: 760px;
    margin: 10px 0 22px;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.about-hero-copy h1 span {
    display: block;
    color: #ad55ff;
}

.about-lead {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,0.74);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.75;
}

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

.about-hero-mark {
    display: grid;
    place-items: center;
    width: 320px;
    height: 320px;
    border-radius: 38px;
    border: 1px solid rgba(178,87,255,0.34);
    background:
        radial-gradient(
            circle at 40% 30%,
            rgba(183,86,255,0.28),
            transparent 55%
        ),
        rgba(13,13,20,0.8);
    box-shadow:
        0 0 80px rgba(128,35,255,0.18),
        inset 0 0 50px rgba(164,79,255,0.07);
    color: #fff;
    font-size: 7rem;
    font-weight: 950;
    letter-spacing: -0.09em;
    transform: rotate(3deg);
}

.about-section {
    padding: 72px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.about-section-heading {
    max-width: 780px;
    margin-bottom: 28px;
}

.about-section h2 {
    margin: 8px 0 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.about-story-card,
.about-future {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 5vw, 54px);
    border-radius: 26px;
    border: 1px solid rgba(172,82,255,0.2);
    background:
        linear-gradient(
            135deg,
            rgba(131,44,211,0.12),
            rgba(11,11,17,0.82) 60%
        );
    box-shadow: 0 24px 60px rgba(0,0,0,0.23);
}

.about-story-card p,
.about-future p {
    max-width: 850px;
    color: rgba(255,255,255,0.73);
    font-size: 1.08rem;
    line-height: 1.8;
}

.about-story-card p:first-child {
    margin-top: 0;
}

.about-story-card p:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-card {
    position: relative;
    min-height: 265px;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(15,15,22,0.76);
    transition:
        transform 180ms ease,
        border-color 180ms ease;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(174,81,255,0.34);
}

.about-card-number {
    margin-bottom: 38px;
    color: #a650ef;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.about-card h3 {
    margin: 0 0 12px;
    font-size: 1.55rem;
}

.about-card p {
    margin: 0;
    color: rgba(255,255,255,0.66);
    line-height: 1.7;
}

.about-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: start;
}

.about-copy-stack {
    display: grid;
    gap: 18px;
}

.about-copy-stack p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 1.08rem;
    line-height: 1.8;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.about-tags span {
    padding: 11px 16px;
    border: 1px solid rgba(165,76,255,0.24);
    border-radius: 999px;
    background: rgba(134,46,205,0.08);
    color: rgba(255,255,255,0.84);
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.055em;
}

.about-future h2 {
    margin-bottom: 20px;
}

.about-future .home-button {
    display: inline-flex;
    margin-top: 15px;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.about-facts div {
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(13,13,19,0.72);
}

.about-facts span {
    color: #9e4be6;
    font-size: 0.78rem;
    font-weight: 900;
}

.about-facts strong {
    line-height: 1.35;
}

.home-nav a[aria-current="page"] {
    color: #fff;
}

.home-nav a[aria-current="page"]::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 4px;
    border-radius: 999px;
    background: #a950f1;
}

@media (max-width: 900px) {

    .about-main {
        width: min(100% - 28px, 1180px);
        padding-top: 36px;
    }

    .about-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 52px 0 68px;
    }

    .about-hero-mark {
        width: min(100%, 320px);
        height: 230px;
        font-size: 5rem;
    }

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

    .about-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 560px) {

    .about-hero-copy h1 {
        font-size: clamp(3rem, 16vw, 5rem);
    }

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

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

    .about-facts div {
        min-height: 125px;
    }
}