*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #09090b; --bg2: #0f0f12; --surface: #18181b; --surface2: #1f1f23;
  --border: #27272a; --border2: #3f3f46; --accent: #8b5cf6; --accent2: #a78bfa;
  --accent-d: rgba(139,92,246,.12); --green: #22c55e; --green-d: rgba(34,197,94,.1);
  --text: #fafafa; --muted: #71717a; --muted2: #52525b; --radius: 12px;
}

body { font-family: 'Space Grotesk', sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.75; }

nav { position: sticky; top: 0; z-index: 100; padding: 0 40px; height: 58px; display: flex; align-items: center; justify-content: space-between; background: rgba(9,9,11,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.logo-dot, .nav-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); font-weight: 700; font-size: 15px; }
.nav-back { font-size: 13px; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.nav-back:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #fff; padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; }
.nav-cta:hover { opacity: .85; }
.icon-xs { font-size: 11px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand span { color: var(--text); font-weight: 600; }

.hero { padding: 80px 48px 72px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(139,92,246,.15) 0%, transparent 65%); pointer-events: none; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 999px; padding: 5px 14px; font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 28px; }
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: clamp(36px, 6vw, 72px); font-weight: 700; letter-spacing: -2px; line-height: 1.05; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--accent2); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: #fff; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; font-family: inherit; transition: opacity .2s, transform .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); padding: 14px 28px; border-radius: 10px; border: 1px solid var(--border); font-size: 15px; font-weight: 600; text-decoration: none; transition: border-color .2s; }
.btn-ghost:hover { border-color: var(--border2); }
.hero-stats { display: flex; gap: 0; justify-content: center; margin-top: 64px; flex-wrap: wrap; }
.hero-stat { padding: 24px 40px; border: 1px solid var(--border); margin: -1px 0 0 -1px; }
.hero-stat:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.hero-stat:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.stat-n { font-size: 28px; font-weight: 700; color: var(--accent2); letter-spacing: -1px; }
.stat-l { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }

