:root {
  --font: "Helvetica Neue", Inter, Helvetica, Arial, sans-serif;
  --font-accent: "Kanit", sans-serif;

  --color-primary: #0863f1;
  --color-primary-hover: #0755d4;
  --color-text: #1a1a1a;
  --color-text-muted: rgba(26, 26, 26, 0.6);
  --color-text-subtle: rgba(26, 26, 26, 0.5);
  --color-surface: #fafafa;
  --color-white: #fff;

  --radius-sm: 8px;
  --radius-md: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(100% - 2rem, 1216px);
  margin-inline: auto;
}
