/* =========================================
   WELCOME / REDIRECT PAGE
   /welcome/training/
   ========================================= */

/* ─────────────────────────────────────
   BASE
   ───────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Europa', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ─────────────────────────────────────
   HERO
   ───────────────────────────────────── */
.welcome-hero {
    background: #49AFC1;
    color: #ffffff;
    padding: 80px 24px 60px;
    text-align: center;
}

.welcome-eyebrow {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.welcome-hero h1 {
    font-family: 'IvyPresto Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

.welcome-subhead {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

/* ─────────────────────────────────────
   EXPLANATION
   ───────────────────────────────────── */
.welcome-explanation {
    padding: 60px 24px;
    background: #fff8e7;
}

.explanation-content {
    max-width: 700px;
    margin: 0 auto;
}

.explanation-content h2 {
    font-family: 'IvyPresto Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #223759;
}

.explanation-content p {
    margin-bottom: 16px;
}

.explanation-content p:last-child {
    margin-bottom: 0;
}

/* ─────────────────────────────────────
   PATHS / CARDS
   ───────────────────────────────────── */
.welcome-paths {
    padding: 60px 24px;
    background: #ffffff;
}

.welcome-paths h2 {
    font-family: 'IvyPresto Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #223759;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.path-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: #3a3a3a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.path-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #223759;
}

.path-icon {
    margin-bottom: 16px;
}

.path-icon img {
    width: 64px;
    height: 64px;
}

.path-card h3 {
    font-family: 'Europa', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #223759;
}

.path-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.path-cta {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #B80077;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Single-column grid for primary email CTA */
.paths-grid-single {
    grid-template-columns: 1fr;
    max-width: 640px;
}

/* Primary email CTA card — stand out vs secondary cards */
.path-card-primary {
    background: #fff8e7;
    border: 2px solid #B80077;
    padding: 40px 32px;
}

.path-card-primary h3 {
    font-size: 1.4rem;
}

.path-card-primary p {
    font-size: 1.05rem;
}

.path-card-primary .path-cta {
    font-size: 1rem;
    color: #ffffff;
    background: #B80077;
    padding: 12px 28px;
    border-radius: 10px;
    margin-top: 8px;
}

.path-card-primary:hover {
    border-color: #9a0063;
}

/* Secondary paths section — subtler */
.welcome-paths-secondary {
    background: #f8f9fa;
    padding-top: 40px;
}

.welcome-paths-secondary h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #666;
}

.welcome-paths-secondary .paths-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
}

/* ─────────────────────────────────────
   SOCIAL PROOF / BOTTOM
   ───────────────────────────────────── */
.welcome-proof {
    padding: 50px 24px;
    background: #f0f2f5;
    text-align: center;
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat strong {
    font-family: 'IvyPresto Display', Georgia, serif;
    font-size: 2rem;
    color: #223759;
    line-height: 1;
}

.stat span {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

.proof-note {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px;
    font-style: italic;
}

.btn-welcome {
    display: inline-block;
    background: #B80077;
    color: #ffffff;
    font-family: 'Europa', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-welcome:hover {
    background: #9a0063;
    transform: translateY(-2px);
}

/* ─────────────────────────────────────
   FOOTER
   ───────────────────────────────────── */
.welcome-footer {
    padding: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

/* ─────────────────────────────────────
   MOBILE
   ───────────────────────────────────── */
@media (max-width: 768px) {
    .welcome-hero {
        padding: 60px 24px 48px;
    }

    .welcome-hero h1 {
        font-size: 2rem;
    }

    .paths-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .proof-stats {
        gap: 24px;
    }

    .stat strong {
        font-size: 1.5rem;
    }
}