.section { padding: 88px 48px; max-width: 1100px; margin: 0 auto; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-padded { padding: 88px 48px; }
.section-title-spaced { margin-bottom: 40px; }
.section-sub-center { margin-left: auto; margin-right: auto; }
.section-label-spaced { margin-bottom: 16px; }
.center-spaced { margin-bottom: 48px; }
.section-top-0 { padding-top: 0; }
.btn-wide { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; padding: 16px 36px; }
.dark-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 4vw, 44px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 480px; margin-bottom: 56px; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width:768px){ .two-col { grid-template-columns: 1fr; } }
.ps-box { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.ps-box.problem { border-top: 3px solid #ef4444; }
.ps-box.solution { border-top: 3px solid #22c55e; }
.ps-box h3 { font-size: 17px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.ps-box h3 i { font-size: 15px; }
.ps-box.problem h3 i { color: #ef4444; }
.ps-box.solution h3 i { color: #22c55e; }
.ps-box p { color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 14px; }
.ps-box ul { list-style: none; padding: 0; margin-bottom: 14px; }
.ps-box ul li { color: var(--muted); font-size: 14px; padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; }
.ps-box ul li::before { content: '–'; color: var(--muted2); flex-shrink: 0; }
.ps-box.solution ul li::before { content: '✓'; color: #22c55e; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media(max-width:900px){ .features-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .features-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color .2s, transform .2s; }
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feat-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-d); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--accent2); margin-bottom: 18px; }
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -.2px; }
.feature-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media(max-width:900px){ .use-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px){ .use-grid { grid-template-columns: 1fr; } }
.use-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: border-color .2s; }
.use-card:hover { border-color: var(--border2); }
.use-card i { font-size: 28px; color: var(--accent2); margin-bottom: 14px; display: block; }
.use-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.use-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }

.cta-box { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 56px; text-align: center; }
.cta-box h2 { font-size: clamp(24px,3.5vw,40px); font-weight: 700; letter-spacing: -1px; margin-bottom: 12px; }
.cta-box p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.final-cta p { margin-bottom: 40px; }
ms-store-badge { display: inline-block; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media(max-width:900px){ .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:580px){ .testimonials-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.testi-quote { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testi-quote::before { content: '"'; color: var(--accent); font-size: 20px; font-style: normal; }
.testi-author { font-size: 13px; font-weight: 600; color: var(--text); }
.testi-loc { font-size: 12px; color: var(--muted2); margin-top: 3px; }
.testi-loc i { margin-right: 4px; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }
details.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
details.faq-item[open] { border-color: var(--accent); }
details.faq-item summary { padding: 16px 20px; font-size: 14px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
details.faq-item summary::after { content: '+'; font-size: 18px; color: var(--accent2); flex-shrink: 0; }
details.faq-item[open] summary::after { content: '–'; }
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-body { padding: 0 20px 16px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-body strong { color: var(--text); }
.faq-body a { color: var(--accent2); text-decoration: none; }

.page-layout { display: grid; grid-template-columns: 260px 1fr; max-width: 1200px; margin: 0 auto; min-height: calc(100vh - 58px); }
@media(max-width:860px){ .page-layout { grid-template-columns: 1fr; } .sidebar { display: none; } }
.sidebar { padding: 40px 24px; border-right: 1px solid var(--border); position: sticky; top: 58px; height: calc(100vh - 58px); overflow-y: auto; }
.sidebar-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; padding: 0 8px; }
.toc-list { list-style: none; }
.toc-list li a { display: block; padding: 7px 8px; font-size: 13px; color: var(--muted); text-decoration: none; border-radius: 6px; transition: color .2s, background .2s; font-weight: 500; }
.toc-list li a:hover { color: var(--text); background: var(--surface); }
.toc-list li a .toc-num { color: var(--muted2); margin-right: 6px; font-size: 12px; }
.sidebar-sep { border: none; border-top: 1px solid var(--border); margin: 16px 8px; }
.sidebar-cta-btn { display: flex; align-items: center; gap: 8px; width: 100%; background: var(--accent); color: #fff; border: none; padding: 10px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; text-decoration: none; transition: opacity .2s; margin: 8px 0; }
.sidebar-cta-btn:hover { opacity: .85; }
.sidebar-cta-alt { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.content { padding: 48px 56px; max-width: 800px; }
@media(max-width:860px){ .content { padding: 32px 24px; } }
.page-header { margin-bottom: 48px; }
.page-header .breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.page-header .breadcrumb a { color: var(--muted); text-decoration: none; }
.page-header .breadcrumb a:hover { color: var(--accent2); }
.page-header .breadcrumb i { font-size: 10px; }
.page-header h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 14px; }
.page-header p { color: var(--muted); font-size: 16px; }
.page-header .meta { display: flex; gap: 24px; margin-top: 18px; flex-wrap: wrap; }
.meta-item { font-size: 12px; color: var(--muted2); display: flex; align-items: center; gap: 6px; }
.meta-item i { color: var(--accent2); }
.doc-section { margin-bottom: 56px; scroll-margin-top: 80px; }
.doc-section h2 { font-size: 22px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 20px; color: var(--text); padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.doc-section h2 .section-num { font-size: 13px; font-weight: 600; color: var(--accent2); background: var(--accent-d); border: 1px solid rgba(139,92,246,.2); padding: 3px 10px; border-radius: 6px; }
.doc-section h3 { font-size: 16px; font-weight: 700; letter-spacing: -.3px; margin-top: 28px; margin-bottom: 12px; color: var(--text); }
.doc-section p { color: var(--muted); margin-bottom: 14px; line-height: 1.75; }
.doc-section p strong { color: var(--text); }
.doc-section a { color: var(--accent2); text-decoration: none; }
.doc-section a:hover { text-decoration: underline; }
.doc-section ol, .doc-section ul { padding-left: 0; margin-bottom: 16px; list-style: none; }
.doc-section ol { counter-reset: ol-counter; }
.doc-section ol li { counter-increment: ol-counter; }
.doc-section li { color: var(--muted); padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid var(--border); font-size: 14px; line-height: 1.7; }
.doc-section li:last-child { border-bottom: none; }
.doc-section ul li::before { content: '–'; position: absolute; left: 8px; color: var(--muted2); }
.doc-section ol li::before { content: counter(ol-counter); position: absolute; left: 4px; width: 20px; height: 20px; top: 10px; background: var(--accent-d); color: var(--accent2); border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.doc-section li strong { color: var(--text); }
.callout { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px; display: flex; gap: 14px; }
.callout.tip { border-left: 3px solid var(--accent); }
.callout.note { border-left: 3px solid #3b82f6; }
.callout.warning { border-left: 3px solid #f59e0b; }
.callout-icon { font-size: 16px; flex-shrink: 0; padding-top: 2px; }
.callout.tip .callout-icon { color: var(--accent); }
.callout.note .callout-icon { color: #60a5fa; }
.callout.warning .callout-icon { color: #fbbf24; }
.callout-body { font-size: 14px; color: var(--muted); line-height: 1.7; }
.callout-body strong { color: var(--text); }
.settings-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.settings-table th { text-align: left; padding: 10px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted2); background: var(--surface2); border-bottom: 1px solid var(--border); }
.settings-table td { padding: 12px 16px; font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--border); line-height: 1.6; }
.settings-table tr:last-child td { border-bottom: none; }
.settings-table tr:hover td { background: var(--surface); }
.settings-table td:first-child { color: var(--text); font-weight: 600; }
.feature-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.feature-row { background: var(--surface); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; transition: background .2s; }
.feature-row:hover { background: var(--surface2); }
.feature-row-icon { color: var(--accent2); width: 18px; flex-shrink: 0; padding-top: 2px; }
.feature-row-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.feature-row-text p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.image-link { display: inline-block; text-decoration: none; }
.img-fluid { max-width: 100%; height: auto; }
.manual-img { display: block; margin: 12px auto 20px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); box-shadow: 0 20px 40px rgba(0, 0, 0, .18); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
details.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
details.faq-item[open] { border-color: var(--accent); }
details.faq-item summary { padding: 16px 20px; font-size: 14px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
details.faq-item summary::after { content: '+'; font-size: 18px; color: var(--accent2); flex-shrink: 0; }
details.faq-item[open] summary::after { content: '–'; }
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-body { padding: 0 20px 16px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-body strong { color: var(--text); }
.faq-body a { color: var(--accent2); text-decoration: none; }

.page-wrap { max-width: 760px; margin: 0 auto; padding: 64px 40px 96px; }
.article-shell { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, .18); }
.article-body { padding: 32px; }
.subtitle { color: var(--muted); font-size: 18px; max-width: 640px; }
.article-content { display: flex; flex-direction: column; gap: 0; }
.article-content > p:first-child,
.article-content .lead:first-child { margin-top: 0; }
.article-content h2,
.article-content h3,
.article-content h4 { color: var(--text); }
.article-content h2 { font-size: 24px; font-weight: 700; letter-spacing: -.6px; margin: 36px 0 16px; }
.article-content h3 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; }
.article-content h4 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; }
.article-content p,
.article-content li { color: var(--muted); line-height: 1.75; }
.article-content p { margin-bottom: 16px; }
.article-content ul,
.article-content ol { margin: 0 0 20px 0; padding-left: 22px; }
.article-content li { margin-bottom: 10px; }
.article-content strong { color: var(--text); }
.article-content a { color: var(--accent2); text-decoration: none; }
.article-content a:hover { text-decoration: underline; }
.article-content .lead { font-size: 18px; color: var(--muted); }
.article-content .text-center { text-align: center; }
.article-content .mt-4 { margin-top: 16px; }
.article-content .mt-5 { margin-top: 32px; }
.cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: #fff !important; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none !important; border: none; cursor: pointer; font-family: inherit; transition: opacity .2s, transform .2s; }
.cta-btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent2); }
.breadcrumb i { font-size: 10px; }
.page-header .meta { font-size: 13px; color: var(--muted2); margin-top: 12px; }
.trust-banner { background: var(--green-d); border: 1px solid rgba(34,197,94,.2); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 48px; display: flex; gap: 14px; align-items: flex-start; }
.trust-banner-tight { margin-bottom: 0; }
.trust-banner-icon { color: var(--green); font-size: 20px; flex-shrink: 0; padding-top: 2px; }
.trust-banner-text { font-size: 14px; color: var(--muted); line-height: 1.7; }
.trust-banner-text strong { color: var(--text); }
.policy-section { margin-bottom: 48px; }
.policy-section h2 { font-size: 19px; font-weight: 700; letter-spacing: -.4px; margin-bottom: 18px; color: var(--text); display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.policy-section h2 i { color: var(--accent2); font-size: 16px; }
.policy-section p { color: var(--muted); margin-bottom: 14px; font-size: 14px; line-height: 1.8; }
.policy-section a { color: var(--accent2); text-decoration: none; }
.policy-section a:hover { text-decoration: underline; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.info-card-header { padding: 14px 20px; background: var(--surface2); border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.info-card-header i { color: var(--accent2); }
.info-card-body { padding: 16px 20px; }
.info-card-body p { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.info-card-body p:last-child { margin-bottom: 0; }
.info-card-body ul { list-style: none; }
.info-card-body ul li { font-size: 14px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; }
.info-card-body ul li:last-child { border-bottom: none; }
.info-card-body ul li::before { content: '–'; color: var(--muted2); flex-shrink: 0; }
.highlight-box { background: var(--accent-d); border: 1px solid rgba(139,92,246,.2); border-radius: var(--radius); padding: 18px 22px; font-size: 14px; color: var(--muted); margin-bottom: 20px; display: flex; gap: 12px; align-items: flex-start; }
.highlight-box i { color: var(--accent2); flex-shrink: 0; padding-top: 2px; }
.contact-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.contact-box p { color: var(--muted); font-size: 14px; margin-bottom: 16px; line-height: 1.7; }
.contact-box ul { list-style: none; margin-bottom: 20px; }
.contact-box ul li { color: var(--muted); font-size: 14px; padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.contact-box ul li::before { content: '→'; color: var(--accent2); flex-shrink: 0; }
.contact-email { display: inline-flex; align-items: center; gap: 8px; background: var(--surface2); border: 1px solid var(--border); color: var(--accent2); padding: 12px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: border-color .2s; }
.contact-email:hover { border-color: var(--accent); }
.questions-wrap { padding: 32px 0 16px; border-top: 1px solid var(--border); margin-top: 16px; }
.questions-text { color: var(--muted2); font-size: 13px; margin-bottom: 12px; }
.mail-link { color: var(--accent2); text-decoration: none; font-size: 14px; font-weight: 600; }
.mail-icon { margin-right: 6px; }

footer { padding: 28px 40px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; color: var(--muted2); font-size: 13px; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }

/* Legacy article compatibility */
.loading { display: none; }
.page-wrap .section-content,
.page-wrap .section {
  position: relative;
}
.page-wrap > .section-content {
  padding: 88px 48px;
}
.page-wrap .overlay {
  display: none;
}
.page-wrap .container {
  max-width: 1100px;
}
.page-wrap .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}
.page-wrap .container-fluid {
  max-width: 100%;
}
.page-wrap .content-wrapper > .container-fluid {
  padding: 0;
}
.page-wrap .section-title,
.page-wrap .page-title,
.page-wrap .section-header,
.page-wrap h2.section-header,
.page-wrap h3,
.page-wrap h4 {
  color: var(--text);
}
.page-wrap h1.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-wrap h1.section-title a,
.page-wrap h2.page-title a {
  color: inherit;
  text-decoration: none;
}
.page-wrap h2.page-title {
  text-align: center;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 16px 0 10px;
}
.page-wrap h4.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}
.page-wrap .text-color {
  color: var(--accent2) !important;
}
.page-wrap p,
.page-wrap li {
  color: var(--muted);
  line-height: 1.75;
}
.page-wrap p {
  margin-bottom: 16px;
}
.page-wrap .lead {
  font-size: 18px;
  color: var(--muted);
}
.page-wrap ul,
.page-wrap ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.page-wrap li {
  margin-bottom: 10px;
}

@media(max-width:640px) {
  nav { padding: 0 24px; }
  .section { padding: 72px 24px; }
  .hero { padding: 72px 24px 64px; }
  footer { padding: 24px; }
  .page-wrap { padding: 48px 24px 64px; }
  .article-body { padding: 24px; }
}
