:root {
    --shr-bg: #0b1220;
    --shr-surface: #111b2d;
    --shr-surface-soft: #162338;
    --shr-surface-strong: #0f1b2f;
    --shr-border: rgba(255,255,255,0.08);
    --shr-text: #dbe4f0;
    --shr-text-muted: #9fb0c7;
    --shr-heading: #ffffff;
    --shr-accent: #e66a12;
    --shr-accent-strong: #c55406;
    --shr-accent-soft: rgba(230,106,18,0.14);
    --shr-success-soft: rgba(72, 187, 120, 0.12);
    --shr-radius: 20px;
    --shr-radius-sm: 14px;
    --shr-shadow: 0 24px 60px rgba(0,0,0,0.24);
    --shr-shell: 1240px;
    --shr-font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --shr-font-display: 'Inter', system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--shr-font-body);
    background: radial-gradient(circle at top, #16233b 0%, var(--shr-bg) 45%);
    color: var(--shr-text);
    line-height: 1.65;
}
a { color: var(--shr-accent); text-decoration: none; }
a:hover { color: #ff8b3d; }
img { display: block; max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { margin: 0 0 0.75rem; color: var(--shr-heading); font-family: var(--shr-font-display); line-height: 1.15; }
h1 { font-size: clamp(2.3rem, 5vw, 4.3rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }
strong { color: #fff; }
.shr-shell { width: min(var(--shr-shell), calc(100% - 40px)); margin: 0 auto; }
.shr-site-main { min-height: 60vh; }
.shr-section { padding: 88px 0; }
.shr-section--soft { background: rgba(255,255,255,0.02); }
.shr-section--accent { background: linear-gradient(135deg, rgba(230,106,18,0.14), rgba(255,255,255,0.02)); }
.shr-section--content { padding-top: 44px; }
.shr-eyebrow { display: inline-block; margin-bottom: 14px; padding: 8px 12px; border-radius: 999px; background: var(--shr-accent-soft); color: #ffd2b2; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.shr-prose { max-width: 860px; }
.shr-prose p, .shr-prose li { color: var(--shr-text); }
.shr-grid { display: grid; gap: 24px; }
.shr-grid--cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.shr-section-heading { max-width: 820px; margin-bottom: 32px; }
.shr-section-heading--center { margin-left: auto; margin-right: auto; text-align: center; }
.shr-section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0,1fr) minmax(280px, 420px); gap: 28px; align-items: end; }
