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

body {
  font-family: Menlo, 'IBM Plex Mono', monospace;
  color: #333;
  background: #f5f5f5;
  -webkit-font-smoothing: antialiased;
}

.container {
  padding: 2.5rem 2.5rem;
}

.title {
  font-family: Menlo, 'IBM Plex Mono', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}

.mission {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.3rem;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact a {
  font-family: Menlo, 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.contact a:hover {
  color: #333;
}

@media (max-width: 600px) {
  .container {
    padding: 1.5rem 1.25rem;
  }
}
