/* =========================================================
   PDF INSPECTOR
   ABOUT PAGE
   ========================================================= */

.about-page {
    background: #f7f8fc;
    color: #111827;
}


/* =========================================================
   HERO
   ========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 88px;
    background:
        radial-gradient(
            circle at 82% 30%,
            rgba(102,117,255,.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(105,232,193,.06),
            transparent 25%
        ),
        #09101f;
    color: #fff;
}

.about-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -280px;
    right: -150px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    bottom: -570px;
    left: -300px;
    border: 1px solid rgba(255,255,255,.035);
    border-radius: 50%;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 380px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    align-items: center;
    gap: 80px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.about-hero-copy {
    max-width: 720px;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #aeb8ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.about-eyebrow-dot {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    background: #69e8c1;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(105,232,193,.08);
}

.about-hero h1 {
    max-width: 720px;
    color: #fff;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 850;
    letter-spacing: -.055em;
    line-height: 1.03;
}

.about-hero h1 span {
    display: block;
    color: #8290ff;
}

.about-hero-copy > p {
    max-width: 610px;
    margin-top: 25px;
    color: #9aa6bf;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HERO CARD
   ========================================================= */

.about-hero-card {
    width: 100%;
    max-width: 360px;
    justify-self: end;
    padding: 22px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,.24);
    backdrop-filter: blur(10px);
}

.about-hero-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 21px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-file-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6675ff, #8d7aff);
    color: #fff;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    box-shadow: 0 9px 25px rgba(102,117,255,.25);
}

.about-hero-card-top strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 750;
}

.about-hero-card-top span {
    display: block;
    margin-top: 3px;
    color: #78859f;
    font-size: 11px;
}

.about-hero-card-lines {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 7px;
}

.about-hero-card-lines > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid rgba(255,255,255,.055);
}

.about-hero-card-lines > div:last-child {
    border-bottom: 0;
}

.about-hero-card-lines span {
    color: #7e8ba6;
    font-size: 11px;
}

.about-hero-card-lines strong {
    color: #dce2f0;
    font-size: 12px;
}

.about-hero-card-lines .about-status {
    color: #69e8c1;
}


/* =========================================================
   COMMON
   ========================================================= */

.about-section-heading {
    max-width: 540px;
}

.about-label {
    display: inline-block;
    margin-bottom: 13px;
    color: #6675ff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.about-section-heading h2,
.about-centered-heading h2,
.about-audience-heading h2,
.about-privacy h2 {
    color: #111827;
    font-size: clamp(28px, 3vw, 39px);
    font-weight: 820;
    letter-spacing: -.045em;
    line-height: 1.12;
}

.about-centered-heading {
    max-width: 650px;
    margin: 0 auto 45px;
    text-align: center;
}

.about-centered-heading p {
    max-width: 570px;
    margin: 15px auto 0;
    color: #687386;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   INTRO
   ========================================================= */

.about-intro {
    padding: 100px 0;
    background: #fff;
    border-bottom: 1px solid #e8ebf2;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: start;
}

.about-intro-content {
    padding-top: 25px;
}

.about-intro-content p {
    margin-bottom: 18px;
    color: #687386;
    font-size: 14px;
    line-height: 1.9;
}

.about-intro-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TOOLS
   ========================================================= */

.about-tools {
    padding: 100px 0;
}

.about-tool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.about-tool-card {
    position: relative;
    display: block;
    padding: 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e6ef;
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(27,43,75,.045);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.about-tool-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -90px;
    bottom: -100px;
    background: rgba(102,117,255,.045);
    border-radius: 50%;
    transition: transform .25s ease;
}

.about-tool-card:hover {
    transform: translateY(-4px);
    border-color: #cdd5e5;
    box-shadow: 0 20px 45px rgba(27,43,75,.09);
}

.about-tool-card:hover::after {
    transform: scale(1.35);
}

.about-tool-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.about-tool-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef1ff;
    color: #6675ff;
    border-radius: 11px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
}

.about-tool-arrow {
    color: #a2acbd;
    font-size: 20px;
    transition: transform .2s ease, color .2s ease;
}

.about-tool-card:hover .about-tool-arrow {
    color: #6675ff;
    transform: translateX(4px);
}

.about-tool-number {
    display: block;
    margin-bottom: 7px;
    color: #a4adbc;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
}

.about-tool-card h3 {
    position: relative;
    z-index: 1;
    color: #172033;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.about-tool-card p {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin-top: 10px;
    color: #687386;
    font-size: 13px;
    line-height: 1.75;
}

.about-tool-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 21px;
    color: #5265dd;
    font-size: 12px;
    font-weight: 750;
}

.about-tool-link span {
    transition: transform .2s ease;
}

.about-tool-card:hover .about-tool-link span {
    transform: translateX(4px);
}


/* =========================================================
   BENEFITS
   ========================================================= */

.about-benefits {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #e8ebf2;
    border-bottom: 1px solid #e8ebf2;
}

.about-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: #e1e6ef;
    border: 1px solid #e1e6ef;
    border-radius: 17px;
}

.about-benefit-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: #fff;
}

.about-benefit-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2ff;
    color: #6675ff;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 850;
}

.about-benefit-card h3 {
    color: #172033;
    font-size: 15px;
    font-weight: 800;
}

.about-benefit-card p {
    margin-top: 6px;
    color: #687386;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   AUDIENCE
   ========================================================= */

.about-audience {
    padding: 100px 0;
}

.about-audience-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
    gap: 80px;
    align-items: center;
    padding: 52px;
    background: #111a31;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(9,16,31,.12);
}

.about-audience-heading h2 {
    color: #fff;
}

.about-audience-heading p {
    max-width: 570px;
    margin-top: 17px;
    color: #8d99b3;
    font-size: 13px;
    line-height: 1.8;
}

.about-audience-heading .about-label {
    color: #8290ff;
}

.about-audience-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.about-audience-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 11px;
}

.about-audience-item span {
    color: #69e8c1;
    font-size: 13px;
    font-weight: 900;
}

.about-audience-item strong {
    color: #dce2ee;
    font-size: 12px;
    font-weight: 650;
}


/* =========================================================
   PRIVACY
   ========================================================= */

.about-privacy {
    padding: 90px 0;
    background: #fff;
    border-top: 1px solid #e8ebf2;
}

.about-privacy-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 90px;
    align-items: center;
}

.about-privacy-grid > div:last-child {
    max-width: 600px;
}

.about-privacy-grid p {
    color: #687386;
    font-size: 13px;
    line-height: 1.85;
}

.about-privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    color: #5265dd;
    font-size: 12px;
    font-weight: 750;
}

.about-privacy-link span {
    transition: transform .2s ease;
}

.about-privacy-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   CTA
   ========================================================= */

.about-cta {
    padding: 90px 0 100px;
    background: #f7f8fc;
}

.about-cta-inner {
    position: relative;
    overflow: hidden;
    padding: 65px 40px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 0,
            rgba(102,117,255,.18),
            transparent 42%
        ),
        #09101f;
    border-radius: 20px;
}

.about-cta-inner::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    left: 50%;
    top: -380px;
    transform: translateX(-50%);
    border: 1px solid rgba(255,255,255,.045);
    border-radius: 50%;
}

.about-cta-inner > * {
    position: relative;
    z-index: 1;
}

.about-cta-inner .about-eyebrow {
    margin-bottom: 15px;
}

.about-cta-inner h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 43px);
    font-weight: 820;
    letter-spacing: -.045em;
    line-height: 1.1;
}

.about-cta-inner p {
    margin-top: 12px;
    color: #8995ad;
    font-size: 13px;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.about-btn {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 750;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
}

.about-btn-primary {
    background: #6675ff;
    color: #fff;
    box-shadow: 0 10px 25px rgba(102,117,255,.22);
}

.about-btn-primary:hover {
    background: #7180ff;
}

.about-btn-secondary {
    background: rgba(255,255,255,.05);
    color: #d9deeb;
    border: 1px solid rgba(255,255,255,.12);
}

.about-btn-secondary:hover {
    background: rgba(255,255,255,.09);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .about-hero {
        padding: 75px 0;
    }

    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-hero-card {
        justify-self: start;
        max-width: 430px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-intro-content {
        padding-top: 0;
    }

    .about-audience-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-privacy-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}


@media (max-width: 700px) {

    .about-hero {
        padding: 62px 0;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero-copy > p {
        font-size: 14px;
    }

    .about-intro,
    .about-tools,
    .about-benefits,
    .about-audience {
        padding: 70px 0;
    }

    .about-tool-grid,
    .about-benefit-grid {
        grid-template-columns: 1fr;
    }

    .about-benefit-grid {
        gap: 1px;
    }

    .about-audience-box {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .about-privacy {
        padding: 70px 0;
    }

    .about-cta {
        padding: 60px 0 70px;
    }

    .about-cta-inner {
        padding: 50px 20px;
    }

    .about-cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-btn {
        width: 100%;
    }
}


@media (max-width: 500px) {

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero-card {
        padding: 18px;
    }

    .about-tool-card {
        padding: 23px;
    }

    .about-benefit-card {
        padding: 23px;
    }

    .about-audience-item {
        min-height: 50px;
    }

    .about-section-heading h2,
    .about-centered-heading h2,
    .about-audience-heading h2,
    .about-privacy h2 {
        font-size: 28px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-tool-card,
    .about-btn,
    .about-tool-arrow,
    .about-tool-link span,
    .about-privacy-link span {
        transition: none !important;
    }
}