.about-section {
    padding: 20px 0 26px;
    position: relative;
    z-index: 9;
}

.about-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
    gap: 22px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(520px 280px at 10% 0%, rgba(255, 138, 0, .18), transparent 65%),
        radial-gradient(620px 360px at 95% 12%, rgba(0, 229, 255, .14), transparent 70%),
        linear-gradient(180deg, rgba(18, 16, 38, .82), rgba(15, 14, 29, .70));
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 26px;
    position: relative;
}

.about-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 28%, transparent 72%, rgba(124, 58, 237, .10));
}

.about-copy,
.about-visual,
.about-highlights {
    position: relative;
    z-index: 1;
}

.about-copy {
    max-width: 76ch;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 138, 0, .36);
    background: rgba(255, 138, 0, .11);
    color: var(--accent2);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.about-copy h2 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1;
    font-weight: 1000;
    color: var(--text);
}

.about-copy h2 span {
    color: transparent;
    background: linear-gradient(120deg, #ffd700, #ff8a00 45%, #00e5ff);
    background-clip: text;
    -webkit-background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(255, 138, 0, .16));
}

.about-copy p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 15px;
}

.about-lead {
    color: rgba(255, 255, 255, .88) !important;
    font-size: 16px !important;
    font-weight: 700;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.about-tags span {
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, .22);
    background: rgba(0, 229, 255, .08);
    color: rgba(244, 243, 255, .92);
    font-size: 12px;
    font-weight: 900;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.about-visual {
    min-height: 460px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(220px 190px at 52% 22%, rgba(255, 138, 0, .26), transparent 70%),
        radial-gradient(280px 260px at 62% 62%, rgba(124, 58, 237, .34), transparent 72%),
        linear-gradient(180deg, rgba(11, 10, 18, .20), rgba(11, 10, 18, .72));
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-photo-glow {
    position: absolute;
    width: 88%;
    aspect-ratio: 1;
    bottom: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, .24), rgba(124, 58, 237, .18) 48%, transparent 70%);
    filter: blur(4px);
}

.about-photo {
    position: absolute;
    bottom: -78px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: auto;
    height: calc(100% + 170px);
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .58));
}

.about-sticker {
    position: absolute;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    color: white;
    font-size: 12px;
    font-weight: 1000;
    border: 1px solid rgba(255, 255, 255, .20);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.sticker-top {
    top: 32px;
    right: 28px;
    background: linear-gradient(135deg, rgba(124, 58, 237, .95), rgba(255, 138, 0, .92));
    transform: rotate(4deg);
}

.sticker-bottom {
    left: 28px;
    bottom: 36px;
    background: rgba(0, 229, 255, .22);
    backdrop-filter: blur(8px);
    transform: rotate(-5deg);
}

.about-highlights {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-highlight {
    padding: 15px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(11, 10, 18, .36);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-highlight:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, .38);
    background: rgba(11, 10, 18, .54);
}

.about-highlight b {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 14px;
    font-weight: 1000;
}

.about-highlight span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

@media (max-width: 960px) {
    .about-panel {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .about-copy h2 {
        font-size: 34px;
    }

    .about-visual {
        min-height: 410px;
    }

    .about-photo {
        bottom: -62px;
        height: calc(100% + 135px);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 16px;
    }

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

    .about-copy h2 {
        font-size: 30px;
    }

    .about-copy p,
    .about-lead {
        font-size: 14px !important;
    }

    .about-actions .btn,
    .about-actions .btn2 {
        width: 100%;
        justify-content: center;
    }

    .about-visual {
        min-height: 360px;
    }

    .about-photo {
        bottom: -54px;
        height: calc(100% + 112px);
    }

    .about-sticker {
        font-size: 11px;
    }

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