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

body {
  background-color: #edd1b0;
  font-family: 'Inter', sans-serif;
  color: #2c2420;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.showcase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.greeting {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.4rem;
}

.name {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.divider {
  width: 40px;
  height: 3px;
  background-color: #2c2420;
  opacity: 0.25;
  margin: 1.2rem 0;
  border-radius: 2px;
}

.role {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.description {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.55;
  max-width: 400px;
}

.footer {
  text-align: center;
  padding: 1.5rem;
}

.footer-link {
  font-size: 0.8rem;
  font-weight: 400;
  color: #2c2420;
  text-decoration: none;
  opacity: 0.4;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.8;
}
