:root {
  --site-font: "Inter", sans-serif;
  --bg: #090909;
  --text: #f3f3f3;
  --muted: #999;
  --accent: #ffb000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--site-font);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(1.2rem, 5vw, 4rem);
}

.noise {
  display: none;
}

.shell {
  width: min(960px, 100%);
  display: grid;
  gap: 0.55rem;
  text-align: left;
}

.tag,
h1,
.status,
.soon {
  margin: 0;
}

.tag {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

h1 {
  font-size: clamp(2.4rem, 12vw, 7rem);
  line-height: 0.92;
}

.status {
  min-height: 1lh;
}

.soon {
  color: var(--muted);
  max-width: 34ch;
}

#font-toggle {
  cursor: default;
}

.font-name {
  position: fixed;
  right: 1rem;
  bottom: 0.8rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}
