/* ============================================================
   About page (/about) — Story collage, quick links
   ============================================================ */

/* ── Story: intro + two staggered photo/quote/stat tile columns ── */

.story-intro .section-heading,
.story-intro .section-subtext {
    text-align: left;
}

.story-intro .section-subtext {
    margin: 0 0 1.1rem;
}

.story-intro .section-subtext:last-child {
    margin-bottom: 0;
}

.story-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    min-height: 460px;
}

.story-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-tile-lg {
    flex: 3;
}

.story-tile-sm {
    flex: 2;
}

.story-tile-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-tile-quote {
    background: var(--gradient-navy-blue, linear-gradient(135deg, #0b1f4b 0%, #1272ba 100%));
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.story-tile-quote-text {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    color: var(--white, #ffffff);
    letter-spacing: -0.01em;
    margin: 0;
}

.story-tile-stat {
    background: var(--surface, #1c1c1c);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.08));
    align-items: center;
    text-align: center;
    padding: 1.25rem;
}

.story-tile-stat-number {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--brand-primary-light, #2e8fd4);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.story-tile-stat-label {
    color: var(--text-muted, #a0a0a0);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 767px) {
    .story-col {
        min-height: 360px;
    }
}

/* ── Highlight panel inline stats (compact variant of .stats-bar) ── */

.highlight-stats {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.highlight-stat-number {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--brand-primary-light, #2e8fd4);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.highlight-stat-label {
    color: var(--text-muted, #a0a0a0);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* ── History: horizontal timeline (stacks to vertical on mobile) ── */

.history-timeline {
    display: flex;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.history-item {
    flex: 1;
    position: relative;
    padding-top: 2rem;
    text-align: center;
}

.history-item::before {
    content: "";
    position: absolute;
    top: 7px;
    right: 50%;
    width: 100%;
    height: 2px;
    background: var(--border, rgba(18, 114, 186, 0.25));
    z-index: 0;
}

.history-item:first-child::before {
    display: none;
}

.history-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand-primary, #1272ba);
    border: 3px solid var(--bg, #111111);
    box-shadow: 0 0 0 2px var(--border, rgba(18, 114, 186, 0.25));
    z-index: 1;
}

.history-stage {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary-light, #2e8fd4);
    margin-bottom: 0.5rem;
}

.history-title {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text, #ffffff);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.history-body {
    color: var(--text-muted, #a0a0a0);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .history-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .history-item {
        text-align: left;
        padding-top: 0;
        padding-left: 2rem;
    }

    .history-item::before {
        top: -1rem;
        left: 7px;
        right: auto;
        width: 2px;
        height: calc(100% + 1rem);
    }

    .history-dot {
        top: 4px;
        left: 0;
        transform: none;
    }
}

/* ── Future / roadmap list item ── */

.future-item {
    height: 100%;
    padding: 0.25rem 0 0.25rem 1.25rem;
    border-left: 3px solid var(--brand-primary, #1272ba);
}

.future-item-label {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-primary-light, #2e8fd4);
    margin-bottom: 0.5rem;
}

.future-item-title {
    font-family: var(--font-heading, "Oswald", sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text, #ffffff);
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.future-item-body {
    color: var(--text-muted, #a0a0a0);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

