/* Mission-page presentation: immersive hero, benefit cards, community stats,
   final CTA, responsive adjustments, and reduced-motion behavior. */

body { background: #f8f8fc; }

.about-hero {
    position: relative;
    isolation: isolate;
    min-height: 590px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px clamp(24px, 7vw, 110px);
    color: #fff;
    background:
        radial-gradient(circle at 75% 28%, rgba(126, 101, 245, .28), transparent 25%),
        linear-gradient(90deg, rgba(4, 7, 23, .97) 0%, rgba(7, 11, 34, .88) 48%, rgba(10, 10, 35, .5) 100%),
        url("../images/about_page_image.jpg") center 42% / cover no-repeat;
    border-radius: 0 0 48px 48px;
    box-shadow: 0 28px 80px rgba(21, 15, 63, .18);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .8;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 19%, #fff 0 1px, transparent 1.6px),
        radial-gradient(circle at 21% 75%, rgba(205, 213, 255, .9) 0 1px, transparent 1.7px),
        radial-gradient(circle at 46% 17%, rgba(255,255,255,.85) 0 1px, transparent 1.6px),
        radial-gradient(circle at 64% 72%, rgba(194, 181, 255, .9) 0 1.2px, transparent 1.8px),
        radial-gradient(circle at 88% 14%, rgba(255,255,255,.85) 0 1px, transparent 1.6px),
        radial-gradient(circle at 94% 82%, rgba(200, 211, 255, .75) 0 1px, transparent 1.7px);
}

.about-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 430px;
    height: 430px;
    right: 8%;
    top: 50%;
    border: 1px solid rgba(181, 169, 255, .24);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(167, 151, 255, .035), 0 0 0 140px rgba(167, 151, 255, .025);
    transform: translateY(-50%);
    pointer-events: none;
}

.about-hero > div { width: min(100%, 1180px); margin: 0 auto; }

.about-hero h1 {
    max-width: 820px;
    margin: 0 0 24px;
    color: #fff;
    font-family: 'Manrope', 'Platypi', sans-serif;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.055em;
    text-wrap: balance;
    text-shadow: 0 14px 45px rgba(0, 0, 0, .35);
}

.about-hero p {
    max-width: 760px;
    margin: 0 0 32px;
    color: #d0d3e6;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.75;
}

.about-hero .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .09);
    font-weight: 750;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.about-hero .btn:hover {
    color: #fff;
    border-color: rgba(190, 179, 255, .7);
    background: rgba(121, 101, 235, .28);
    transform: translateY(-2px);
}

/* Shared vertical rhythm and introductory headings for content sections. */
.section { padding: 92px 0; }
.section .container { margin-top: 0; margin-bottom: 0; }

