@font-face {
  font-family: "Matter";
  src: url("fonts/Matter-Regular.woff2") format("woff2"),
    url("fonts/Matter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Matter";
  src: url("fonts/Matter-Medium.woff2") format("woff2"),
    url("fonts/Matter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --background: #fefcf8;
  --foreground: #040807;
  --muted-foreground: #8d8d8d;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Matter", system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: 2rem;
}

.logo {
  width: clamp(140px, 30vw, 246px);
  height: auto;
  color: var(--foreground);
}

.tagline {
  font-size: clamp(0.8125rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
}

.label {
  font-size: clamp(0.6875rem, 1.5vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
