/* About Page - Editorial Design */
/* Dark background, white text, minimal, intelligence-memo aesthetic */

.about-editorial {
    background: var(--dark-bg, #0F172A);
    color: var(--text-primary, #F8FAFC);
    min-height: 100vh;
}

/* Container */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Editorial */
.navbar-editorial {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding: 16px 0;
}

.nav-container-editorial {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-wordmark-editorial {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #F8FAFC;
    text-decoration: none;
}

.nav-menu-editorial {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-menu-editorial a {
    font-size: 14px;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-menu-editorial a:hover,
.nav-menu-editorial a.active {
    color: #F8FAFC;
}

.nav-menu-editorial a.btn-primary-nav {
    background: linear-gradient(135deg, #60A5FA 0%, #22D3EE 100%);
    color: #0F172A;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-menu-editorial a.btn-primary-nav:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #0F172A;
}

/* Main Content */
.about-main {
    padding-top: 80px;
}

/* Hero */
.about-hero {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.about-hero .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #60A5FA;
    padding: 8px 16px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 20px;
    margin-bottom: 24px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #F8FAFC;
    margin-bottom: 24px;
}

.about-hero h1 .gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-lede {
    font-size: 18px;
    line-height: 1.6;
    color: #CBD5E1;
    max-width: 600px;
}

/* Sections */
.about-section {
    padding: 60px 0;
}

.about-section-border {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.about-section h2 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94A3B8;
    margin-bottom: 40px;
}

/* Metrics */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.metric {
    text-align: left;
}

.metric-value {
    display: block;
    font-size: 42px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: #60A5FA;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #CBD5E1;
    line-height: 1.4;
}

/* Expertise List */
.expertise-list {
    display: flex;
    flex-direction: column;
}

.expertise-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.expertise-row:last-child {
    border-bottom: none;
}

.expertise-category {
    font-size: 15px;
    font-weight: 600;
    color: #F8FAFC;
}

.expertise-detail {
    font-size: 15px;
    color: #CBD5E1;
    line-height: 1.6;
}

/* Principles */
.principles-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.principle h3 {
    font-size: 18px;
    font-weight: 600;
    color: #F8FAFC;
    margin-bottom: 8px;
}

.principle p {
    font-size: 15px;
    color: #CBD5E1;
    line-height: 1.6;
}

/* CTA */
.about-cta {
    padding: 80px 0;
    border-bottom: none;
}

.cta-text {
    font-size: 18px;
    color: #CBD5E1;
    margin-bottom: 16px;
}

.cta-link {
    font-size: 16px;
    font-weight: 600;
    color: #F8FAFC;
    text-decoration: none;
    border-bottom: 2px solid #60A5FA;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

/* Footer - Editorial */
.footer-editorial {
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 40px 0;
}

.footer-editorial-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand-editorial {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #F8FAFC;
}

.footer-nav-editorial {
    display: flex;
    gap: 24px;
}

.footer-nav-editorial a {
    font-size: 13px;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-editorial a:hover {
    color: #F8FAFC;
}

.footer-copy-editorial {
    font-size: 13px;
    color: #64748B;
}

/* Mobile Menu Toggle - Editorial */
.about-editorial .mobile-menu-toggle span {
    background: #F8FAFC;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-lede {
        font-size: 16px;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .metric-value {
        font-size: 36px;
    }
    
    .expertise-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .nav-menu-editorial {
        display: none;
    }
    
    .footer-editorial-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-nav-editorial {
        flex-wrap: wrap;
        justify-content: center;
    }
}
