:root {
  --ink: #0b0d0f;
  --panel: #191d21;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #f3f1eb;
  --muted: #aeb6bd;
  --white: #fff;
  --orange: #ff7a1a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.nav { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(7, 8, 9, .92); backdrop-filter: blur(16px); }
.nav-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-size: 16px; font-weight: 900; letter-spacing: .04em; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,.76); font-size: 14px; font-weight: 750; }
.nav-links a:hover, .footer a:hover { color: var(--orange); }
.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; border: 1px solid transparent; border-radius: 4px; font-weight: 850; cursor: pointer; }
.btn-primary { color: #090a0b; background: var(--orange); }
.btn-light { color: var(--ink); background: var(--white); }
.eyebrow { margin: 0 0 14px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.page-hero { padding: 112px 0 68px; background: linear-gradient(120deg, #15191d 0%, #0b0d0f 68%); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 820px; margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: .94; letter-spacing: 0; text-transform: uppercase; }
.page-hero p:not(.eyebrow) { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.content-section { padding: 72px 0; }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr); gap: 40px; align-items: end; margin-bottom: 30px; }
.section-head h2 { margin: 0; font-size: clamp(30px, 3.3vw, 48px); line-height: .98; text-transform: uppercase; }
.section-head p { margin: 0; color: var(--muted); line-height: 1.55; }
.about-grid, .commitment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.about-grid > *, .commitment-grid > * { padding: 30px; background: var(--panel); }
.about-grid h3, .commitment-grid h3 { margin: 0 0 12px; font-size: 22px; text-transform: uppercase; }
.about-grid p, .commitment-grid p { margin: 0; color: var(--muted); line-height: 1.6; }
.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border: 1px solid rgba(11,13,15,.16); background: rgba(11,13,15,.16); }
.process article { min-height: 170px; padding: 26px; background: var(--paper); color: var(--ink); }
.process b { display: block; color: var(--orange); margin-bottom: 24px; font-size: 13px; }
.process h3 { margin: 0 0 10px; font-size: 20px; text-transform: uppercase; }
.process p { margin: 0; color: #56616b; line-height: 1.5; }
.insight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.insight-card { display: flex; flex-direction: column; min-height: 100%; border: 1px solid var(--line); background: var(--panel); }
.insight-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.insight-card > div { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.insight-card time, .article-meta { color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.insight-card h2 { margin: 14px 0 12px; font-size: 25px; line-height: 1.05; text-transform: uppercase; }
.insight-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.insight-card .read-more { margin-top: auto; padding-top: 24px; color: var(--white); font-weight: 850; text-transform: uppercase; font-size: 13px; }
.empty-state { padding: 40px; border: 1px solid var(--line); background: var(--panel); color: var(--muted); line-height: 1.6; }
.article { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 112px 0 80px; }
.article h1 { margin: 12px 0 22px; font-size: clamp(38px, 5vw, 66px); line-height: .96; text-transform: uppercase; }
.article .lead { margin: 0 0 30px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.article-cover { width: 100%; margin: 34px 0 38px; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--line); }
.article-body { color: #dbe0e3; font-size: 18px; line-height: 1.75; }
.article-body h2 { margin: 46px 0 16px; color: var(--white); font-size: 30px; line-height: 1.05; text-transform: uppercase; }
.article-body h3 { margin: 34px 0 12px; color: var(--white); font-size: 22px; }
.article-body p { margin: 0 0 20px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 24px; }
.article-body a { color: var(--orange); text-decoration: underline; }
.article-cta { margin-top: 48px; padding: 30px; border: 1px solid var(--line); background: var(--panel); }
.article-cta h2 { margin: 0 0 12px; font-size: 28px; text-transform: uppercase; }
.article-cta p { margin: 0 0 22px; color: var(--muted); line-height: 1.55; }
.footer { border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); font-size: 14px; }
.footer > .shell { display: flex; justify-content: space-between; gap: 16px; }
@media (max-width: 760px) { .nav-links { display: none; } .shell { width: min(100% - 28px, 1160px); } .page-hero { padding: 86px 0 48px; } .content-section { padding: 48px 0; } .section-head { grid-template-columns: 1fr; gap: 18px; } .about-grid, .commitment-grid { grid-template-columns: 1fr; } .process { grid-template-columns: repeat(2, minmax(0, 1fr)); } .process article { min-height: 160px; padding: 20px; } .insight-grid { grid-template-columns: 1fr; } .article { width: min(100% - 28px, 820px); padding: 84px 0 54px; } .article-body { font-size: 17px; } .footer > .shell { flex-direction: column; } }

.rich-content{font-size:1.05rem;line-height:1.8}.rich-content h1,.rich-content h2,.rich-content h3{margin:2rem 0 .75rem;line-height:1.15}.rich-content p,.rich-content ul,.rich-content ol,.rich-content blockquote{margin:0 0 1.25rem}.rich-content img{display:block;max-width:100%;height:auto;margin:1.75rem auto}.rich-content blockquote{border-left:3px solid #ff7a1a;margin-left:0;padding-left:1rem;color:#cbd2d9}.rich-content a{color:#ff7a1a;text-decoration:underline}