*, *::before, *::after { box-sizing: border-box; }

html { background: #000; }

body {
  margin: 0;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000;
  color: #EDEDED;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.band {
  width: 100%;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 160px minmax(280px, 420px) 1fr;
  gap: 40px;
  align-items: start;
}

p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }

.wordmark {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.label { text-transform: uppercase; }

.muted { color: #7A7A7A; }

a {
  color: #EDEDED;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 120ms;
}

a:hover { opacity: 0.55; }

@media (max-width: 899px) {
  body {
    min-height: 0;
    overflow-y: auto;
    align-items: flex-start;
  }
  .band {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 64px 20px;
  }
}
