<!-- About Page Specific CSS -->
    <style>

        .about-page {
            padding-top: 100px;
            overflow: hidden;
        }

        .about-hero {
            position: relative;
            padding: 90px 0 100px;
            text-align: center;
        }

        .about-hero::before {
            content: "";
            position: absolute;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: radial-gradient(
                circle,
                rgba(81, 70, 229, 0.18),
                transparent 68%
            );
            top: -260px;
            left: 50%;
            transform: translateX(-50%);
            pointer-events: none;
        }

        .about-hero .container {
            position: relative;
            z-index: 1;
        }

        .about-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 9px 15px;
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 999px;
            background: rgba(255,255,255,0.04);
            color: #b8b5d0;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .about-kicker span {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #5eead4;
            box-shadow: 0 0 18px rgba(94,234,212,0.8);
        }

        .about-hero h1 {
            max-width: 900px;
            margin: 0 auto;
            font-family: "Manrope", sans-serif;
            font-size: clamp(42px, 7vw, 78px);
            line-height: 1.08;
            letter-spacing: -0.045em;
        }

        .about-hero h1 span {
            display: block;
            color: #8b82ff;
        }

        .about-hero p {
            max-width: 720px;
            margin: 26px auto 0;
            font-size: 18px;
            line-height: 1.75;
            color: #aaa7bd;
        }

        .about-section {
            padding: 100px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 70px;
            align-items: center;
        }

        .about-visual {
            position: relative;
            min-height: 440px;
            border-radius: 28px;
            padding: 32px;
            background:
                linear-gradient(
                    145deg,
                    rgba(81,70,229,0.22),
                    rgba(255,255,255,0.03)
                );
            border: 1px solid rgba(255,255,255,0.1);
            overflow: hidden;
        }

        .about-visual::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(94,234,212,0.12);
            filter: blur(30px);
            top: -90px;
            right: -80px;
        }

        .about-mini-label {
            position: relative;
            z-index: 1;
            color: #a9a5c7;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .about-dashboard-card {
            position: absolute;
            left: 32px;
            right: 32px;
            bottom: 32px;
            padding: 28px;
            border-radius: 22px;
            background: rgba(15,16,37,0.85);
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(14px);
        }

        .about-dashboard-card small {
            display: block;
            color: #8d89aa;
            margin-bottom: 10px;
        }

        .about-dashboard-card strong {
            display: block;
            font-family: "Manrope", sans-serif;
            font-size: 28px;
            line-height: 1.25;
            margin-bottom: 24px;
        }

        .about-bars {
            display: flex;
            align-items: end;
            gap: 10px;
            height: 90px;
        }

        .about-bars i {
            flex: 1;
            display: block;
            border-radius: 10px 10px 3px 3px;
            background: linear-gradient(
                180deg,
                #7367f0,
                #5146e5
            );
        }

        .about-bars i:nth-child(1) { height: 38%; }
        .about-bars i:nth-child(2) { height: 68%; }
        .about-bars i:nth-child(3) { height: 50%; }
        .about-bars i:nth-child(4) { height: 88%; }
        .about-bars i:nth-child(5) { height: 72%; }

        .about-copy .section-kicker {
            margin-bottom: 18px;
        }

        .about-copy h2 {
            font-family: "Manrope", sans-serif;
            font-size: clamp(32px, 4vw, 52px);
            line-height: 1.15;
            letter-spacing: -0.035em;
            margin-bottom: 24px;
        }

        .about-copy p {
            color: #aaa7bd;
            font-size: 17px;
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .mission-section {
            border-top: 1px solid rgba(255,255,255,0.07);
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .mission-header {
            max-width: 760px;
            margin-bottom: 55px;
        }

        .mission-header h2 {
            font-family: "Manrope", sans-serif;
            font-size: clamp(34px, 5vw, 58px);
            line-height: 1.12;
            letter-spacing: -0.04em;
            margin: 16px 0 20px;
        }

        .mission-header p {
            max-width: 680px;
            color: #aaa7bd;
            font-size: 17px;
            line-height: 1.8;
        }

        .feature-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .about-feature-card {
            padding: 28px;
            min-height: 245px;
            border-radius: 22px;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.08);
            transition: transform 0.25s ease, border-color 0.25s ease;
        }

        .about-feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(139,130,255,0.5);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            margin-bottom: 24px;
            font-size: 21px;
            background: rgba(81,70,229,0.18);
            border: 1px solid rgba(139,130,255,0.25);
        }

        .about-feature-card h3 {
            font-family: "Manrope", sans-serif;
            font-size: 19px;
            margin-bottom: 12px;
        }

        .about-feature-card p {
            color: #9692ab;
            font-size: 15px;
            line-height: 1.7;
        }

        .why-section {
            padding: 110px 0;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: start;
        }

        .why-heading h2 {
            font-family: "Manrope", sans-serif;
            font-size: clamp(38px, 5vw, 60px);
            line-height: 1.12;
            letter-spacing: -0.04em;
            margin: 16px 0 22px;
        }

        .why-heading p {
            color: #aaa7bd;
            font-size: 17px;
            line-height: 1.8;
        }

        .why-list {
            display: grid;
            gap: 16px;
        }

        .why-item {
            display: flex;
            gap: 18px;
            padding: 21px;
            border-radius: 18px;
            background: rgba(255,255,255,0.025);
            border: 1px solid rgba(255,255,255,0.07);
        }

        .why-check {
            width: 30px;
            height: 30px;
            min-width: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(94,234,212,0.12);
            color: #5eead4;
            font-weight: 800;
        }

        .why-item strong {
            display: block;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .why-item p {
            color: #9793ac;
            font-size: 14px;
            line-height: 1.6;
        }

        .who-section {
            padding: 100px 0;
            border-top: 1px solid rgba(255,255,255,0.07);
        }

        .who-heading {
            max-width: 700px;
            text-align: center;
            margin: 0 auto 55px;
        }

        .who-heading h2 {
            font-family: "Manrope", sans-serif;
            font-size: clamp(36px, 5vw, 58px);
            letter-spacing: -0.04em;
            margin: 16px 0 18px;
        }

        .who-heading p {
            color: #aaa7bd;
            font-size: 17px;
            line-height: 1.8;
        }

        .who-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
        }

        .who-item {
            padding: 15px 22px;
            border-radius: 999px;
            background: rgba(255,255,255,0.035);
            border: 1px solid rgba(255,255,255,0.1);
            color: #cbc8da;
            font-weight: 600;
        }

        .about-cta {
            padding: 100px 0;
        }

        .about-cta-box {
            position: relative;
            overflow: hidden;
            padding: 75px 40px;
            text-align: center;
            border-radius: 30px;
            background:
                linear-gradient(
                    135deg,
                    rgba(81,70,229,0.34),
                    rgba(94,234,212,0.08)
                );
            border: 1px solid rgba(255,255,255,0.12);
        }

        .about-cta-box::before {
            content: "";
            position: absolute;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: rgba(81,70,229,0.25);
            filter: blur(80px);
            top: -250px;
            left: 50%;
            transform: translateX(-50%);
        }

        .about-cta-box > * {
            position: relative;
            z-index: 1;
        }

        .about-cta-box h2 {
            max-width: 760px;
            margin: 16px auto;
            font-family: "Manrope", sans-serif;
            font-size: clamp(34px, 5vw, 60px);
            line-height: 1.1;
            letter-spacing: -0.04em;
        }

        .about-cta-box p {
            max-width: 650px;
            margin: 0 auto 30px;
            color: #b6b2c8;
            font-size: 17px;
            line-height: 1.75;
        }

        .about-cta-actions {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
        }

        @media (max-width: 900px) {

            .about-grid,
            .why-grid {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .feature-cards {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media (max-width: 600px) {

            .about-page {
                padding-top: 70px;
            }

            .about-hero {
                padding: 70px 0 80px;
            }

            .about-section,
            .why-section,
            .who-section {
                padding: 75px 0;
            }

            .feature-cards {
                grid-template-columns: 1fr;
            }

            .about-visual {
                min-height: 370px;
            }

            .about-cta {
                padding: 70px 0;
            }

            .about-cta-box {
                padding: 60px 22px;
            }

        }
        
        /* =========================================================
   ABOUT PAGE TEXT COLOR FIX
========================================================= */

.about-page {
    color: #f5f3ff;
}

/* Hero heading */
.about-hero h1 {
    color: #f5f3ff !important;
}

.about-hero h1 span {
    color: #8b82ff !important;
}

/* Main section headings */
.about-copy h2,
.mission-header h2,
.why-heading h2,
.who-heading h2,
.about-cta-box h2 {
    color: #f5f3ff !important;
    opacity: 1 !important;
}

/* Section kickers */
.about-page .section-kicker {
    color: #8b82ff !important;
    opacity: 1 !important;
}

/* Feature card titles */
.about-feature-card h3 {
    color: #f5f3ff !important;
    opacity: 1 !important;
}

/* Why section titles */
.why-item strong {
    color: #f5f3ff !important;
    opacity: 1 !important;
}

/* Mini labels */
.about-mini-label {
    color: #b8b5d0 !important;
    opacity: 1 !important;
}

/* Dashboard text */
.about-dashboard-card small {
    color: #aaa7bd !important;
}

.about-dashboard-card strong {
    color: #f5f3ff !important;
}

/* Who section items */
.who-item {
    color: #e4e1f0 !important;
    opacity: 1 !important;
}

    </style>