/* resoler.co — base styles (placeholder, to be designed) */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
}

nav {
  padding: 1rem 2rem;
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
}

main {
  padding: 3rem 2rem;
}
