/* =========================================================================
   THEME: the one file to re-key per prospect.
   --brand-*  : the prospect's world (every deliverable page uses these)
   --hub-*    : the pitch hub (index.html), light, keyed to the same accent
   Pick the accent from the prospect's own photos / logo / site (see
   references/design.md). Swap fonts by changing the @import + the vars.
   ========================================================================= */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400..900&family=Inter:wght@400..700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  /* ---- prospect brand (deliverables) ---- */
  --brand-bg: #0c0b08;
  --brand-bg-2: #13120c;
  --brand-surface: #1a1810;
  --brand-surface-2: #232014;
  --brand-line: rgba(249, 245, 220, 0.10);
  --brand-text: #f7f4e6;
  --brand-text-2: #b9b3a0;
  --brand-text-3: #8a8572;
  --brand-accent: #f9e528;
  --brand-accent-2: #fcef6e;
  --brand-accent-ink: #0c0b08;
  --brand-accent-soft: rgba(249, 229, 40, 0.13);

  /* ---- pitch hub ---- */
  --hub-bg: #f5f2ec;
  --hub-bg-2: #ece7dd;
  --hub-surface: #ffffff;
  --hub-line: rgba(27, 25, 23, 0.12);
  --hub-text: #1b1917;
  --hub-text-2: #5f5850;
  --hub-accent: #5e5400;       /* a darker, readable-on-cream version of --brand-accent */
  --hub-accent-2: #8a7c00;
  --hub-accent-ink: #fbf8f1;
  --hub-accent-soft: rgba(94, 84, 0, 0.10);

  /* ---- type ---- */
  --font-display: "Archivo", "Inter", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
