@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syne:wght@800&display=swap');

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

:root {
  --bg: #0c0c0f;
  --fg: #e2ddf6;
  --purple: #a855f7;
  --blue: #60a5fa;
  --dim: #2a2a3a;
  --mid: #6060a0;
  --mono: 'Space Mono', monospace;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--mono);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

canvas#bg {
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: 0.07;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  padding: 48px 24px;
  box-sizing: border-box;
}

pre.logo {
  font-family: var(--mono);
  font-size: clamp(6px, 1.3vw, 15px);
  line-height: 1.25;
  white-space: pre;
  margin: 0 auto 36px;
  width: fit-content;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: up 0.6s ease 0.1s forwards;
}

.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.5s ease 0.3s forwards;
  flex-wrap: wrap;
  row-gap: 4px;
}
.chip-line { flex: 1; height: 1px; background: var(--purple); }
.chip-sep { width: 28px; height: 1px; background: var(--dim); flex-shrink: 0; }
.chip-ip { color: var(--blue); }
.chip-greet { color: var(--mid); }

.bio {
  font-size: 13px;
  line-height: 2;
  color: var(--mid);
  border-left: 1px solid var(--dim);
  padding-left: 20px;
  margin-bottom: 40px;
  opacity: 0;
  animation: up 0.5s ease 0.45s forwards;
}
.bio span { color: var(--fg); }
.bio em { color: var(--blue); font-style: normal; }

.blink {
  display: inline-block;
  width: 2px; height: 0.9em;
  background: var(--purple);
  vertical-align: middle;
  margin-left: 3px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
  opacity: 0;
  animation: up 0.5s ease 0.55s forwards;
}
.links-inner {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.links a:hover { color: var(--blue); }
.links a svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.foot-sep {
  border-top: 1px solid var(--dim);
  margin-bottom: 20px;
  opacity: 0;
  animation: up 0.5s ease 0.65s forwards;
}
.meta-bar {
  border-top: 1px solid var(--dim);
  padding-top: 20px;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: up 0.5s ease 0.65s forwards;
}
.footer {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: up 0.5s ease 0.65s forwards;
}
.foot-line { flex: 1; height: 1px; background: var(--purple); }
.foot-items {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  min-width: 0;
  overflow: hidden;
}
.sep-dot { color: var(--dim); }

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