/* ==============================
   RESET & BASE
   ============================== */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	background: #f8fafc;
	color: #1e293b;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	color: #0f172a;
	line-height: 1.25;
	font-weight: 700;
}

p {
	color: #475569;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	display: block;
}

button, input, textarea, select {
	font: inherit;
}