html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  line-height: 1.5;
  font-weight: 400;
  background-color: #000;
  color: #e0e0e0;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    linear-gradient(135deg, transparent 0%, #000 85%),
    radial-gradient(
      circle,
      rgba(255, 255, 255, var(--dot-alpha)) 1px,
      transparent 1.5px
    );
  background-size:
    100% 100%,
    24px 24px;
  background-attachment: fixed, fixed;
  animation: halftone-breathe 11s ease-in-out infinite alternate;
}

@property --dot-alpha {
  syntax: "<number>";
  initial-value: 0.08;
  inherits: false;
}

@keyframes halftone-breathe {
  from {
    --dot-alpha: 0.06;
  }
  to {
    --dot-alpha: 0.15;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100dvh;
  width: 100%;
  padding: 2rem;
  padding-left: 4rem;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  font-size: clamp(2.25rem, 6.5vw, 4.5rem);
  font-weight: 700;
  text-wrap: balance;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #fff;
  margin-top: -80px;
  margin-bottom: 1rem;
}

.footer {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #6a6a6a;
  z-index: 1;
}

.description {
  font-size: clamp(0.875rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  max-width: min(55ch, 85%);
  margin: 0;
  color: #c0c0c0;
  text-wrap: pretty;
  letter-spacing: 0.02em;
  padding: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
    padding-left: 1.5rem;
  }

  .hero-text {
    margin-top: -12vh;
  }

  .description {
    max-width: 95%;
  }

  .footer {
    bottom: 1.25rem;
  }
}
