/* ═══════════════════════════════════════════
   About Us — Public Page
   ═══════════════════════════════════════════ */

/* ── Header ──────────────────────────────── */
.about-header {
    background: linear-gradient(135deg, #1a1040 0%, #2d1b69 60%, #4c1d95 100%);
    color: #fff;
    padding: 72px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(102,16,242,.25) 0%, transparent 70%);
    pointer-events: none;
}

.about-header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    font-size: .82rem;
    font-weight: 700;
    color: #d8b4fe;
    margin-bottom: 1.25rem;
    letter-spacing: .02em;
}

.about-header-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: .75rem;
    color: #fff;
}

.about-header-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Body ────────────────────────────────── */
.about-body {
    padding: 64px 0 80px;
    background: transparent;
}

/* ── Content card ────────────────────────── */
.about-content-section { margin-bottom: 48px; }

.about-content-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 4px 28px rgba(0,0,0,.3);
    border: 1.5px solid rgba(255,255,255,.1);
    line-height: 2;
    font-size: 1rem;
    color: #cbc4e0;
}

.about-content-card p {
    margin-bottom: 1.2rem;
}

.about-content-card p:last-child { margin-bottom: 0; }

/* ── Mission / Vision ────────────────────── */
.about-mv-section { margin-bottom: 56px; }

.about-mv-card {
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 2rem 2rem 2rem;
    height: 100%;
    border: 2px solid transparent;
    box-shadow: 0 4px 24px rgba(0,0,0,.3);
    position: relative;
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}

.about-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(99,102,241,.25);
}

.about-mv-mission {
    background:
        linear-gradient(160deg, rgba(15,10,35,.92), rgba(15,10,35,.8)) padding-box,
        linear-gradient(135deg, #818cf8, #c084fc) border-box;
}

.about-mv-vision {
    background:
        linear-gradient(160deg, rgba(15,10,35,.92), rgba(15,10,35,.8)) padding-box,
        linear-gradient(135deg, #34d399, #06b6d4) border-box;
}

.about-mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

.about-mv-mission .about-mv-icon { background: rgba(139,92,246,.18); color: #c4b5fd; }
.about-mv-vision .about-mv-icon  { background: rgba(6,182,212,.18); color: #5eead4; }

.about-mv-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .65rem;
}

.about-mv-card p {
    font-size: .93rem;
    color: #b8b0d4;
    line-height: 1.85;
    margin: 0;
}

/* ── CTA ─────────────────────────────────── */
.about-cta-section { padding: 8px 0 64px; }

.about-cta {
    position: relative;
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, #1a1040 0%, #2d1b69 55%, #4c1d95 100%);
    border-radius: 28px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 20px 55px rgba(26,16,64,.4);
}

.about-cta::before {
    content: '';
    position: absolute;
    inset: -15%;
    background:
        radial-gradient(circle at 12% 15%, rgba(168,85,247,.4) 0%, transparent 55%),
        radial-gradient(circle at 88% 85%, rgba(99,102,241,.35) 0%, transparent 55%);
    pointer-events: none;
    animation: aboutCtaGlowDrift 22s ease-in-out infinite;
}

@keyframes aboutCtaGlowDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-3%, 3%) scale(1.08); }
    100% { transform: translate(0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .about-cta::before { animation: none; }
}

.about-cta-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    margin: 0 auto 1.25rem;
    border-radius: 16px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #d8b4fe;
}

.about-cta h4 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.about-cta p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    margin-bottom: 1.75rem;
}

.about-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .75rem 1.75rem;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .18s, opacity .18s;
}

.about-cta-btn:hover { transform: translateY(-2px); opacity: .9; }

.about-cta-primary {
    background: linear-gradient(135deg, #6610f2, #a855f7);
    color: #fff;
}

.about-cta-outline {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.25);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
    .about-header { padding: 48px 0 40px; }
    .about-content-card { padding: 1.5rem 1.25rem; }
    .about-body { padding: 40px 0 56px; }
    .about-cta { padding: 2.5rem 1.5rem; border-radius: 22px; }
}
