/* ============================================================
   STUB — collectible invites for local parties
   Refined-middle theme: Carbon/IBM Plex foundations, warm-dark
   chrome, vibrant per-event accent "moments".
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* warm-dark surface ramp */
  --bg:        #0e0e11;
  --bg-2:      #141417;
  --surface:   #1b1b1f;
  --surface-2: #232328;
  --surface-3: #2c2c32;
  --border:    #2a2a30;
  --border-2:  #3a3a42;

  --text:   #f5f5f4;
  --text-2: #a7a7ad;
  --text-3: #6f6f78;

  /* status */
  --going:  #5fd08a;   /* green */
  --maybe:  #f6c945;   /* amber */
  --cant:   #ff6f61;   /* coral */

  /* brand accent (lowkey default) */
  --accent: #c6f24e;       /* electric lime */
  --accent-ink: #14210a;   /* text on accent */

  --font: 'IBM Plex Sans', system-ui, sans-serif; /* @kind font */
  --mono: 'IBM Plex Mono', ui-monospace, monospace; /* @kind font */

  /* radii — friendlier than Carbon's sharp chrome, these are objects */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-card: 26px;

  --ease: cubic-bezier(.2,0,.2,1); /* @kind other */
}

* { box-sizing: border-box; }
::selection { background: var(--accent); color: var(--accent-ink); }
