:root {
  --ink: #e3e7e3;
  --ground: #080b0d;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--ground);
}

body {
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  isolation: isolate;
  background: var(--ground);
}

.landing::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 22%, rgba(0, 0, 0, 0.34) 100%);
}

.particle-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
}

.title {
  position: absolute;
  z-index: 2;
  top: clamp(2rem, 7vw, 6rem);
  left: clamp(1.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  margin: 0;
  color: rgba(227, 231, 227, 0.94);
  font-size: clamp(1.05rem, 2.05vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
}

.title span:last-child {
  margin-top: 0.18em;
}

@media (max-width: 600px) {
  .title {
    top: 2rem;
    left: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.18em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .particle-field {
    opacity: 0.8;
  }
}
