body.content-page { background: var(--bg); }
body.content-page .site-header { position: sticky; }
.content-main { padding: 48px 0 100px; }
.content-hero { padding: 40px 0 24px; border-bottom: 1px solid var(--line); margin-bottom: 48px; }
.content-hero .kicker { display: inline-block; margin-bottom: 14px; color: var(--red-light); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.content-hero h1 { margin: 0; font-family: Manrope, Inter, sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12; letter-spacing: -.04em; font-weight: 500; max-width: 900px; }
.content-hero h1 strong { font-weight: 800; }
.content-hero .meta { margin-top: 14px; color: var(--muted); font-size: 13px; }
.prose { max-width: 820px; }
.prose h2 { margin: 2.4em 0 .8em; font-family: Manrope, Inter, sans-serif; font-size: 1.45rem; letter-spacing: -.03em; font-weight: 700; color: var(--white); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.8em 0 .6em; font-size: 1.05rem; font-weight: 700; color: #e8e6e3; }
.prose p, .prose li { color: #b8b6bb; font-size: 15px; line-height: 1.75; }
.prose p { margin: 0 0 1.1em; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin: .35em 0; }
.prose a { color: var(--red-light); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--white); }
.prose strong { color: var(--white); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 3em 0; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 1000px; }
.blog-card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.02); transition: .35s var(--ease); }
.blog-card:hover { border-color: var(--line-bright); transform: translateY(-4px); }
.blog-card small { color: var(--red-light); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-card h2 { margin: 12px 0 10px; font-family: Manrope, Inter, sans-serif; font-size: 1.2rem; line-height: 1.3; }
.blog-card p { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.blog-card span, .blog-card-link { display: inline-block; color: var(--red-light); font-size: 12px; font-weight: 700; }
.blog-card-link:hover { color: var(--white); }
.faq-page .faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-page .faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; background: rgba(255,255,255,.02); border: 0; text-align: left; cursor: pointer; font-weight: 600; font-size: 14px; }
.faq-page .faq-item button i { flex: 0 0 18px; height: 18px; border: 1px solid var(--line-bright); border-radius: 50%; position: relative; }
.faq-page .faq-item button i::before, .faq-page .faq-item button i::after { content: ''; position: absolute; left: 50%; top: 50%; width: 8px; height: 1px; background: #fff; transform: translate(-50%, -50%); }
.faq-page .faq-item button i::after { transform: translate(-50%, -50%) rotate(90deg); transition: .25s; }
.faq-page .faq-item button[aria-expanded=true] i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-page .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.faq-page .faq-answer > * { min-height: 0; overflow: hidden; }
.faq-page .faq-answer p { margin: 0; padding: 0 22px 0; color: #b8b6bb; font-size: 14px; line-height: 1.7; }
.faq-page .faq-item button[aria-expanded=true] + .faq-answer { grid-template-rows: 1fr; }
.faq-page .faq-item button[aria-expanded=true] + .faq-answer p { padding: 0 22px 18px; }
.content-page .footer { margin-top: 0; }
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .content-main { padding: 24px 0 80px; }
}
