/* Timi theme: brand colour override + app-specific components.
   Shared base styles come from webkit/static/core.css. */

:root {
    --brand: #6f277d;
}

/* ===========================
   15. Pricing
   =========================== */
.pricing-section {
    max-width: 680px;
    margin: 4rem auto 0;
}
.pricing-title {
    text-align: center;
    font-size: 1.4rem;
    margin: 0 0 1.75rem;
    color: var(--text);
}
.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
}
.pricing-card-featured {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem;
}
.pricing-plan {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}
.pricing-card-featured .pricing-plan {
    color: var(--brand);
}
.pricing-price {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 0 0.5rem;
    color: var(--text);
}
.pricing-period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}
.pricing-desc {
    margin: 0;
    font-size: 0.875rem;
    color: var(--muted);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}
.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features li::before {
    content: "✓";
    color: var(--brand);
    font-weight: 700;
    flex-shrink: 0;
}
.btn-block {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ===========================
   16. Prose / legal pages
   =========================== */
.page-prose {
    max-width: 720px;
    margin: 3rem auto 0;
}
.page-prose h1 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}
.page-prose h2 {
    font-size: 1.15rem;
    margin: 2rem 0 0.5rem;
}
.page-prose h3 {
    font-size: 1rem;
    margin: 1.25rem 0 0.35rem;
    color: var(--muted);
}
.page-prose p,
.page-prose ul,
.page-prose ol {
    margin-bottom: 0.85rem;
    color: var(--text);
}
.page-prose ul,
.page-prose ol {
    padding-left: 1.5rem;
}
.page-prose li {
    margin-bottom: 0.4rem;
}
.page-prose a {
    color: var(--primary);
}

/* ===========================
   17. Footer
   =========================== */
footer.site-footer {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
}
.site-footer a {
    color: var(--muted);
    text-decoration: none;
}
.site-footer a:hover {
    color: var(--text);
}
.site-footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===========================
   18. Setup page
   =========================== */
.setup-platform {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.setup-platform:first-of-type {
    margin-top: 0.25rem;
    padding-top: 0;
    border-top: none;
}
.setup-platform h4 {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
