/* NEZO.app — Design Tokens */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Backgrounds */
  --bg: #060608;
  --bg1: #0c0c10;
  --bg2: #131318;
  --bg3: #1a1a22;

  /* Borders */
  --b1: #1e1e2a;
  --b2: #2e2e40;
  --b3: #444458;

  /* Text */
  --t1: #ffffff;
  --t2: #e0e0ea;
  --t3: #b0b0c4;
  --t4: #8888a0;
  --t5: #686880;

  /* Accent */
  --cyan: #00d4e6;
  --cyan2: #00b8cc;
  --cyan-bg: rgba(0, 212, 230, 0.08);
  --cyan-bg2: rgba(0, 212, 230, 0.12);
  --cyan-glow: 0 0 20px rgba(0, 212, 230, 0.15);

  /* Semantic */
  --orange: #ff9f43;
  --orange-bg: rgba(255, 159, 67, 0.1);
  --red: #ff6b6b;
  --red-bg: rgba(255, 107, 107, 0.1);
  --purple: #a78bfa;
  --purple-bg: rgba(167, 139, 250, 0.1);
  --green: #51cf66;
  --green-bg: rgba(81, 207, 102, 0.1);

  /* Typography */
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --sp1: 4px;
  --sp2: 8px;
  --sp3: 12px;
  --sp4: 16px;
  --sp5: 20px;
  --sp6: 24px;
  --sp8: 32px;

  /* Radius */
  --r1: 6px;
  --r2: 8px;
  --r3: 10px;
  --r4: 12px;
  --r5: 16px;

  /* Transitions */
  --trans: 0.2s ease;
  --trans-fast: 0.12s ease;

  /* Sidebar */
  --sidebar-w: 240px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t2);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--b2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--b3); }

::selection { background: var(--cyan-bg2); color: var(--t1); }

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

svg:not([width]):not(.inbox-circle svg) {
  width: 1em; height: 1em;
  vertical-align: -0.125em;
}
