/* ==========================================================================
   ABOUT PAGE — CUSTOM CSS
   ========================================================================== */

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.abt-hero {
    padding: 160px 24px 100px;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.abt-hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.abt-hero-glow::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: rgba(31, 59, 255, 0.18);
    border-radius: 50%;
    filter: blur(120px);
    top: -200px; left: 50%;
    transform: translateX(-50%);
}
.abt-hero-glow::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(20, 184, 166, 0.12);
    border-radius: 50%;
    filter: blur(100px);
    bottom: -100px; right: 10%;
}

.abt-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.abt-hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6E7CFF;
    margin-bottom: 20px;
}

.abt-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.0;
    letter-spacing: -0.035em;
}

.abt-hero-desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: #9A9B9F;
    line-height: 1.6;
    max-width: 52ch;
    margin: 0 auto;
}

/* ─── Story / Mission ────────────────────────────────────────────────────── */
.abt-story {
    padding: 120px 24px;
    background: #fff;
}

.abt-story-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.abt-story-eyebrow { margin-bottom: 20px; }

.abt-story-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.abt-story-text {
    font-family: var(--font-body);
    font-size: 16.5px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 48ch;
}

.abt-story-visual {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(12,13,16,0.08);
}
.abt-story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── Founder Section ────────────────────────────────────────────────────── */
.abt-founder {
    padding: 100px 24px;
    background: #F5F4EF;
    border-top: 1px solid rgba(12,13,16,0.07);
    border-bottom: 1px solid rgba(12,13,16,0.07);
}

.abt-founder-inner {
    max-width: 900px;
    margin: 0 auto;
}

.abt-founder-card {
    background: #fff;
    border: 1px solid rgba(12,13,16,0.08);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
}

.abt-founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(12,13,16,0.08);
}
.abt-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abt-founder-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.abt-founder-role {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(31,59,255,0.06);
    border: 1px solid rgba(31,59,255,0.15);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.abt-founder-bio {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 12px;
    max-width: 48ch;
}

.abt-founder-exp {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.abt-founder-exp li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}
.abt-founder-exp li span {
    color: var(--primary);
    font-size: 13px;
    flex-shrink: 0;
}

.abt-founder-links {
    display: flex;
    gap: 12px;
}

.abt-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-dark);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s;
}
.abt-linkedin:hover { background: var(--primary); }

/* ─── Values ─────────────────────────────────────────────────────────────── */
.abt-values {
    padding: 120px 24px;
    background: #fff;
    border-bottom: 1px solid rgba(12,13,16,0.07);
}

.abt-values-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.abt-values-header {
    max-width: 560px;
    margin-bottom: 64px;
}
.abt-values-eyebrow { margin-bottom: 20px; }
.abt-values-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.abt-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.abt-value-card {
    padding: 36px 28px;
    background: #F5F4EF;
    border: 1px solid rgba(12,13,16,0.06);
    border-radius: 16px;
    transition: border-color 0.3s;
}
.abt-value-card:hover {
    border-color: rgba(31,59,255,0.2);
}

.abt-value-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(31,59,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.abt-value-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.abt-value-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── Global Reach ───────────────────────────────────────────────────────── */
.abt-global {
    padding: 100px 24px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.abt-global-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.abt-global-glow::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: rgba(31,59,255,0.15);
    border-radius: 50%;
    filter: blur(120px);
    top: -150px; right: -100px;
}

.abt-global-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.abt-global-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6E7CFF;
    margin-bottom: 20px;
}

.abt-global-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.abt-global-desc {
    font-family: var(--font-body);
    font-size: 17px;
    color: #9A9B9F;
    line-height: 1.6;
    max-width: 48ch;
    margin: 0 auto 48px;
}

.abt-locations {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.abt-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #E2E8F0;
    transition: border-color 0.3s;
}
.abt-location-pill:hover {
    border-color: rgba(110,124,255,0.3);
}

.abt-location-pill .flag {
    font-size: 18px;
    line-height: 1;
}

.abt-hq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(31,59,255,0.1);
    border: 1px solid rgba(31,59,255,0.25);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #6E7CFF;
}

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.abt-cta {
    padding: 100px 24px;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(12,13,16,0.07);
}

.abt-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.abt-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.abt-cta-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.abt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(31,59,255,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.abt-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(31,59,255,0.4);
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .abt-story-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .abt-founder-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
        padding: 36px 28px;
    }
    .abt-founder-photo {
        margin: 0 auto;
    }
    .abt-founder-bio,
    .abt-story-text {
        max-width: none;
    }
    .abt-founder-exp {
        align-items: center;
    }
    .abt-founder-links {
        justify-content: center;
    }
    .abt-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .abt-founder-card {
        padding: 28px 20px;
    }
    .abt-founder-photo {
        width: 160px;
        height: 160px;
    }
}
