/* StartForThem - Campaign Landing Styles
   Vanilla CSS only. No Tailwind.
   Lean single-page landing for ad/campaign traffic. */

:root {
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    --color-navy: #1a2332;
    --color-warm: #f8f6f3;
    --color-accent: #2d6a4f;
    --color-accent-light: #40916c;
    --color-text: #2d3748;
    --color-text-light: #4a5568;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background: white;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------------------------------------
   Hero
   ---------------------------------------- */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 24px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.35rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta {
    display: inline-block;
    background: var(--color-accent);
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
}

.cta:hover {
    background: var(--color-accent-light);
}

/* ----------------------------------------
   The Weight
   ---------------------------------------- */
.weight {
    padding: 64px 0;
    background: var(--color-warm);
}

.weight p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto 16px;
    text-align: center;
}

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

.weight em {
    font-style: italic;
    color: var(--color-navy);
}

/* ----------------------------------------
   The Simple Truth
   ---------------------------------------- */
.truth {
    padding: 80px 0;
}

.truth h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 32px;
    text-align: center;
}

.truth-list {
    list-style: none;
    max-width: 520px;
    margin: 0 auto 32px;
}

.truth-list li {
    font-size: 1.15rem;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text);
}

.truth-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.truth-note {
    font-size: 1.05rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

/* ----------------------------------------
   Social Proof
   ---------------------------------------- */
.proof {
    padding: 80px 0;
    background: var(--color-warm);
}

.proof h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 40px;
    text-align: center;
}

.proof-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 560px;
    margin: 0 auto;
}

.proof-card {
    background: white;
    border-radius: 8px;
    padding: 28px 32px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.proof-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 12px;
    font-style: italic;
}

.proof-card cite {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: normal;
    font-weight: 500;
}

/* ----------------------------------------
   Final CTA
   ---------------------------------------- */
.final-cta {
    padding: 100px 0 80px;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.final-cta > .container > p {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.cta-sub {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 12px;
}

.cta-bridge {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta {
    font-size: 1.15rem;
    padding: 18px 48px;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.campaign-footer {
    padding: 48px 0 32px;
    border-top: 1px solid #e8e5e0;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.footer-legal {
    font-size: 0.75rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.15rem;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .weight {
        padding: 48px 0;
    }

    .weight p {
        font-size: 1.1rem;
    }

    .truth,
    .proof {
        padding: 60px 0;
    }

    .truth h2 {
        font-size: 1.8rem;
    }

    .proof h2 {
        font-size: 1.7rem;
    }

    .final-cta {
        padding: 72px 0 60px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .proof-card {
        padding: 24px;
    }

    .cta {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .final-cta .cta {
        padding: 16px 40px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 64px 0 48px;
    }

    .subtitle br {
        display: none;
    }
}
