/* Creator Info Page — public-facing info + FAQ
 * Extends .legal-page from style.css
 */

/* =========================================================================
   SECTIONS
   ========================================================================= */

.creator-info-page .info-section {
    margin-bottom: 2.5rem;
}

.creator-info-page .info-section h2 {
    border-bottom: 1px solid var(--ink-light);
    padding-bottom: 0.35rem;
}

/* =========================================================================
   HOW IT WORKS — STEPS
   ========================================================================= */

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: bold;
    font-size: 1rem;
}

.step-content h3 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    color: var(--accent);
}

.step-content p {
    margin: 0;
    color: var(--ink);
}

/* =========================================================================
   FEATURE LIST
   ========================================================================= */

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* =========================================================================
   PRICING BOX
   ========================================================================= */

.pricing-section {
    text-align: center;
}

.pricing-section h2 {
    text-align: left;
}

.pricing-box {
    display: inline-block;
    text-align: center;
    border: 2px solid var(--ink);
    padding: 1.5rem 3rem;
    background: var(--parchment);
    margin-bottom: 1rem;
}

.pricing-box-tier {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.pricing-box-price {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.pricing-box-note {
    font-size: 0.9rem;
    color: var(--ink-light);
    margin-bottom: 0.5rem;
}

.pricing-box-remaining {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: bold;
}

.pricing-footnote {
    font-size: 0.85rem;
    color: var(--ink-light);
    font-style: italic;
}

/* =========================================================================
   FAQ — <details>/<summary>
   ========================================================================= */

.faq-section h2 {
    margin-bottom: 1rem;
}

.faq-item {
    border: 1px solid var(--ink-light);
    margin-bottom: 0.5rem;
    background: var(--parchment);
}

.faq-item summary {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: bold;
    color: var(--accent-dark);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    font-weight: bold;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--ink-light);
}

.faq-item p {
    padding: 0.75rem 1rem;
    margin: 0;
    color: var(--ink);
    line-height: 1.6;
}

/* =========================================================================
   MOBILE
   ========================================================================= */

@media (max-width: 768px) {
    .pricing-box {
        padding: 1.25rem 1.5rem;
    }

    .pricing-box-price {
        font-size: 1.8rem;
    }

    .step-number {
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.85rem;
    }
}
