* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

body {
  background: linear-gradient(135deg, #090909, #000);
  color: white;
  overflow-x: hidden;
  text-align: center;
}

.background-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  filter: blur(160px);
  top: -200px;
  left: -150px;
  z-index: -1;
}

header {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.logo {
  font-size: 28px;
}

nav a {
  color: #aaa;
  margin-right: 15px;
  text-decoration: none;
}

nav a:hover {
  color: white;
}

.hire-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: white;
  color: black;
  cursor: pointer;
}

.hero {
  padding: 30px;
}

.title {
  font-size: 50px;
  font-weight: bold;
}

.title span {
  background: linear-gradient(to right, white, gray);
  -webkit-text-fill-color: transparent;
}

canvas {
  margin-top: 20px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
}