/* [project]/src/app/globals.css [app-client] (css) */
@font-face {
  font-family: HK Grotesk;
  src: url("/fonts/HKGROTESK-LIGHT.TTF") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: HK Grotesk;
  src: url("/fonts/HKGROTESK-REGULAR.TTF") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: HK Grotesk;
  src: url("/fonts/HKGROTESK-SEMIBOLD.TTF") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --bg: #fff;
  --bg-soft: #f7f9fb;
  --surface: #ffffffe6;
  --surface-strong: #fff;
  --surface-muted: #f1f5f8;
  --ink: #122022;
  --muted: #122022b3;
  --subtle: #1220227a;
  --line: #1220221a;
  --accent: #36ecdf;
  --accent-strong: #01203f;
  --accent-rgb: 54, 236, 223;
  --accent-strong-rgb: 1, 32, 63;
  --warm: #d7e2ea;
  --mint: #e7f0f4;
  --shadow: 0 30px 80px #12202214;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  font-family: HK Grotesk, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/