/* ============================================
   About us — public trust page.
   Brand redesign: warm shell, navy accent owns interaction, flat surfaces.
   Story-first, single readable column. No feature grid, no gradients.
   All rules page-scoped under .c-about-page.
   ============================================ */

.c-about-page {
    background: var(--bg);
    min-height: 100vh;
}

/* ==========================================================================
   Hero — title on the warm shell, no white band (matches /features, /guides)
   ========================================================================== */

.c-about-page__hero {
    padding: 56px 24px 8px;
    text-align: center;
}

.c-about-page__title {
    font-family: var(--font-display);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* ==========================================================================
   Body — one readable column, generous rhythm
   ========================================================================== */

.c-about-page__body {
    max-width: 680px;
    margin: 0 auto;
    padding: 24px 24px 64px;
}

.c-about-page__section {
    padding: 24px 0;
}

.c-about-page__section + .c-about-page__section {
    border-top: 1px solid var(--line-soft);
}

.c-about-page__heading {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--ink-heading);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.c-about-page__text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--body);
    margin: 0 0 16px 0;
}

.c-about-page__text:last-child {
    margin-bottom: 0;
}

/* Lead line — a quiet emphasis for a closing sentence, ink not accent */
.c-about-page__text--lead {
    color: var(--ink);
    font-weight: 600;
}

/* Signature — quiet sign-off under the founder note */
.c-about-page__signature {
    font-family: var(--font-display);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--ink);
    margin: 20px 0 0 0;
}

/* Link — inherits the global accent; pin colour across states so the
   global a:hover/a:visited can't repaint it (see CLAUDE.md link-as-button trap) */
.c-about-page__link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.c-about-page__link:hover,
.c-about-page__link:focus,
.c-about-page__link:visited,
.c-about-page__link:active {
    color: var(--accent-strong);
}

/* ==========================================================================
   Pricing panel — flat info panel (no cream/peach), sits inside the column
   ========================================================================== */

.c-about-page__panel {
    background: var(--accent-soft);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 28px;
    margin: 8px 0;
}

/* The panel supplies its own separation; drop the hairline above it */
.c-about-page__panel.c-about-page__section + .c-about-page__section,
.c-about-page__section + .c-about-page__panel {
    border-top: none;
}

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

@media (max-width: 640px) {
    .c-about-page__hero {
        padding: 40px 20px 4px;
    }

    .c-about-page__title {
        font-size: var(--font-size-3xl);
    }

    .c-about-page__body {
        padding: 16px 20px 48px;
    }

    .c-about-page__heading {
        font-size: var(--font-size-xl);
    }

    .c-about-page__panel {
        padding: 22px;
    }
}
