:root {
  --bg: #12151b;
  --orange: #ffb301;
  --teal: #5fd9ca;
  --fg: #e8e6e0;
  --muted: #7b8291;
  --mono: 'Source Code Pro', monospace;
  --sans: 'Inter', sans-serif;
}

html, body {
  min-height:100vh
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 15%, rgba(255,179,0,0.07), transparent 45%), radial-gradient(circle at 85% 80%, rgba(95,217,201,0.05), transparent 40%), var(--bg);
  color: var(--fg);
  font-family: var(--sans);
}

main {
  text-align: center;
  padding: 0 24px;
}

h1 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(34px, 8vw, 68px);
  margin: 0 0 20px;
}

.cursor{
  display: inline-block;
  width: 1ch;
  background: var(--orange);
  animation: blink 1s step-end infinite;
  margin-left:4px;
}
@keyframes blink{
  50% { opacity:0; }
}

p {
  font-size: 16px;
  color:var(--muted);
  max-width:420px;
  margin: 0 auto; line-height:1.6;
}

a {
  color: var(--teal);
  text-decoration: none;
}
a:hover{
  text-decoration:underline;
}