/* shared/styles.css — V.Two Ops shared design tokens and base reset */

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

:root {
  /* Brand */
  --pink: #E60075;
  --purple: #532976;
  --white: #FEFFFF;
  --gray: #797979;
  --gray-light: #B0B1B5;

  /* Hub palette (landing page, nav bars) */
  --hub-bg: #532976;
  --hub-bg2: #3d1f5c;
  --hub-border: rgba(255,255,255,.12);
  --hub-text: #FEFFFF;
  --hub-text2: rgba(254,255,255,.7);
  --hub-text3: rgba(254,255,255,.4);
  --hub-accent: #E60075;
  --hub-accent-hover: #ff3399;

  /* Light palette (section pages) */
  --bg: #FEFFFF;
  --surface: #fff;
  --surface2: #f5f5f6;
  --border: #e0e0e2;
  --border2: #d0d0d3;
  --text: #1a1a1a;
  --text2: #797979;
  --text3: #B0B1B5;
  --accent: #E60075;
  --accent-light: #fce4f0;
  --accent-text: #532976;

  /* Status colors */
  --green: #1a9c6e;
  --green-light: #e6f7f1;
  --amber: #b86c0a;
  --amber-light: #fef3e2;
  --red: #c0392b;
  --red-light: #fdecea;
  --blue: #1a6fb5;
  --blue-light: #e8f2fc;

  /* Typography */
  --font: 'Aptos', system-ui, -apple-system, sans-serif;
  --mono: 'DM Mono', ui-monospace, monospace;

  /* Layout */
  --radius: 8px;
  --radius-lg: 12px;
}

html, body {
  height: 100%;
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }
