/* --- reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 100%; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans SC", system-ui, sans-serif;
  font-weight: 400;
  color: #e2e2e6;
  background: #0c0c0e;
  line-height: 1.5;
  overflow-x: hidden;
}

/* --- very subtle grid (tech) --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* --- subtle noise overlay --- */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- layout --- */
.wrap {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.header {
  text-align: center;
  max-width: 28rem;
}

.label {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: #6b6b76;
  margin-bottom: 0.75rem;
}

.name {
  margin: 0 0 0.6em;
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 40px rgba(0, 212, 170, 0.15);
}

.tagline {
  margin: 0;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 400;
  color: #888894;
}

.footer {
  position: absolute;
  bottom: clamp(1.25rem, 4vw, 2rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: #4a4a54;
}

.cursor {
  display: inline-block;
  width: 0.5em;
  height: 1em;
  margin-left: 2px;
  background: #00d4aa;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* --- narrow / mobile --- */
@media (max-width: 480px) {
  .label { letter-spacing: 0.25em; }
  .name { letter-spacing: 0.04em; }
}
