.hero {
  text-align: center;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(rgba(13, 13, 13, 0.72), var(--bg-0)),
    url("../assets/img/hero.webp") center / cover no-repeat;
}

.hero-logo {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 16px;
}

.hero-tagline {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-primary);
}

.hero-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-ip {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 32px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

.hero-ip-label, .hero-ip-hint {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-ip-value {
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: clamp(1.125rem, 5vw, 1.5rem);  
  font-weight: 700;
  color: var(--color-main);
  user-select: all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
