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

html, body {
  height: 100%;
}

body {
  background: #ffffff;
  color: #333333;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px;
}

h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(28px, 9vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.role {
  font-size: clamp(18px, 5vw, 32px);
  font-weight: 500;
  color: #666666;
}

.divider {
  width: 40px;
  height: 1px;
  background: #cccccc;
  margin: 8px 0;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  font-weight: 400;
}

a {
  color: #0055cc;
  text-decoration: underline;
}

h1 span:nth-child(1) {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
  animation-delay: 0.1s;
}

h1 span:nth-child(2) {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
  animation-delay: 0.35s;
}

.divider {
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
  animation-delay: 0.6s;
}

.contact a:nth-child(1) {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
  animation-delay: 0.85s;
}

.contact a:nth-child(2) {
  display: inline-block;
  opacity: 0;
  animation: fadeIn 0.7s ease forwards;
  animation-delay: 1.1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: #1a1a1a;
    color: #e6e6e6;
  }

  .role {
    color: #999999;
  }

  .divider {
    background: #444444;
  }

  a {
    color: #4d94ff;
  }
}
