/* ===== Storied Partnership Page ===== */

.storied-hero {
    background: var(--color-navy);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem 4rem;
}

.storied-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.storied-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-light-blue);
    margin-bottom: 1rem;
}

.storied-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
}

.storied-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.storied-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-pale-blue);
}

/* How it works */
.storied-how {
    padding: 5rem 1.5rem;
    background: white;
}

.storied-how-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.storied-how h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 3rem;
}

.storied-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.storied-step {
    padding: 2rem;
    background: #f8f9fb;
    border-radius: 12px;
}

.storied-step-number {
    width: 36px;
    height: 36px;
    background: var(--color-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.storied-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.storied-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Features */
.storied-features {
    padding: 5rem 1.5rem;
    background: var(--color-pale-blue);
}

.storied-features-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.storied-features h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 3rem;
}

.storied-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.storied-feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem;
}

.storied-feature-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.storied-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-navy);
    flex-shrink: 0;
}

.storied-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
}

.storied-feature-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.storied-features-note {
    font-size: 0.95rem;
    color: #444;
    font-style: italic;
    margin-top: 1rem;
}

/* SSO section */
.storied-sso {
    padding: 4rem 1.5rem;
    background: white;
    text-align: center;
}

.storied-sso-inner {
    max-width: 600px;
    margin: 0 auto;
}

.storied-sso h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.storied-sso p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* CTA */
.storied-cta {
    background: var(--color-navy);
    color: white;
    text-align: center;
    padding: 5rem 1.5rem;
}

.storied-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.storied-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.storied-cta p {
    font-size: 1.05rem;
    color: var(--color-pale-blue);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.storied-cta-btn {
    display: inline-block;
    background: white;
    color: var(--color-navy);
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.storied-cta-btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 700px) {
    .storied-steps {
        grid-template-columns: 1fr;
    }

    .storied-hero h1 {
        font-size: 1.75rem;
    }

    .storied-how h2,
    .storied-features h2,
    .storied-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .storied-features-grid {
        grid-template-columns: 1fr;
    }
}
