/* Easy RFP — base stylesheet (intentionally minimal).
 * Per-page brand styling is handled by the inline <style id="blog-std-overrides-v2">
 * block on each blog/article page. This file exists primarily to:
 *   1. Satisfy the <link rel="stylesheet" href="/assets/style.css"> reference
 *      on 459+ pages (was returning 404).
 *   2. Provide global typography defaults that apply before the inline block loads.
 *
 * If you're adding rules here, prefer to put them on the inline brand-unified
 * block instead — that block has !important guards that override cleanly.
 * Anything here is the FALLBACK in case the inline block doesn't ship.
 *
 * Last touched: 2026-05-06
 */

/* Base reset */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }

/* Typography */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  background: #fafaff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e1b4b;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

a {
  color: #7c3aed;
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover { color: #6d28d9; }

img, svg, video { max-width: 100%; height: auto; }

code {
  font-family: 'JetBrains Mono', 'Menlo', 'Consolas', monospace;
  font-size: 0.92em;
  background: #f3e8ff;
  color: #7c3aed;
  padding: 2px 6px;
  border-radius: 4px;
}

pre {
  background: #1e1b4b;
  color: #f3f4f6;
  padding: 18px 22px;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.6;
}

pre code { background: transparent; color: #f3f4f6; padding: 0; }

blockquote {
  border-left: 4px solid #7c3aed;
  background: rgba(124, 58, 237, 0.04);
  padding: 16px 22px;
  margin: 20px 0;
  font-style: italic;
  border-radius: 0 8px 8px 0;
}

/* Accessibility — focus ring */
:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Container default */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Skip-link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #1e1b4b;
  color: #fff;
  padding: 12px 18px;
  z-index: 9999;
}
.skip-link:focus { left: 0; }
