/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page {
    padding-top: 64px; /* nav height */
}

/* ---- Hero (two-column) ---- */
.about-hero {
    padding: 100px 40px 80px;
}

.about-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cta);
    margin-bottom: 16px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ---- Hero Mockup ---- */
.about-mockup-panel {
    background: #F6F8FB;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 24px 80px rgba(10, 37, 64, 0.12), 0 2px 6px rgba(10, 37, 64, 0.05);
    font-family: var(--font-family);
}

.about-mockup-toolbar {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.about-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.about-mockup-greeting {
    font-size: 16px;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 2px;
}

.about-mockup-sub {
    font-size: 12px;
    color: #6B7C93;
    margin-bottom: 16px;
}

.about-mockup-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.about-mockup-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid #E3E8EE;
    border-radius: 10px;
    padding: 12px;
}

.about-mockup-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.about-mockup-card-title {
    font-size: 12px;
    font-weight: 600;
    color: #0A2540;
    margin-bottom: 2px;
}

.about-mockup-card-desc {
    font-size: 10px;
    color: #6B7C93;
    line-height: 1.3;
}

.about-mockup-ask {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E3E8EE;
    border-radius: 10px;
    padding: 10px 14px;
}

.about-mockup-ask-icon {
    font-size: 14px;
}

.about-mockup-ask-text {
    font-size: 12px;
    color: #9CA3AF;
    flex: 1;
}

.about-mockup-ask-send {
    color: #D1D5DB;
    display: flex;
}

/* ---- Mission & Vision ---- */
.about-mission {
    padding: 80px 40px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-mission-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.about-mission-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cta);
    margin-bottom: 16px;
}

.about-mission-headline {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 16px;
}

.about-mission-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ---- Founder ---- */
.about-founder {
    padding: 100px 40px;
    background: #fff;
}

.about-founder-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
}

.about-founder-image-col {
    display: flex;
    justify-content: center;
}

.about-founder-image-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.about-founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-founder-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cta);
    margin-bottom: 12px;
}

.about-founder-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.about-founder-name {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.about-founder-linkedin {
    color: #0A66C2;
    display: flex;
    align-items: center;
    transition: opacity 0.15s;
}

.about-founder-linkedin:hover {
    opacity: 0.7;
}

.about-founder-role {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-founder-bio p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-founder-bio p:last-child {
    margin-bottom: 0;
}

/* ---- Values ---- */
.about-values {
    padding: 100px 40px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-values-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-values-header {
    margin-bottom: 56px;
}

.about-values-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cta);
    margin-bottom: 12px;
}

.about-values-headline {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.about-values-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-value-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ---- What's New Strip ---- */
.about-whats-new-strip {
    padding: 100px 40px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.about-whats-new-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-whats-new-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cta);
    margin-bottom: 12px;
}

.about-whats-new-headline {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 16px;
}

.about-whats-new-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.about-whats-new-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-wn-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.about-wn-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 6px;
    flex-shrink: 0;
}

.about-wn-badge--ai {
    background: #EDE9FE;
    color: #635BFF;
}

.about-wn-badge--tools {
    background: #FCE7F3;
    color: #E91E8C;
}

.about-wn-badge--platform {
    background: #DCFCE7;
    color: #16A34A;
}

.about-wn-badge--integrations {
    background: #FFF0E6;
    color: #EA580C;
}

.about-wn-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* ---- CTA ---- */
.about-cta {
    padding: 80px 40px;
    background: #fff;
}

.about-cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-cta-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.about-cta-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-mockup {
        max-width: 500px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 20px 60px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-mission {
        padding: 60px 20px;
    }

    .about-mission-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-founder {
        padding: 60px 20px;
    }

    .about-founder-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-founder-image-wrapper {
        width: 220px;
        height: 220px;
    }

    .about-values {
        padding: 60px 20px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-values-headline {
        font-size: 26px;
    }

    .about-whats-new-strip {
        padding: 60px 20px;
    }

    .about-whats-new-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-whats-new-headline {
        font-size: 24px;
    }

    .about-cta {
        padding: 60px 20px;
    }

    .about-cta-title {
        font-size: 24px;
    }

    .about-mockup-tools {
        grid-template-columns: 1fr;
    }
}
