/* Prism visual-guide pages.
   Extracted rather than inlined: PrismVisualGuide.razor serves 15 routes, and the house
   pattern of ~62 lines of <style> per page would have shipped it 15 times. Visual language
   matches the existing VisualsSeo pages (dark canvas, cyan/violet gradient) so the education
   pages and the maker pages read as one product. */

body:has(.pvg-hero), .mud-main-content:has(.pvg-hero) { background: #05070d; overflow-x: hidden; }

.pvg-hero { padding: 5rem 1rem 3rem; text-align: center; max-width: 1100px; margin: 0 auto; }
.pvg-kicker { color: #00d9ff; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; }
.pvg-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; letter-spacing: -.03em; margin: .6rem 0 0;
    background: linear-gradient(135deg, #ffffff 0%, #00d9ff 40%, #a855f7 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pvg-lede { color: #94a3b8; font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.75; max-width: 760px; margin: 1.2rem auto 0; }
.pvg-reviewed { color: #64748b; font-size: .9rem; margin-top: 1.6rem; }

.pvg-section { padding: 3.5rem 1rem; max-width: 900px; margin: 0 auto; }
.pvg-section h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; color: #f1f5f9; margin-bottom: 1rem; }
.pvg-section h3 { font-size: 1.12rem; font-weight: 700; color: #e2e8f0; margin: 1.8rem 0 .4rem; }
.pvg-section p, .pvg-section li { color: #94a3b8; font-size: 1.03rem; line-height: 1.75; }
.pvg-section ul { padding-left: 1.2rem; }
.pvg-section li { margin-bottom: .55rem; }

.pvg-table-wrap { overflow-x: auto; margin: 1.4rem 0; }
.pvg-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.pvg-table th, .pvg-table td { text-align: left; padding: .8rem .9rem; border-bottom: 1px solid rgba(148,163,184,.16); color: #94a3b8; font-size: .98rem; line-height: 1.6; }
.pvg-table th { color: #e2e8f0; font-weight: 700; border-bottom-color: rgba(0,217,255,.3); }
.pvg-table tr:last-child td { border-bottom: none; }

.pvg-steps { counter-reset: pvg; margin: 1.4rem 0 0; padding: 0; list-style: none; }
.pvg-steps li { counter-increment: pvg; position: relative; padding-left: 2.7rem; margin-bottom: 1.1rem; }
.pvg-steps li::before {
    content: counter(pvg); position: absolute; left: 0; top: .05rem; width: 1.85rem; height: 1.85rem;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .92rem;
    color: #05070d; background: linear-gradient(135deg, #00d9ff, #a855f7);
}

.pvg-tools { display: grid; gap: .9rem; grid-template-columns: 1fr; margin-top: 1.2rem; }
@media (min-width: 700px) { .pvg-tools { grid-template-columns: 1fr 1fr; } }
.pvg-tool {
    display: block; padding: 1rem 1.15rem; border-radius: 14px; text-decoration: none;
    background: rgba(12,16,24,.55); border: 1px solid rgba(0,217,255,.16); transition: border-color .25s ease, transform .25s ease;
}
.pvg-tool:hover { border-color: rgba(0,217,255,.4); transform: translateY(-2px); }
.pvg-tool strong { display: block; color: #e2e8f0; font-weight: 700; margin-bottom: .2rem; }
.pvg-tool span { color: #94a3b8; font-size: .93rem; line-height: 1.55; }

.pvg-cta { max-width: 900px; margin: 1rem auto 4rem; padding: 2.2rem 1.4rem; text-align: center; border-radius: 20px;
    background: linear-gradient(135deg, rgba(0,217,255,.09), rgba(168,85,247,.09)); border: 1px solid rgba(0,217,255,.2); }
.pvg-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: #f1f5f9; font-weight: 800; margin-bottom: .7rem; }
.pvg-cta p { color: #94a3b8; max-width: 620px; margin: 0 auto 1.4rem; line-height: 1.7; }

.pvg-faq { border-top: 1px solid rgba(148,163,184,.14); padding-top: 1.3rem; margin-top: 1.3rem; }
.pvg-faq h3 { color: #e2e8f0; font-size: 1.06rem; font-weight: 700; margin-bottom: .35rem; }

.pvg-crumb { max-width: 900px; margin: 0 auto; padding: 1.4rem 1rem 0; color: #64748b; font-size: .92rem; }
.pvg-crumb a { color: #00d9ff; text-decoration: none; }
.pvg-crumb a:hover { text-decoration: underline; }
