* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(125, 211, 252, 0.15), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(167, 139, 250, 0.16), transparent 30%),
    linear-gradient(145deg, var(--bg), #0d1222 52%, var(--bg));
}

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

button {
  border: 0;
}

a {
  color: inherit;
}

.app-shell {
  min-height: 100vh;
}

.noscript-panel,
.static-page {
  width: min(720px, calc(100% - 32px));
  margin: 10vh auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link {
  color: var(--accent);
  text-underline-offset: 4px;
}
