@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;600&display=swap');

  :root {
    --font:     'Inter', system-ui, sans-serif;
    --mono:     'JetBrains Mono', monospace;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
  }

  

 

  ── SECTION HEADER ─────────────────────────────────
  .section { padding: 56px 2rem; max-width: 1280px; margin: 0 auto; }
  .section-head { text-align: center; margin-bottom: 40px; }
  .section-head h2 {
    font-size: 1.75rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px;
  }
  .section-head p { color: var(--text-muted); font-size: 15px; }
  .divider-line {
    display: flex; align-items: center; gap: 16px; justify-content: center;
    margin-bottom: 12px;
  }
  .divider-line::before, .divider-line::after {
    content: ''; flex: 0 0 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-primary));
  }
  .divider-line::after { background: linear-gradient(90deg, var(--text-primary), transparent); }
  .section-tag {
    font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-primary);
  }
