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

:root {
  --bg: #0a0a0a;
  --fg: #e8e6df;
  --green: #5a8c5a;
  --dim: #4a4a45;
  --dim-2: #2a2a27;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem 2rem 6rem;
  position: relative;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(255, 255, 255, 0.012) 3px,
    transparent 4px
  );
  mix-blend-mode: overlay;
}

main {
  text-align: center;
  max-width: 540px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.sigil {
  width: 88px;
  height: auto;
  margin: 0 auto 2.25rem;
  color: var(--fg);
  filter:
    drop-shadow(0.6px 0 0 rgba(0, 200, 220, 0.35))
    drop-shadow(-0.6px 0 0 rgba(220, 50, 50, 0.35));
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.95; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.025); }
}

.name {
  font-size: 3.25rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.tagline {
  font-size: 0.95rem;
  color: var(--fg);
  opacity: 0.55;
  margin-bottom: 3.5rem;
  letter-spacing: 0.01em;
}

.block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 3rem;
}

.block-label {
  color: var(--dim);
  letter-spacing: 0.25em;
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 500;
}

.block-value {
  color: var(--fg);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.mono-green {
  color: var(--green);
}

.links {
  margin-bottom: 3rem;
}

.link {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--dim);
  padding-bottom: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  gap: 0.5rem;
  align-items: baseline;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.link:hover {
  border-color: var(--fg);
}

.link .arrow {
  color: var(--dim);
  transition: color 0.2s ease;
}

.link:hover .arrow {
  color: var(--fg);
}

.cursor {
  display: inline-block;
  margin-left: 1px;
  animation: blink 1.1s steps(1) infinite;
}

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

.drops-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.15rem;
}

.drop-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--dim);
  padding-bottom: 3px;
  transition: border-color 0.2s ease;
}

.drop-item:hover {
  border-color: var(--fg);
}

.drop-ticker {
  color: var(--fg);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.drop-sub {
  color: var(--dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

footer {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.75rem;
  z-index: 10;
}

footer a {
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--fg);
}

@media (max-width: 480px) {
  body { padding: 3rem 1.5rem 5rem; }
  .name { font-size: 2.5rem; }
  .sigil { width: 72px; margin-bottom: 2rem; }
  .tagline { margin-bottom: 2.75rem; }
  .block { margin-bottom: 2.5rem; }
  .links { margin-bottom: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sigil { animation: none; }
  .cursor { animation: none; opacity: 0.5; }
}
