/* perigirlies, design tokens.
   ONE locked light theme: warm blush ground, heat coral accent, plum ink.
   There is no dark mode and no section that inverts. Deliberate: the brand is the
   group chat in daylight, not a clinical night screen.
   Zero external requests: Nunito is self-hosted from assets/fonts; the only other
   family is the system serif, reserved for her voice (italic) and nothing else. */

@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/nunito-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* ---- ground: blush, warm, light only ---- */
  --paper: #fdf2f0;          --paper: oklch(0.966 0.013 28);
  --paper-2: #fbe8e4;        --paper-2: oklch(0.935 0.021 28);   /* section band */
  --blush: #f9dcd6;          --blush: oklch(0.898 0.032 28);     /* chips, bubbles */
  --blush-deep: #f3c6bf;     --blush-deep: oklch(0.845 0.048 27);
  --card: #ffffff;           --card: oklch(1 0 0);

  /* ---- ink: plum near-black, never pure black ---- */
  --ink: #2e1b24;            --ink: oklch(0.26 0.04 350);
  --muted: #75606a;          --muted: oklch(0.52 0.028 350);
  --faint: #8a7480;          --faint: oklch(0.60 0.026 350);
  --line: #f2ddd9;           --line: oklch(0.918 0.019 28);
  --line-2: #e6c9c3;         --line-2: oklch(0.855 0.036 28);

  /* ---- heat: the one accent, everywhere, unchanged from the original brand ---- */
  --flash: #ef5d3d;          --flash: oklch(0.66 0.185 33);
  --flash-deep: #b03a1e;     --flash-deep: oklch(0.52 0.165 32);  /* accent text on light */
  --flash-soft: #fde7e0;     --flash-soft: oklch(0.945 0.024 33);

  /* ---- data series (score bars only, never decoration) ---- */
  --vaso: #ef5d3d;           --vaso: oklch(0.66 0.185 33);
  --psych: #7a4e86;          --psych: oklch(0.47 0.11 315);
  --phys: #a9662b;           --phys: oklch(0.55 0.11 60);
  --sexual: #a8455c;         --sexual: oklch(0.50 0.13 8);
  --ok: #4e6b49;             --ok: oklch(0.48 0.06 145);

  /* ---- type ---- */
  --sans: "Nunito", ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont,
          "Segoe UI", system-ui, sans-serif;
  --serif: ui-serif, "New York", "Iowan Old Style", "Palatino Linotype", Palatino,
           Georgia, serif;

  /* ---- motion ---- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);   /* soft overshoot, bubbles + taps */
  --dur-tap: 120ms;
  --dur-ui: 200ms;
  --dur-reveal: 620ms;

  /* ---- space (4pt base) ---- */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 144px;

  /* ---- shape: one rule, followed everywhere.
         interactive controls are full pills, cards are 26, inputs and small tiles are 18 ---- */
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* shadows tinted to the blush ground, never pure black */
  --shadow-sm: 0 1px 2px rgba(94, 44, 52, 0.05);
  --shadow-md: 0 2px 8px rgba(94, 44, 52, 0.05), 0 14px 34px rgba(94, 44, 52, 0.10);
  --shadow-lg: 0 4px 14px rgba(94, 44, 52, 0.08), 0 30px 70px rgba(94, 44, 52, 0.16);
}
