.about-me-section {
    background: #2a2a2a;
    padding: 0;
}

.about-me-checker {
    position: relative;
    width: 100%;
    height: clamp(64px, 7vw, 92px);
    overflow: hidden;
    transform: rotate(2deg) scale(1.01);
    transform-origin: center;
    margin-top: -0.2rem;
    margin-bottom: -0.9rem;
    z-index: 2;
}

.about-me-checker__track {
    position: absolute;
    inset: 0 -20%;
    background: conic-gradient(from 90deg, #57ea22 0 25%, #062f08 25% 50%, #57ea22 50% 75%, #062f08 75% 100%);
    background-size: 96px 96px;
    animation: checkerMove 2.8s linear infinite;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.about-me-checker__track::before {
    content: none;
}

.about-me-card {
    position: relative;
    display: flex;
    align-items: center;
    max-width: none;
    width: 100%;
    min-height: clamp(620px, 64vw, 860px);
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    background: #1f2a1f;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.about-me-card.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.about-me-card__media,
.about-me-card__photo,
.about-me-card__overlay {
    position: absolute;
    inset: 0;
}

.about-me-card__media {
    transform: translate3d(0, var(--about-parallax-y, 0px), 0);
    will-change: transform;
}

.about-me-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.02);
}

.about-me-card__overlay {
    background:
        linear-gradient(90deg, rgba(11, 14, 13, 0.78) 0%, rgba(12, 15, 14, 0.64) 27%, rgba(10, 12, 12, 0.2) 52%, rgba(0, 0, 0, 0) 74%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.16));
}

.about-me-card__content-shell {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-me-card__content {
    position: relative;
    width: min(100%, 750px);
    margin-left: 0;
    padding: clamp(2.25rem, 4.5vw, 3.8rem) clamp(0.5rem, 1.4vw, 1.2rem) clamp(2.25rem, 4.5vw, 3.8rem) 0;
    color: #f4f4f1;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.about-me-card__eyebrow {
    margin: 0 0 0.2rem;
    font-size: clamp(1.05rem, 1.45vw, 1.9rem);
    line-height: 1;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
}

.about-me-card__title {
    margin: 0 0 1.1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-size: clamp(1.9rem, 2.9vw, 3.05rem);
    line-height: 0.95;
}

.about-me-card__title-stroke {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -0.45rem;
    height: 0.35rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.4px),
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92) 0 1px, transparent 1.4px),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.4px),
        radial-gradient(circle at 85% 45%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.4px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
    transform: rotate(-2deg);
    opacity: 0.95;
}

.about-me-card__text {
    margin: 0 0 1.05rem;
    font-size: clamp(1.3rem, 1.3vw, 1.3rem);
    line-height: 1.4;
    max-width: 72ch;
    color: rgba(255, 255, 255, 0.93);
    font-weight: 100;
}

.about-me-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.7rem;
}

.about-me-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 7.6rem;
    padding: 0.58rem 2.95rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1.45rem;
    line-height: 1;
}

.about-me-card__tag--green {
    background: #58ea22;
    color: #ffffff;
}

.about-me-card__tag--light {
    background: #f0f0eb;
    color: #2f302f;
}

.about-me-card__avatar-sticker {
    position: absolute;
    z-index: 3;
    width: clamp(54px, 5.8vw, 86px);
    right: clamp(29%, 32vw, 36%);
    top: clamp(18%, 24%, 28%);
    transform: rotate(-5deg);
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

@keyframes checkerMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 72px 0;
    }
}

@media (max-width: 992px) {
    .about-me-checker {
        height: 62px;
        margin-bottom: -0.6rem;
    }

    .about-me-checker__track { background-size: 60px 60px; }

    .about-me-card {
        min-height: 700px;
    }

    .about-me-card__photo {
        object-position: 62% center;
    }

    .about-me-card__overlay {
        background:
            linear-gradient(180deg, rgba(10, 12, 11, 0.72) 0%, rgba(10, 12, 11, 0.48) 42%, rgba(10, 12, 11, 0.18) 100%),
            linear-gradient(90deg, rgba(10, 12, 11, 0.62) 0%, rgba(10, 12, 11, 0.16) 60%, rgba(0, 0, 0, 0) 100%);
    }

    .about-me-card__content {
        width: min(100%, 580px);
        margin-left: 0;
        padding: 2.35rem 0.65rem 2.25rem 0;
    }

    .about-me-card__title {
        margin-bottom: 1rem;
    }

    .about-me-card__avatar-sticker {
        width: 72px;
        right: 33%;
        top: 18%;
    }
}

@media (max-width: 576px) {
    .about-me-section { padding: 0; }

    .about-me-checker {
        height: 48px;
        margin-bottom: -0.35rem;
        transform: rotate(2.2deg) scale(1.02);
    }

    .about-me-checker__track {
        inset: 0 -35%;
    }

    .about-me-checker__track {
        background-size: 42px 42px;
        animation-duration: 2.1s;
    }

    .about-me-card {
        min-height: 620px;
    }

    .about-me-card__photo {
        object-position: 85% center;
    }

    .about-me-card__overlay {
        background:
            linear-gradient(180deg, rgba(8, 10, 9, 0.7) 0%, rgba(8, 10, 9, 0.42) 55%, rgba(8, 10, 9, 0.16) 100%),
            linear-gradient(90deg, rgba(8, 10, 9, 0.58) 0%, rgba(8, 10, 9, 0.16) 68%, rgba(0, 0, 0, 0) 100%);
    }

    .about-me-card__content {
        width: 100%;
        margin-left: 0;
        padding: 2rem 0.25rem 1.75rem 1rem;
    }

    .about-me-card__eyebrow {
        font-size: 1rem;
    }

    .about-me-card__title {
        font-size: 1.9rem;
        margin-bottom: 0.95rem;
    }

    .about-me-card__title-stroke {
        height: 0.26rem;
        bottom: -0.35rem;
    }

    .about-me-card__text {
        font-size: 0.8rem;
        line-height: 1.15;
        max-width: 35ch;
        margin-bottom: 0.7rem;
    }

    .about-me-card__tags {
        gap: 0.45rem;
        margin-top: 0.35rem;
    }

    .about-me-card__tag {
        min-width: 6.9rem;
        font-size: 0.78rem;
        padding: 0.35rem 0.85rem;
    }

    .about-me-card__avatar-sticker {
        width: 52px;
        right: 30%;
        top: 16%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-me-checker__track {
        animation: none;
    }

    .about-me-card__media {
        transform: none;
        will-change: auto;
    }
}
