/* ── About Hero ── */
.about-hero {
    min-height: 70vh; display: flex; align-items: center;
    padding: 120px 32px 80px; position: relative; overflow: hidden;
}
.about-hero-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; justify-content: center; }
.about-hero-photo {
    width: 260px; height: 260px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    border: 4px solid var(--purple);
    box-shadow: 0 0 60px rgba(123,90,255,.3), 0 0 120px rgba(123,90,255,.1);
}
.about-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-text { max-width: 550px; }
.about-hero-text h1 { font-size: 3rem; font-weight: 900; margin-bottom: 4px; }
.about-hero-role { color: var(--text2); font-size: 1.1rem; margin-bottom: 20px; }
.about-hero-quote {
    font-size: 1.1rem; line-height: 1.6; color: var(--text);
    border-left: 3px solid var(--purple); padding-left: 20px; margin-bottom: 24px;
    font-style: italic;
}
.about-hero-links { display: flex; gap: 12px; }

@media (max-width: 768px) {
    .about-hero-text h1 { font-size: 2rem; }
    .about-hero-photo { width: 180px; height: 180px; }
}

/* ── Profile ── */
.profile-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.profile-main p { color: var(--text2); font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; }
.profile-main p:first-child { color: var(--text); font-size: 1.15rem; }
.profile-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fact {
    background: var(--card); border: 1px solid var(--border); border-radius: 12px;
    padding: 20px; text-align: center;
}
.fact-value { font-size: 1.3rem; font-weight: 800; color: var(--purple); }
.fact-label { font-size: .8rem; color: var(--text2); margin-top: 4px; }

@media (max-width: 768px) {
    .profile-grid { grid-template-columns: 1fr; }
}

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 20px; }
.team-card {
    display: flex; align-items: center; gap: 16px;
    background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px;
}
.team-avatar {
    width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .85rem; color: #fff; background: var(--purple);
}
.team-avatar.green { background: var(--green); }
.team-avatar.orange { background: var(--orange); }
.team-avatar.red { background: var(--red); }
.team-card strong { display: block; margin-bottom: 2px; }
.team-card span { color: var(--text2); font-size: .85rem; }

/* ── Philosophy ── */
.phil-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.phil-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px; transition: .3s;
}
.phil-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.phil-icon { font-size: 2rem; margin-bottom: 14px; }
.phil-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.phil-card p { color: var(--text2); font-size: .9rem; line-height: 1.6; }

/* ── Work Style ── */
.style-list { max-width: 700px; margin-top: 20px; }
.style-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.style-item:last-child { border-bottom: none; }
.style-dot {
    width: 12px; height: 12px; border-radius: 50%; background: var(--purple);
    flex-shrink: 0; margin-top: 6px;
}
.style-item strong { display: block; margin-bottom: 4px; }
.style-item p { color: var(--text2); font-size: .9rem; margin: 0; }

/* ── Stack Full ── */
.stack-full { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.stack-category {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.stack-cat-header {
    padding: 16px 20px; font-weight: 700; font-size: 1rem; color: #fff;
    display: flex; align-items: center; gap: 8px;
}
.stack-cat-header.purple { background: linear-gradient(135deg, var(--purple), #6040cc); }
.stack-cat-header.blue { background: linear-gradient(135deg, var(--blue), #3080c0); }
.stack-cat-header.green { background: linear-gradient(135deg, var(--green), #28a080); }
.stack-cat-header.orange { background: linear-gradient(135deg, var(--orange), #d07020); }
.stack-cat-header.red { background: linear-gradient(135deg, var(--red), #cc3030); }
.stack-cat-items { padding: 16px 20px; }
.stack-item {
    padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem;
    display: flex; align-items: baseline; gap: 8px;
}
.stack-item:last-child { border-bottom: none; }
.stack-item.star::before { content: '★'; color: var(--purple); font-size: .8rem; }
.stack-item small { color: var(--text2); font-size: .8rem; }

/* ── Projects ── */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.project-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 28px; position: relative; transition: .3s;
}
.project-card:hover { border-color: var(--purple); transform: translateY(-4px); }
.project-card.featured { border-color: var(--purple); background: rgba(123,90,255,.05); }
.project-status {
    position: absolute; top: 16px; right: 16px;
    padding: 4px 10px; border-radius: 6px; font-size: .7rem; font-weight: 700; text-transform: uppercase;
}
.project-status.live { background: var(--green-bg); color: var(--green); }
.project-status.wip { background: var(--orange-bg); color: var(--orange); }
.project-card h4 { font-size: 1.2rem; margin-bottom: 10px; }
.project-card p { color: var(--text2); font-size: .9rem; line-height: 1.5; margin-bottom: 16px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ── Strengths ── */
.strengths-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.strength {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 28px; transition: .3s;
}
.strength:hover { border-color: var(--purple); }
.strength-num { font-size: 2rem; font-weight: 900; color: rgba(123,90,255,.2); margin-bottom: 8px; }
.strength h4 { margin-bottom: 8px; }
.strength p { color: var(--text2); font-size: .9rem; line-height: 1.5; }

/* ── Values ── */
.values-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.value-item { text-align: center; padding: 32px; }
.value-word {
    font-size: 1.5rem; font-weight: 900; color: var(--purple); margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 2px;
}
.value-item p { color: var(--text2); font-size: .95rem; line-height: 1.6; }

/* ── Quote ── */
.about-oneline { border-top: 1px solid var(--border); }
.big-quote {
    font-size: 1.4rem; line-height: 1.7; text-align: center; max-width: 800px; margin: 0 auto;
    color: var(--text); font-style: italic; position: relative; padding: 0 40px;
}
.big-quote::before, .big-quote::after {
    content: '"'; font-size: 4rem; color: var(--purple); opacity: .3;
    position: absolute; font-style: normal; font-weight: 900;
}
.big-quote::before { top: -20px; left: 0; }
.big-quote::after { bottom: -40px; right: 0; }

@media (max-width: 768px) {
    .big-quote { font-size: 1.1rem; padding: 0 20px; }
}