.section-title {
    margin: 0 0 14px;
    color: #17182b;
    font-family: 'Manrope', 'Platypi', sans-serif;
    font-size: clamp(2.35rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.section-subtle {
    max-width: 680px;
    margin-bottom: 42px !important;
    color: #686b7e;
    font-size: 1.08rem;
}

.about-features { background: #f8f8fc; }
.about-features .row { margin-right: -10px; margin-left: -10px; }
.about-features [class*="col-"] { padding-right: 10px; padding-left: 10px; }

.feature-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 32px;
    color: #202136;
    background: rgba(255, 255, 255, .88);
    border: 1px solid #e6e4f1;
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(27, 20, 71, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -60px;
    bottom: -68px;
    border-radius: 50%;
    background: rgba(112, 91, 230, .08);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #cbc5f3;
    box-shadow: 0 22px 55px rgba(27, 20, 71, .12);
}

.feature-card .d-flex { display: block !important; }
.feature-card i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin: 0 0 25px;
    border-radius: 17px;
    color: #6b59df;
    background: #efedff;
    font-size: 1.35rem;
}

.feature-card h5 {
    margin: 0 0 10px !important;
    font-family: 'Manrope', sans-serif;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -.025em;
}

.feature-card p { color: #686b7e; font-size: .98rem; line-height: 1.7; }

/* Dark statistics band that visually separates proof points from feature cards. */
.about-stats {
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden;
    width: 100%;
    height: auto;
    min-height: 320px;
    padding: 0;
    margin: 0;
    color: #fff;
    background:
        radial-gradient(circle at 20% 0%, rgba(105, 83, 224, .28), transparent 30%),
        radial-gradient(circle at 90% 110%, rgba(128, 68, 182, .24), transparent 35%),
        #0a0e27;
}

.about-stats::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .62;
    background:
        radial-gradient(circle at 11% 28%, #fff 0 1px, transparent 1.6px),
        radial-gradient(circle at 34% 76%, rgba(255,255,255,.8) 0 1px, transparent 1.6px),
        radial-gradient(circle at 69% 20%, rgba(205,198,255,.9) 0 1px, transparent 1.6px),
        radial-gradient(circle at 88% 68%, #fff 0 1px, transparent 1.6px);
}

.stats-shell {
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    width: min(100% - 48px, 1120px);
    margin: 0 auto;
    padding: 66px 0 72px;
}

.about-stats .section-title {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.stats-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    min-width: 0;
    min-height: 126px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 14px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(214, 209, 255, .17);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 38px rgba(2, 4, 20, .14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat-number {
    display: block;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.9rem, 2.8vw, 2.55rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.035em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .2);
}

.stat-label {
    display: block;
    margin-top: 9px;
    color: #d4d6e8;
    font-size: .82rem;
    font-weight: 650;
    line-height: 1.35;
}

/* Closing conversion panel. */
.about-cta-section { padding: 90px 0 110px; background: #f8f8fc; }

.cta {
    position: relative;
    overflow: hidden;
    padding: 64px clamp(26px, 6vw, 72px);
    text-align: left;
    color: #fff;
    background: linear-gradient(125deg, #5b4cdb 0%, #7352d1 48%, #914cbd 100%);
    border: 0;
    border-radius: 28px;
    box-shadow: 0 25px 65px rgba(74, 50, 173, .24);
}

.cta::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -90px;
    top: -160px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .045), 0 0 0 120px rgba(255, 255, 255, .025);
}

.cta > * { position: relative; z-index: 1; }
.cta h3 { margin: 0 0 10px; color: #fff; font-family: 'Manrope', sans-serif; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 800; letter-spacing: -.04em; }
.cta p { margin: 0 0 24px; color: #e5e1ff; }
.cta .btn-primary { padding: 13px 21px; color: #4c3dc2 !important; background: #fff; border-color: #fff; border-radius: 999px; box-shadow: 0 10px 28px rgba(39, 25, 102, .2); }
.cta .btn-primary:hover { color: #3e31aa !important; background: #f5f3ff; transform: translateY(-2px); }

@media (max-width: 1000px) {
    .stats-shell { padding-top: 58px; padding-bottom: 62px; }
}

@media (max-width: 767px) {
    .about-hero { min-height: 520px; padding: 72px 24px; border-radius: 0 0 28px 28px; }
    .about-hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
    .about-hero::after { width: 260px; height: 260px; right: -100px; }
    .section { padding: 72px 0; }
    .feature-card { min-height: 0; }
    .stats-shell { width: min(100% - 32px, 1120px); padding: 48px 0 52px; }
    .about-stats .section-title { margin-bottom: 22px; font-size: clamp(1.9rem, 9vw, 2.5rem); }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .stat-card { min-height: 106px; padding: 16px 9px; border-radius: 15px; }
    .stat-number { font-size: clamp(1.65rem, 8vw, 2.1rem); }
    .stat-label { margin-top: 7px; color: #e0e1ee; font-size: .75rem; }
    .cta { padding: 44px 26px; }
}

@media (prefers-reduced-motion: reduce) {
    .feature-card, .about-hero .btn, .cta .btn-primary { transition: none; }
}
