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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0c0c0c;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  text-align: center;
  padding: 56px 72px;
  border: 1px solid #1f1f1f;
  border-radius: 3px;
  background: #111;
}

h1 {
  color: #f0f0f0;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.role {
  color: #555;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 10px;
}

.divider {
  width: 24px;
  height: 1px;
  background: #2a2a2a;
  margin: 32px auto;
}

.links {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.links a {
  color: #666;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.links a:hover {
  color: #f0f0f0;
}