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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  color: #fff;
  display: grid;
  place-items: center;
}

a {
  color: inherit;
  text-decoration: none;
}

.home {
  width: min(880px, calc(100% - 48px));
  padding: 80px 0;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #e60012;
  letter-spacing: 0.08em;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.intro {
  max-width: 560px;
  margin-bottom: 42px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: -0.02em;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.project-card {
  min-height: 148px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.2s ease, color 0.2s ease;
}

.project-card:hover {
  background: #e60012;
  color: #fff;
}

.project-card span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.project-card small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
}

.project-card:hover small {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 720px) {
  .project-list {
    grid-template-columns: 1fr;
  }
}
