/* ──────────────────────────────────────────────────
   /about page — visual styles
────────────────────────────────────────────────── */

/* Page hero — accent override so "Who We Are." reads solid green
   to mirror the careers page treatment. */
#pg-h1 .text-grad {
    background: none;
    color: #10B981;
    -webkit-text-fill-color: #10B981;
}

/* Hero breadcrumb */
.ab-breadcrumb a,
.ab-breadcrumb span {
    font-size: .75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: none;
    transition: color .25s;
}
.ab-breadcrumb a:hover     { color: rgba(255, 255, 255, .7); }
.ab-breadcrumb .sep        { margin: 0 .5rem; color: rgba(255, 255, 255, .2); }
.ab-breadcrumb .current    { color: rgba(255, 255, 255, .6); }

/* ── INTRO BLOCK ────────────────────────────────────── */
.ab-intro-lead {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.6vw, 2.5rem);
    line-height: 1.25;
    letter-spacing: -.025em;
    color: var(--midnight, #040C1E);
}
.ab-intro-lead em {
    font-style: normal;
    background: linear-gradient(135deg, #10B981, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ab-intro-meta {
    color: rgba(10, 22, 40, .55);
    font-size: .95rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 460px;
}

/* ── PILLARS (Mission / Vision / Values) ────────────── */
.ab-pillar-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(10, 22, 40, .06);
    border-radius: 24px;
    padding: 2.25rem 2rem 2rem;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.16,1,.3,1),
                box-shadow .4s,
                border-color .4s;
}
.ab-pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(16, 185, 129, .08), transparent 55%);
    opacity: 0;
    transition: opacity .45s;
    pointer-events: none;
}
.ab-pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, .22);
    box-shadow: 0 24px 60px rgba(4, 12, 30, .08);
}
.ab-pillar-card:hover::before { opacity: 1; }

.ab-pillar-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    color: rgba(16, 185, 129, .65);
    letter-spacing: .12em;
}
.ab-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, .12), rgba(5, 150, 105, .06));
    border: 1px solid rgba(16, 185, 129, .2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-pillar-icon svg { color: #10B981; }

.ab-pillar-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(10, 22, 40, .35);
    margin-bottom: .75rem;
}
.ab-pillar-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--midnight, #040C1E);
    margin-bottom: 1.1rem;
}
.ab-pillar-desc {
    color: rgba(10, 22, 40, .55);
    font-size: .92rem;
    line-height: 1.75;
    font-weight: 400;
}

/* ── TIMELINE ───────────────────────────────────────── */
.ab-timeline {
    position: relative;
}
.ab-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg,
                rgba(16, 185, 129, .25),
                rgba(16, 185, 129, .12) 40%,
                rgba(10, 22, 40, .08));
}
.ab-timeline-item {
    position: relative;
    padding: 0 0 3rem 4rem;
}
.ab-timeline-item:last-child { padding-bottom: 0; }

.ab-timeline-dot {
    position: absolute;
    left: 14px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #10B981;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, .12);
    transition: box-shadow .35s, transform .35s;
}
.ab-timeline-item:hover .ab-timeline-dot {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, .18);
}

.ab-timeline-year {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: .8rem;
    color: #10B981;
    letter-spacing: .12em;
    margin-bottom: .5rem;
}
.ab-timeline-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    color: var(--midnight, #040C1E);
    letter-spacing: -.025em;
    line-height: 1.2;
    margin-bottom: .65rem;
}
.ab-timeline-desc {
    color: rgba(10, 22, 40, .55);
    font-size: .92rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 620px;
}

@media (min-width: 1024px) {
    .ab-timeline-item { padding-left: 5rem; }
    .ab-timeline::before { left: 28px; }
    .ab-timeline-dot { left: 20px; }
}

/* ── PRINCIPLES GRID ────────────────────────────────── */
.ab-principle-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(10, 22, 40, .06);
    border-radius: 20px;
    padding: 2rem 1.85rem;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.16,1,.3,1),
                border-color .4s,
                box-shadow .4s;
}
.ab-principle-card::after {
    content: '';
    position: absolute;
    inset: auto auto -40% -40%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, .12), transparent 70%);
    opacity: 0;
    transition: opacity .45s;
    pointer-events: none;
}
.ab-principle-card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, .22);
    box-shadow: 0 20px 50px rgba(4, 12, 30, .07);
}
.ab-principle-card:hover::after { opacity: 1; }

.ab-principle-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1rem;
}
.ab-principle-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: .72rem;
    color: rgba(10, 22, 40, .3);
    letter-spacing: .14em;
}
.ab-principle-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, .08);
    border: 1px solid rgba(16, 185, 129, .18);
}
.ab-principle-icon svg { color: #10B981; }
.ab-principle-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--midnight, #040C1E);
    letter-spacing: -.02em;
    line-height: 1.25;
    margin-bottom: .55rem;
}
.ab-principle-desc {
    color: rgba(10, 22, 40, .55);
    font-size: .88rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ── LEADERSHIP CARDS ───────────────────────────────── */
.ab-team-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(10, 22, 40, .06);
    border-radius: 22px;
    padding: 2rem 1.85rem 1.85rem;
    transition: transform .4s cubic-bezier(.16,1,.3,1),
                border-color .4s,
                box-shadow .4s;
}
.ab-team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, .22);
    box-shadow: 0 22px 55px rgba(4, 12, 30, .08);
}
.ab-team-avatar {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: .03em;
    color: #fff;
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 10px 24px rgba(16, 185, 129, .25);
    margin-bottom: 1.35rem;
}
.ab-team-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -.02em;
    color: var(--midnight, #040C1E);
    margin-bottom: .2rem;
}
.ab-team-role {
    color: #10B981;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.ab-team-bio {
    color: rgba(10, 22, 40, .55);
    font-size: .85rem;
    line-height: 1.65;
    font-weight: 400;
}

/* ── STATS STRIP (light variant) ─────────────────────── */
.ab-stat-block {
    text-align: center;
    padding: 2rem 1rem;
}
.ab-stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 4.5vw, 3.6rem);
    color: var(--midnight, #040C1E);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .55rem;
}
.ab-stat-num .ab-stat-suffix { color: #10B981; }
.ab-stat-label {
    color: rgba(10, 22, 40, .4);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    line-height: 1.4;
}

/* ── BOTTOM CTA ─────────────────────────────────────── */
.ab-cta-card {
    background: linear-gradient(135deg, #040C1E 0%, #0d1833 100%);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}
.ab-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(16, 185, 129, .22), transparent);
    pointer-events: none;
}
