<style nonce="{{ csp_nonce }}">
/* ═══════════════════════════════════════════════════════════
RESET + DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #f5f5f5;
--bg-card: #fff;
--bg-elevated: #f9f9f9;
--text: #1a1a2e;
--text-muted: #666;
--text-dim: #999;
--accent: #10b981;
--accent-bright: #059669;
--accent-dim: rgba(16, 185, 129, 0.08);
--accent-glow: rgba(16, 185, 129, 0.15);
--border: #e5e7eb;
--border-light: #ddd;
--success: #22c55e;
--font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
--mono: 'SF Mono', 'Cascadia Code', 'Fira Code', Consolas, monospace;
}
html { scroll-behavior: smooth; height: 100%; }
body {
font-family: var(--font);
font-size: 15px;
background: var(--bg);
color: var(--text);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
/* STICKY FOOTER LAYOUT */
.main-wrapper { flex: 1 0 auto; }
/* SECTION */
section { padding: 80px 0; }
.section-label {
display: inline-flex; align-items: center; gap: 8px;
font-size: 11px; font-weight: 600; text-transform: uppercase;
letter-spacing: 0.12em; color: var(--text-dim);
margin-bottom: 16px;
font-family: var(--font);
}
.section-label::before {
content: '';
width: 8px; height: 8px;
background: var(--accent);
border-radius: 2px;
opacity: 0.5;
}
.section-title {
font-size: clamp(24px, 3.5vw, 36px);
font-weight: 700; letter-spacing: -0.02em;
color: var(--text); margin-bottom: 12px; line-height: 1.15;
}
.section-sub {
font-size: 17px; color: var(--text-muted); max-width: 520px; line-height: 1.5;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-sub { margin: 0 auto; }
/* FOOTER */
footer {
border-top: 1px solid var(--border);
padding: 32px 0;
flex-shrink: 0;
}
.footer-inner {
display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; }
.footer-links a:hover { color: var(--text-muted); }
</style>