*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Inclusive Sans';
  /* set name */
  src: url(../assets/fonts/InclusiveSans.woff2);
}

:root {
  --bg-dark: #090514;
  --bg-light: #291441;
  --bg-ultra-light: #3f235a;
  --primary: #a054ee;
  --primary-hover: #9333ea;
  --clay-light: #bc7cff;
  --text: #ffffff;
  --text-mid: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.4);
  --glass-bg: rgba(213, 168, 255, 0.02);
  --glass-shadow: inset 1px 2px 10px rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.06);
  --radius: 36px;
  --radius-sm: 20px;
  /* --font: 'Inclusive Sans', system-ui, sans-serif; */
  --font: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.2, 1.8, 0.3, 1);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at top, var(--bg-ultra-light) 0%, var(--bg-light) 20%, var(--bg-dark) 80%);
  background-attachment: fixed;
  color: var(--text);
  overflow-x: clip;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font-family: var(--font);
  border: none;
  outline: none;
  background: none;
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

section {
  position: relative;
  z-index: 1;
}

.mobile-br {
  display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Firefox scrollbar styling */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) var(--bg-dark);
}