@import url('/assets/css/satoshi-578a11c3c9.css');
*,*::before,*::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::-webkit-scrollbar{
  width: 6px;
}
*::-webkit-scrollbar-thumb{
  background-color: rgba(255, 255, 255, .3);
  border-radius: 8px;
}
*::-webkit-scrollbar-track{
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
}
html{
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body{
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-weight: 500;
  
  overflow-x: clip;
}
h1,h2,h3,h4,h5,h6{
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  text-wrap: balance;
}
h1{
  font-size: var(--text-5xl);
  letter-spacing: -0.02em;
  font-weight: 900;
  line-height: 0.9;
}
h2{
  font-size: var(--text-6xl);
  letter-spacing: -0.01em;
  font-weight: 900;
}
h3{
  font-size: var(--text-2xl);
  font-weight: 900;
}
h4{
  font-size: var(--text-xl);
}
h5{
  font-size: var(--text-lg);
}
h6{
  font-size: var(--text-base);
}
h1 span{
  display: inline-block;
}
p{
  color: var(--color-text-secondary);
  font-weight: 500;
}
a{
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 500;
}
a:hover{
  color: var(--color-primary);
}
input,textarea,select{
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
input:focus,textarea:focus,select:focus{
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.text-center{
  padding: var(--space-xl);
  text-align: center;
}
.mt-sm{
  margin-top: var(--space-sm) !important;
}
.mt-md{
  margin-top: var(--space-md) !important;
}
.mt-lg{
  margin-top: var(--space-lg) !important;
}
.mt-xl{
  margin-top: var(--space-xl) !important;
}
.mt-2xl{
  margin-top: var(--space-2xl) !important;
}
.mb-2xl{
  margin-bottom: var(--space-2xl) !important;
}
.pt-2xl{
  padding-top: var(--space-2xl) !important;
}
.pb-2xl{
  padding-bottom: var(--space-2xl) !important;
}
.font-black{
  font-weight: 900;
  font-size: var(--text-6xl);
  display: inline-block;
}
.font-black-small{
  font-weight: 900;
  font-size: var(--text-4xl);
  line-height: calc(var(--text-6xl) * 1.65);
  display: inline-block;
}
.font-thin-small{
  font-weight: 300;
  font-size: var(--text-2xl);
  display: inline-block;
}