body::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 90%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.75;
}

.about-hero-content {
    grid-template-columns: 0.5fr 1.5fr;
    align-items: center;
    gap: 32px;
    padding: 64px 32px;
}

.portrait-frame::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 90%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.75;
}

.portrait-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.portrait-frame svg {
    width: 100%;
    display: block;
}

.signature {
    background: linear-gradient(160deg, #0f2a18, #0a1f12 60%);
    position: absolute;
    bottom: 18px;
    left: 22px;
    font-family: 'Sora', cursive;
    font-style: italic;
    color: var(--green-light);
    font-size: 15px;
    opacity: .85;
    padding: 5px;
}

.about-hero-right h2 {
    font-size: 30px;
    margin-bottom: 16px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text);
}

.check-list svg {
    width: 18px;
    height: 18px;
    stroke: var(--green-light);
    flex-shrink: 0;
}

/* experience section */
.experince {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 40px;
    margin: 0 0 32px 0;
}

.experince h3 {
    font-size: 24px;
    margin-bottom: 28px;
}

.timeline {
    position: relative;
    padding-left: 26px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: linear-gradient(to bottom, var(--green-light), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 26px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 0 4px rgba(103, 253, 103, 0.18);
}

.timeline-item .date {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-light);
    letter-spacing: .04em;
}

.timeline-item h4 {
    font-size: 15.5px;
    margin: 4px 0 6px;
}

.timeline-item p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* stats row */
.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 32px 40px 0 ;
    margin: 32px 0 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--text-muted);
}

.stat-box b {
    color: var(--green-light);

}

/* aim section  */
.drives {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 40px;
    margin: 32px 0;
}

.drives-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-dim);
    width: 100%;
    margin-bottom: 6px;
}

.drive-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-muted);
}

.drive-item svg {
    width: 48px;
    color: var(--green-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 8px;
    text-align: center;
}