/* ============================================================
SCISMIC — About Page (about.css)
============================================================ */

:root {
    --scismic-matteblue: #023a5c;
    --scismic-darkblue: #01192c;
    --navy: #0b1f34;
    --blue: #0082cb;
    --yellow: #ffd040;
    --muted: #6b7280;
    --border: #e5eaf0;
    --bg-light: #f9fafb;
    --radius: 12px;
    --trans: 0.2s ease;
    --font-sans:
        ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    --color-blue-50: oklch(97% 0.014 254.604);
    --color-blue-100: oklch(93.2% 0.032 255.585);
    --color-blue-600: oklch(54.6% 0.245 262.881);
    --color-gray-50: oklch(98.5% 0.002 247.839);
    --color-gray-100: oklch(96.7% 0.003 264.542);
    --color-gray-200: oklch(92.8% 0.006 264.531);
    --color-gray-300: oklch(87.2% 0.01 258.338);
    --color-gray-400: oklch(70.7% 0.022 261.325);
    --color-gray-500: oklch(55.1% 0.027 264.364);
    --color-gray-600: oklch(44.6% 0.03 256.802);
    --color-gray-700: oklch(37.3% 0.034 259.733);
    --color-gray-900: oklch(21% 0.034 264.665);
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-sm: 24rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --container-2xl: 42rem;
    --container-3xl: 48rem;
    --container-4xl: 56rem;
    --container-5xl: 64rem;
    --container-6xl: 72rem;
    --container-7xl: 80rem;
    --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-base: 1rem;
    --text-base--line-height: 1.5;
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: 1.2;
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-6xl: 3.75rem;
    --text-6xl--line-height: 1;
    --text-7xl: 4.5rem;
    --text-7xl--line-height: 1;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    --tracking-tight: -0.025em;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-relaxed: 1.625;
    --radius-xs: 0.125rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    --blur-sm: 8px;
    --aspect-video: 16 / 9;
    --default-transition-duration: 0.15s;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --color-border: var(--border);
}

.about-page * {
    box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════
HERO
═══════════════════════════════════════════════════════════ */
.about-hero {
    background: var(--scismic-matteblue);
    padding: 3em 0 5em;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: "";
    position: absolute;
    top: -7.5rem;
    right: -7.5rem;
    width: 31.25rem;
    height: 31.25rem;
    background: radial-gradient(
        circle,
        rgba(0, 130, 203, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.about-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    margin-bottom: 2em;
    transition: color var(--trans);
}
.about-back-link:hover {
    color: #fff;
    text-decoration: none;
}

.about-hero-title {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5em;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.5em;
}
.about-hero-sub {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    max-width: 50vw;
}
.about-hero-em {
    color: #fff;
    font-weight: 800;
}
.about-hero-highlight {
    color: var(--yellow);
    font-weight: 800;
}

/* ═══════════════════════════════════════════════════════════
SHARED SECTION
═══════════════════════════════════════════════════════════ */
.about-section {
    padding: 5em 0;
    background: #ffffff;
}
.leader-section {
    padding: 5em 0;
    background: #fafbfc;
}
.about-section--gray {
    background: var(--bg-light);
}

.about-accent-bar {
    width: 2.5rem;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}
.about-section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5em;
    font-weight: 600;
    color: var(--scismic-matteblue);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════
MISSION
═══════════════════════════════════════════════════════════ */
.about-mission-lead {
    font-size: 2em;
    font-weight: 200;
    color: var(--scismic-matteblue);
    margin-bottom: 1em;
}
.about-mission-list {
    list-style: none !important;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.about-mission-list li {
    font-size: 1.1em;
    color: var(--muted);
    position: relative;
}

/* ═══════════════════════════════════════════════════════════
LEADERSHIP INTRO
═══════════════════════════════════════════════════════════ */
.about-leadership-intro {
    margin-bottom: 5em;
}
.about-leadership-intro p {
    font-size: 1.1em;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1em;
}
.about-leadership-intro p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
LEADER CARDS
═══════════════════════════════════════════════════════════ */
.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 5em;
    padding: 5em 0;
    border-top: none;
}
/* Photo — DOM order drives left/right: photo first = photo left, info first = info left */
.leader-photo {
    flex-shrink: 0;
    width: 20em;
}
.leader-photo img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
    background: #d6eaf5;
}
.leader-photo-placeholder {
    width: 11.25rem;
    aspect-ratio: 3/4;
    background: #d6eaf5;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
}

/* Info */
.leader-info {
    flex: 1;
}
.leader-name {
    font-family: "Montserrat", sans-serif;
    font-size: 2em;
    font-weight: 600;
    color: var(--scismic-darkblue);
    margin-bottom: 0.5em;
}
.leader-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.25rem;
}
.leader-location {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 1rem;
}
.leader-bio {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.leader-tags-label {
    font-size: 0.875em;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 1em;
}
.leader-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.leader-tag {
    display: inline-block;
    font-size: 0.875em;
    font-weight: 400;
    color: var(--scismic-darkblue);
    background: white;
    border: 1px solid var(--border);
    border-radius: none !important;
    padding: 0.5em 1em;
}

/* ═══════════════════════════════════════════════════════════
CTA SECTION
═══════════════════════════════════════════════════════════ */
.about-cta {
    padding: 5em 0;
    background: #fff;
}
.about-cta-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8em;
    font-weight: 600;
    color: var(--scismic-matteblue);
    line-height: 1.2;
    margin-bottom: 1em;
}
.about-cta-sub {
    font-size: 1.1em;
    color: var(--muted);
    line-height: 1.7;
    max-width: 50vw;
    margin-bottom: 1.2em;
}
.about-cta-btn {
    display: inline-block;
    background: var(--scismic-matteblue);
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    padding: 1em 4em;
    border-radius: none !important;
    text-decoration: none !important;
    transition:
        background var(--trans),
        transform var(--trans);
    margin-bottom: 5em;
}
.about-cta-btn:hover {
    background: #0d2a45;
    color: #fff;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .leader-card,
    .leader-card--img-right {
        flex-direction: column;
        gap: 1.5rem;
    }
    .leader-photo {
        width: 100%;
        max-width: 20rem;
    }
    .leader-photo-placeholder {
        width: 100%;
        max-width: 20rem;
    }
    .leader-card--img-right .leader-photo {
        order: -1;
    }
    .about-hero-title { font-size: 2.5em; }
    .about-hero-sub { font-size: 1.2em; max-width: 100%; }
    .about-section-title { font-size: 2.2em; }
    .about-mission-lead { font-size: 1.5em; }
    .about-cta-title { font-size: 2em; }
    .about-cta-sub { max-width: 100%; }
}
@media (max-width: 575.98px) {
    .about-accent-bar { margin-left: auto; margin-right: auto; }
    .about-hero-title,
    .about-hero-sub,
    .about-section-title,
    .about-mission-lead,
    .about-cta-title,
    .about-cta-sub { text-align: center; }
    .leader-photo { margin: 0 auto; }
    .leader-name,
    .leader-title,
    .leader-location,
    .leader-tags-label { text-align: center; }
    .leader-tags { justify-content: center; }
    .about-cta-btn { display: block; text-align: center; }
}
@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 0 3.5rem;
    }
    .about-section {
        padding: 3rem 0;
    }
}
