/* ==========================================================================
   Deets — design tokens
   Lifted verbatim from "Deets — Master Report (2026-07-02)" so the web build
   and the research/mockup set stay visually identical.
   ========================================================================== */

:root {
  /* Ink & surfaces */
  --ink: #16131f;
  --ink-soft: #3a3550;
  --muted: #716e85;
  --bg: #fff;
  --soft: #f5f4fb;
  --soft2: #efeefa;
  --line: #e8e6f2;

  /* Brand */
  --primary: #5b4ff0;
  --primary-d: #4035c9;
  --primary-l: #ece9ff;
  --accent: #ff6a5d;
  --teal: #10b9a0;
  --amber: #ffb020;

  /* Status */
  --red: #e5484d;
  --red-l: #fdebec;
  --green: #18a058;
  --green-l: #e7f7ee;
  --amber-l: #fff4de;
  --amber-ink: #b47600;

  /* Phase accents — Phase 1 violet, Phase 2 teal, Phase 3 coral */
  --grad-p1: linear-gradient(135deg, #5b4ff0, #7a5cf0);
  --grad-p2: linear-gradient(135deg, #0ea58f, #10b9a0);
  --grad-p3: linear-gradient(135deg, #e2543f, #ff6a5d);
  --grad-brand: linear-gradient(135deg, var(--primary), var(--accent));

  /* Elevation */
  --shadow: 0 10px 30px -12px rgba(40, 30, 90, 0.25);
  --shadow-sm: 0 4px 14px -6px rgba(40, 30, 90, 0.18);
  --shadow-xs: 0 2px 8px -4px rgba(40, 30, 90, 0.12);

  /* Geometry */
  --r: 18px;
  --r-md: 14px;
  --r-sm: 11px;
  --r-pill: 999px;

  /* Desktop shell */
  --sidebar-w: 244px;
  --topbar-h: 62px;
  --maxw: 1180px;

  /* Content padding — .sticky-cta bleeds by exactly these, so keep the
     stylesheet reading them rather than repeating the numbers. */
  --content-pad-x: 34px;
  --content-pad-y: 30px;
  --content-pad-b: 60px;

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

/* ---- reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

a {
  color: var(--primary-d);
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 6px;
}
