@font-face{
  font-family:'Inter';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('/fonts/inter-latin.woff2') format('woff2');
}
:root{
  /* surfaces */
  --bg:#0a0b0d;
  --sidebar:#08090b;
  --panel:#121316;
  --panel-2:#16181c;
  --panel-hover:#1a1c21;
  --card:#101114;
  --card-2:#14161a;
  --inset:#0d0e11;
  --border:#23262c;
  --border-soft:#1a1c21;
  --border-strong:#2c3037;

  /* text */
  --text:#e9eaec;
  --text-2:#b7bac0;
  --dim:#8b8f97;
  --mut:#686c74;
  --label:#71757d;

  /* accents */
  --green:#3ecf8e;
  --green-2:#2fa876;
  --green-soft:rgba(62,207,142,.12);
  --green-line:#3ecf8e;
  --purple:#8a7ef7;
  --purple-soft:rgba(138,126,247,.14);
  --amber:#e0a33c;
  --amber-bg:#3a2c12;
  --amber-bd:#5a441c;
  --amber2:#c69048;
  --amber2-bg:#2a2418;
  --blue:#6ea8fe;
  --blue-bg:#182233;
  --red:#e07070;
  --red-bg:rgba(224,112,112,.12);
  --hot:#f0a53c;
  --hot-bg:#3a2a10;
  --hot-bd:#5b431a;

  /* type */
  --font:'Inter','Inter var',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --fs-xs:11px; --fs-sm:12px; --fs-13:13px; --fs-md:14px; --fs-lg:16px; --fs-xl:20px; --fs-2xl:26px; --fs-3xl:32px;

  /* radius / shadow */
  --r-sm:6px; --r:8px; --r-lg:11px; --r-xl:14px;
  --sh:0 1px 2px rgba(0,0,0,.4);
  --sh-lg:0 8px 30px rgba(0,0,0,.5);

  --sidebar-w:236px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;background:var(--bg);color:var(--text);
  font-family:var(--font);font-size:var(--fs-md);line-height:1.45;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer}
::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-thumb{background:#22252b;border-radius:6px;border:2px solid transparent;background-clip:content-box}
::-webkit-scrollbar-thumb:hover{background:#2e323a;background-clip:content-box}
::-webkit-scrollbar-track{background:transparent}
input,textarea,select{font-family:inherit}
