/* About Page Styles */
@import url('landing_unified.css');

.about-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.title-xl {
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Story */
.story-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #050505, #0a0a0a);
}

.container {
    max-width: 900px;
    /* Reading width */
    margin: 0 auto;
    padding: 0 40px;
}

.narrative-block p {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.section-title {
    font-family: var(--font-mono);
    color: var(--accent-orange);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.highlight {
    color: #fff;
    border-bottom: 1px solid var(--accent-red);
}

/* Council */
.council-section {
    padding: 100px 0;
}

.center-text {
    text-align: center;
}

.council-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.council-card {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.council-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 59, 48, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.council-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    pointer-events: none;
    z-index: 5;
}

.council-card:hover::before {
    left: 100%;
}

.hologram-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.avatar-letter {
    font-size: 3rem;
    font-family: var(--font-serif);
    color: #fff;
    opacity: 0.5;
}

/* Avatar Images */
.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.council-card:hover .avatar-image {
    filter: grayscale(0%) contrast(1.2);
    transform: scale(1.05);
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
    top: 0;
    left: 0;
    opacity: 0.5;
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% {
        top: -10%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

.council-info h3 {
    margin: 0 0 5px 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.council-info .role {
    display: block;
    font-family: var(--font-mono);
    color: var(--accent-orange);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.council-info p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Values */
.values-section {
    padding: 100px 0 150px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item h3 {
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer & Press styles moved to brand.css globals */

/* Mobile */
@media (max-width: 768px) {
    .narrative-block p {
        font-size: 1.1rem;
    }

    .about-hero {
        height: 60vh;
    }
}