/**
 * About Page Styles
 * Founder story / manifesto — long-form narrative typography.
 * Restrained, reading-focused. No feature grids, no cards, no animation.
 */

/* ==========================================================================
   Page layout
   ========================================================================== */

.about-page {
    min-height: 100vh;
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
}

/* All sections share the same narrow reading column. */
.about-hero,
.about-section,
.about-cta,
.about-disclaimer {
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Section 1 — Hero
   ========================================================================== */

.about-hero {
    text-align: center;
    padding: 60px 0 80px;
}

.about-hero-title {
    font-size: 2.75rem;
    line-height: 1.15;
    color: var(--text-primary);
    margin: 0 0 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Sections 2–7 — Long-form prose
   ========================================================================== */

.about-section {
    padding: 60px 0;
    border-top: 1px solid rgba(127, 127, 127, 0.12);
}

.about-section-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 28px;
    font-weight: 600;
    line-height: 1.3;
}

.about-prose p {
    font-size: 1.125rem;     /* ~18px */
    line-height: 1.75;
    color: var(--text-primary);
    margin: 0 0 1.4em;
}

.about-prose p:last-child {
    margin-bottom: 0;
}

/* Section 4 — quote block */
.about-quote {
    margin: 36px 0;
    padding: 4px 0 4px 24px;
    border-left: 4px solid var(--accent-primary, #6366f1);
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--text-primary);
    quotes: "\201C" "\201D";
}

.about-insight-conclusion {
    font-weight: 600;
}

/* Section 6 — Principles. Bolded lead phrase comes from `<strong>` injected
   via i18n string + v-html. Render principles as stacked paragraphs with
   visible spacing — explicitly not a bullet list, not cards. */
.about-principles .about-principle {
    margin: 0 0 1.6em;
}

.about-principles .about-principle:last-child {
    margin-bottom: 0;
}

.about-principles .about-principle strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Section 7 — Company link (no underline, accent color) */
.about-company-link {
    color: var(--accent-primary, #6366f1);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

.about-company-link:hover {
    opacity: 0.8;
}

/* ==========================================================================
   Section 8 — Final CTA
   ========================================================================== */

.about-cta {
    text-align: center;
    padding: 100px 0 60px;
    border-top: 1px solid rgba(127, 127, 127, 0.12);
}

.about-cta-headline {
    font-size: 1.85rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0 0 32px;
    line-height: 1.3;
}

.about-cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.28);
}

.about-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.36);
}

.about-cta-subtitle {
    margin: 22px 0 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Section 9 — Mini disclaimer
   ========================================================================== */

.about-disclaimer {
    padding: 40px 0 20px;
    text-align: center;
}

.about-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 10px;
    opacity: 0.8;
}

.about-disclaimer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

.about-disclaimer-links a:hover {
    border-bottom-color: var(--text-secondary);
}

.about-disclaimer-sep {
    color: var(--text-secondary);
    opacity: 0.5;
    margin: 0 4px;
}

/* ==========================================================================
   Light theme overrides
   ========================================================================== */

[data-theme="light"] .about-section,
[data-theme="light"] .about-cta {
    border-top-color: rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 768px) {
    .about-page {
        padding: 60px 18px 30px;
    }

    .about-hero {
        padding: 40px 0 50px;
    }

    .about-hero-title {
        font-size: 2.1rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 50px 0;
    }

    .about-section-title {
        font-size: 1.3rem;
        margin-bottom: 22px;
    }

    .about-prose p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .about-quote {
        font-size: 1.2rem;
        padding-left: 18px;
        margin: 28px 0;
    }

    .about-cta {
        padding: 70px 0 40px;
    }

    .about-cta-headline {
        font-size: 1.5rem;
    }

    .about-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
