/* ── HERO ── */
.page-hero {
    text-align: center;
    padding: 3.5rem 1.5rem 3rem;
}

.page-hero .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 14px 5px 6px;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink2);
    margin-bottom: 1.4rem;
}

.page-hero .hero-pill-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #A855F7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.page-hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary), #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── LAYOUT ── */
.about-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 3rem;
    overflow: visible;
}

.stats-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

.stat-lbl {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 4px;
}

.stat-div {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ── SECTIONS ── */
.about-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.about-section:last-child {
    border-bottom: none;
}

.section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 0.8rem;
}

.about-section h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.about-section p {
    font-size: 0.92rem;
    color: var(--ink2);
    line-height: 1.85;
    margin-bottom: 0.8rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* ── MISSION CARD ── */
.mission-card {
    background: linear-gradient(135deg, var(--primary-light), rgba(168, 85, 247, 0.08));
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 16px;
    font-size: 120px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.07;
    line-height: 1;
    font-family: serif;
}

.mission-card p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* ── FEATURES GRID ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 1.2rem;
}

.feature-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: 0 3px 14px rgba(91, 79, 233, 0.08);
}

.feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
}

.feature-text span {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* ── TOOLS LIST ── */
.tools-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 1rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink2);
    text-decoration: none;
    transition: all 0.15s;
}

.tool-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.tool-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* ── TECH STACK ── */
.tech-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.tech-chip {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink2);
    font-family: 'Fira Code', monospace;
}

/* ── CONTACT CARD ── */
.contact-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-info p {
    font-size: 13px;
    color: var(--ink2);
    margin-bottom: 4px !important;
}

.contact-info strong {
    font-size: 0.95rem;
    color: var(--ink);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, transform 0.15s;
}

.contact-btn:hover {
    background: #4A3FD4;
    transform: translateY(-1px);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .tools-list {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        gap: 1.5rem;
    }

    .stat-div {
        display: none;
    }
}