.about-grid {
    display: grid;
    gap: 48px
}

@media(min-width:768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start
    }
}

@media(min-width:1024px) {
    .about-grid {
        grid-template-columns: 3fr 2fr
    }
}

.about-text p {
    color: var(--slate);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.8
}

.about-text strong {
    color: var(--green);
    font-weight: 500
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px
}

.stat-card {
    background: var(--navy-card);
    border: 1px solid rgba(0, 245, 160, 0.1);
    border-radius: var(--r);
    padding: 20px;
    transition: border-color var(--tr), transform var(--tr)
}

.stat-card:hover {
    border-color: rgba(0, 245, 160, 0.3);
    transform: translateY(-3px)
}

.stat-num {
    font-family: var(--fd);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px
}

.stat-lbl {
    font-size: 0.78rem;
    color: var(--slate);
    font-family: var(--fm);
    letter-spacing: 0.05em
}

.profile-card {
    background: var(--navy-card);
    border: 1px solid rgba(0, 245, 160, 0.15);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(0, 245, 160, 0.05) 0%, transparent 65%);
    pointer-events: none
}

.photo-ring {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px
}

.photo-ring::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(var(--green), var(--cyan), var(--purple), var(--green));
    z-index: 0;
    animation: spinRing 4s linear infinite
}

.photo-ring::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--navy-card);
    z-index: 1
}

.photo-ring img {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(0, 245, 160, 0.3);
    display: block
}

.photo-fallback {
    position: relative;
    z-index: 2;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--green-dim);
    border: 2px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green)
}

.profile-name {
    font-family: var(--fd);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px
}

.profile-role {
    font-family: var(--fm);
    font-size: 0.72rem;
    color: var(--green);
    letter-spacing: 0.08em;
    margin-bottom: 24px
}

.profile-infos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left
}

.profile-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--slate)
}

.profile-info-item i {
    width: 16px;
    color: var(--green);
    flex-shrink: 0;
    font-size: 0.8rem
}

.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    margin-right: 2px;
    animation: pulseDot 2s infinite
}