html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at top left, rgba(187, 43, 180, 0.20) 0%, transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 122, 0, 0.18) 0%, transparent 34%),
        linear-gradient(180deg, #fcf5ff 0%, #fff8fc 52%, #fff4ed 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body {
    overflow-x: hidden;
}

main {
    padding-top: 12px;
    padding-bottom: 100px;
}

.about-screen {
    min-height: calc(100vh - 52px);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
}

.about-card {
    position: relative;
    width: 95vw;
    max-width: 1600px;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.84) 100%);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow:
        0 28px 80px rgba(187, 43, 180, 0.10),
        0 18px 40px rgba(255, 122, 0, 0.08);
    backdrop-filter: blur(14px);
}

.about-card__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
}

.about-card__glow--one {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.22) 0%, rgba(123, 47, 247, 0) 72%);
}

.about-card__glow--two {
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.22) 0%, rgba(255, 122, 0, 0) 72%);
}

.about-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 64px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.about-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #bb2bb4 0%, #ea2f7a 52%, #ff7a00 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(234, 47, 122, 0.18);
}

.about-card__title {
    max-width: 920px;
    margin: 24px 0 0;
    font-size: clamp(38px, 4vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #121212;
}

.about-card__title-gradient {
    display: block;
    background: linear-gradient(90deg, #7b2ff7 0%, #d91c8f 50%, #ff7a00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card__lead {
    max-width: 860px;
    margin: 24px 0 0;
    font-size: clamp(15px, 1.15vw, 19px);
    line-height: 1.7;
    color: #6f7280;
}

.about-card__grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 980px;
}

.about-card__block {
    padding: 24px 24px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #ece8f3;
    box-shadow: 0 16px 34px rgba(166, 146, 184, 0.08);
}

.about-card__block-title {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1f;
}

.about-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #6f7280;
}

.about-card__footer {
    margin-top: 30px;
    max-width: 760px;
}

.about-card__footer-line {
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #bb2bb4 0%, #ea2f7a 52%, #ff7a00 100%);
}

.about-card__note {
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: #4c4f5b;
    font-weight: 600;
}

@media (max-width: 900px) {
    main {
        height: calc(100vh - 52px);
    }

    .about-screen {
        padding: 12px;
    }

    .about-card {
        width: 95vw;
        min-height: unset;
        border-radius: 26px;
    }

    .about-card__content {
        padding: 26px 20px;
        justify-content: center;
    }

    .about-card__badge {
        height: 36px;
        padding: 0 14px;
        font-size: 12px;
    }

    .about-card__title {
        margin-top: 18px;
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.06;
    }

    .about-card__lead {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.6;
    }

    .about-card__grid {
        margin-top: 22px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-card__block {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .about-card__block-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .about-card__text {
        font-size: 13px;
        line-height: 1.55;
    }

    .about-card__footer {
        margin-top: 20px;
    }

    .about-card__note {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 560px) {
    .about-card__content {
        padding: 22px 16px;
    }

    .about-card {
        border-radius: 22px;
    }

    .about-card__title {
        font-size: 30px;
    }

    .about-card__lead {
        font-size: 13px;
    }

    .about-card__text {
        font-size: 12.5px;
    }

    .about-card__note {
        font-size: 12.5px;
    }
}