/* ===== ABOUT PAGE — DEVCNX BRAND FOUNDATION ===== */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1.5rem 80px;
    font-family: var(--font-mono);
    color: var(--text);
    background: var(--dark);
    min-height: calc(100vh - 60px);
}

.about-hero,
.about-section,
.cta-box {
    border: 1px solid var(--border);
    background: var(--panel);
    padding: 1.5rem;
    margin: 0 0 1.5rem;
}

.about-hero {
    padding: 2rem 1.5rem;
}

.about-hero .status-label,
.about-section .status-label {
    font-size: 0.75rem;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 1.5rem;
    color: var(--sub-text);
}

.profile-name {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.05em;
    color: var(--text);
    margin: 0 0 1rem;
}

.bio-links {
    display: flex;
    gap: 1rem;
    margin: 0.5rem 0 1.5rem;
}

.bio-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--teal);
    text-decoration: none;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.15rem;
    transition: border-color 0.2s ease;
}

.bio-link:hover {
    border-color: var(--teal);
}

.about-hero-text {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 1rem;
}

.about-paragraph,
.about-section p,
.cta-box p {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 1rem;
    color: var(--sub-text);
}

.about-section p:last-child,
.cta-box p:last-child {
    margin-bottom: 0;
}

.about-section h2,
.cta-box h2,
.accordion-toggle h2 {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.about-section strong {
    color: var(--text);
    font-weight: 700;
}

/* ===== SCHEMATIC IDENTITY PANEL ===== */
.identity-panel {
    position: relative;
    min-height: 180px;
    margin: 0 0 2rem;
    border: 1px solid rgba(0, 218, 221, 0.35);
    background: var(--dark);
    overflow: hidden;
}

.identity-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 218, 221, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 218, 221, 0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}

.identity-node,
.identity-chip,
.identity-line {
    position: absolute;
    z-index: 1;
}

.identity-node-primary {
    left: 1.25rem;
    top: 1.25rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--teal);
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: var(--panel);
}

.identity-node-primary span {
    color: var(--teal);
}

.identity-line {
    height: 1px;
    background: var(--teal);
    opacity: 0.7;
}

.identity-line-a {
    left: 1.25rem;
    right: 1.25rem;
    top: 6.25rem;
}

.identity-line-b {
    width: 1px;
    height: 7rem;
    right: 4rem;
    top: 2rem;
}

.identity-chip {
    border: 1px solid rgba(0, 218, 221, 0.45);
    background: var(--panel);
    color: var(--teal);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.6rem;
}

.identity-chip:nth-of-type(4) {
    left: 1.25rem;
    bottom: 1.25rem;
}

.identity-chip:nth-of-type(5) {
    left: 8rem;
    bottom: 1.25rem;
}

.identity-chip:nth-of-type(6) {
    right: 1.25rem;
    bottom: 1.25rem;
}

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--dark);
    border: 1px solid var(--border);
    padding: 1rem;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.35rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--sub-text);
}

/* ===== PROCESS LIST ===== */
.about-process {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    counter-reset: process-step;
}

.about-process li {
    counter-increment: process-step;
    font-size: 0.9rem;
    margin: 0.75rem 0;
    padding-left: 2.25rem;
    position: relative;
    color: var(--sub-text);
    line-height: 1.6;
}

.about-process li::before {
    content: counter(process-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--teal);
    color: var(--dark);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== STUDIO SECTION ===== */
.about-section.studio-section {
    position: relative;
    border-color: rgba(0, 218, 221, 0.35);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
}

.about-section.studio-section::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--teal);
}

.studio-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.75rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(0, 218, 221, 0.35);
    color: var(--teal);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-section.studio-section h2 {
    color: var(--text);
}

/* ===== ACCORDION ===== */
.accordion-section {
    padding: 0;
}

.accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-mono);
    text-align: left;
}

.accordion-toggle h2 {
    margin: 0;
}

.accordion-toggle:hover {
    background: rgba(0, 218, 221, 0.05);
}

.accordion-icon {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--teal);
    transition: transform 0.2s ease;
    line-height: 1;
}

.accordion-section.open .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-section.open .accordion-content {
    max-height: 900px;
    padding: 0 1.5rem 1.5rem;
}

.resume-preview-wrapper {
    border: 1px solid var(--border);
    margin-top: 0.75rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--dark);
}

.resume-preview {
    width: 100%;
    height: 700px;
    border: none;
    max-width: 100%;
}

.resume-download {
    text-align: center;
    margin-top: 1rem;
}

.cta-box {
    text-align: left;
    margin-bottom: 0;
}

.cta-box .cta-btn {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .about-hero,
    .about-section,
    .cta-box {
        padding: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .about-container {
        padding: 5rem 1.5rem 5rem;
    }

    .profile-name {
        font-size: 1.35rem;
    }

    .identity-panel {
        min-height: 220px;
    }

    .identity-chip:nth-of-type(4),
    .identity-chip:nth-of-type(5),
    .identity-chip:nth-of-type(6) {
        left: 1.25rem;
        right: auto;
    }

    .identity-chip:nth-of-type(4) {
        bottom: 5.25rem;
    }

    .identity-chip:nth-of-type(5) {
        bottom: 3.25rem;
    }

    .identity-chip:nth-of-type(6) {
        bottom: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .resume-preview {
        height: 500px;
    }
}
