.site-title {
  position: relative;
  display: inline-block;
  font-weight: 800 !important;
  font-size: 1.2rem !important;
  line-height: 1.2 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.5) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
  from {
    background-position: 200% center;
  }
  to {
    background-position: -200% center;
  }
}



.home-blurb {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background: linear-gradient(135deg, rgba(32, 32, 32, 0.3), rgba(0, 0, 0, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 2rem 2rem 2.5rem;
  margin: 2.5rem auto;
  max-width: 1100px;
  min-height: 280px;
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(8px) saturate(180%);
  box-shadow:
    0 0 0.5rem rgba(255, 255, 255, 0.02),
    0 0 2rem rgba(255, 255, 255, 0.03),
    0 1rem 2rem rgba(0, 0, 0, 0.25);
  isolation: isolate;

  &::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
      ellipse at 30% 30%,
      rgba(255, 255, 255, 0.06),
      transparent 70%
    );
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 0;
  }

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)
    );
    z-index: 0;
    pointer-events: none;
  }
}

.home-blurb-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;

  h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.97);
    line-height: 1.2;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  }

  p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    opacity: 0.95;
    margin: 0;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  }
}