/* How We Work page styles */

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
    background-color: var(--navy);
    background-image:
        radial-gradient(1200px 600px at 12% -10%, rgba(37, 99, 235, 0.35), transparent 70%),
        radial-gradient(900px 450px at 88% 0%, rgba(37, 99, 235, 0.25), transparent 75%),
        linear-gradient(180deg, #0f1f33 0%, #152a44 60%, #0f1f33 100%);
}

@supports (color: color-mix(in oklch, white, black)) {
    .hero {
        background-image:
            radial-gradient(1200px 600px at 12% -10%, color-mix(in oklch, var(--blue) 35%, transparent), transparent 70%),
            radial-gradient(900px 450px at 88% 0%, color-mix(in oklch, var(--blue) 25%, transparent), transparent 75%),
            linear-gradient(180deg, var(--navy) 0%, color-mix(in oklch, var(--navy) 65%, var(--blue) 35%) 60%, var(--navy) 100%);
    }
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Engagement Narrative Section */
.engagement-narrative {
    padding: 6rem 0;
}

.engagement-narrative h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.narrative-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.narrative-item {
    padding: 2rem;
    border-radius: 12px;
    background: var(--bg-subtle);
    transition: all 0.3s ease;
}

.narrative-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 31, 51, 0.1);
}

.narrative-item h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.narrative-item p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

/* Practice Scenarios Section */
.practice-scenarios {
    padding: 6rem 0;
    background: var(--bg);
}

.practice-scenarios h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.scenario-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid rgba(15, 31, 51, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.scenario-card:hover {
    border-color: var(--navy);
    box-shadow: 0 12px 32px rgba(15, 31, 51, 0.12);
    transform: translateY(-4px);
}

.scenario-card h3 {
    color: var(--navy);
    font-size: 1.125rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.scenario-card p {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* Explicit Statement Section */
.explicit-statement {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2d45 100%);
    position: relative;
    overflow: hidden;
}

.explicit-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.statement-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.explicit-statement h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.explicit-statement p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

.cta-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-wrapper p {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button-primary {
    display: inline-block;
    background: var(--navy);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .engagement-narrative h2,
    .practice-scenarios h2,
    .explicit-statement h2,
    .cta-wrapper h2 {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .narrative-content,
    .scenarios-grid {
        gap: 1.5rem;
    }

    .engagement-narrative,
    .practice-scenarios,
    .explicit-statement,
    .cta-section {
        padding: 4rem 0;
    }

    .narrative-item {
        padding: 1.5rem;
    }

    .scenario-card {
        padding: 2rem;
    }

    .cta-button-primary {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }

    /* Touch target size */
    .cta-button-primary {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .engagement-narrative h2,
    .practice-scenarios h2,
    .explicit-statement h2,
    .cta-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .engagement-narrative,
    .practice-scenarios,
    .explicit-statement,
    .cta-section {
        padding: 3rem 0;
    }

    .narrative-content,
    .scenarios-grid {
        gap: 1rem;
        grid-template-columns: 1fr;
    }

    .narrative-item,
    .scenario-card {
        padding: 1.25rem;
    }

    .cta-wrapper p {
        font-size: 1rem;
    }
}
