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

html, body {
  height: 100%;
  background: #0d0f14;
  color: #f5f3ee;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.glow {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(166,251,178,0.08) 0%, rgba(166,251,178,0) 65%);
  pointer-events: none;
}

.content {
  position: relative;
  max-width: 560px;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
}

h1 span {
  color: #a6fbb2;
}

.tagline {
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 400;
  color: #a7adb8;
  line-height: 1.6;
}

.status {
  margin-top: 40px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7482;
}

.contact {
  margin-top: 12px;
}

.contact a {
  color: #f5f3ee;
  text-decoration: none;
  border-bottom: 1px solid rgba(166,251,178,0.4);
  padding-bottom: 2px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact a:hover {
  color: #a6fbb2;
  border-color: #a6fbb2;
}
