/* ============================================================
   About Page
============================================================ */

.about-purpose {
    padding: 5.5rem 1.5rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--divider);
}

.about-split-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

.about-split-left {
    flex: 1.1;
}

.about-split-right {
    flex: 0.9;
}

.about-heading {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1.1rem;
}

.about-body {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

.about-body:last-of-type {
    margin-bottom: 1.5rem;
}

.about-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--magenta);
    text-decoration: none;
}

.about-link:hover {
    text-decoration: underline;
}

.purpose-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.purpose-list li {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--divider);
}

.purpose-list li:first-child {
    padding-top: 0;
}

.purpose-num {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--magenta);
    letter-spacing: 0.5px;
    flex-shrink: 0;
    padding-top: 2px;
}

.purpose-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-values-section {
    padding: 5.5rem 1.5rem;
    background: var(--bg-page);
    border-bottom: 1px solid var(--divider);
}

.values-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.values-header {
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.value-item {
    padding: 1.75rem 2rem;
    border-right: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

.value-item:nth-child(3n) {
    border-right: none;
}

.value-item:nth-child(4),
.value-item:nth-child(5),
.value-item:nth-child(6) {
    border-bottom: none;
}

.value-num {
    display: block;
    font-size: 1rem;
    color: var(--magenta);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-vision-section {
    padding: 6rem 1.5rem;
    background: var(--bg-surface);
    text-align: center;
}

.vision-inner {
    max-width: 680px;
    margin: 0 auto;
}

.vision-headline {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.vision-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .about-split-inner {
        flex-direction: column;
        gap: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-item:nth-child(3n) {
        border-right: 1px solid var(--divider);
    }

    .value-item:nth-child(2n) {
        border-right: none;
    }

    .value-item:nth-child(4),
    .value-item:nth-child(5),
    .value-item:nth-child(6) {
        border-bottom: 1px solid var(--divider);
    }

    .value-item:nth-child(5),
    .value-item:nth-child(6) {
        border-bottom: none;
    }
}

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

    .value-item {
        border-right: none !important;
        border-bottom: 1px solid var(--divider) !important;
    }

    .value-item:last-child {
        border-bottom: none !important;
    }
}