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

:root {
  --bg:     #f8f8f6;
  --fg:     #111111;
  --muted:  #6e6e6e;
  --label:  #aaaaaa;
  --border: #e2e2de;
  --link:   #444444;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:     #0c0c0c;
    --fg:     #e0e0e0;
    --muted:  #787878;
    --label:  #444444;
    --border: #202020;
    --link:   #909090;
  }
}

html, body {
  height: 100%;
}

body {
  min-height: 100%;
  background-color: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

main {
  text-align: center;
  max-width: 480px;
  width: 100%;
  animation: fadein 0.7s ease both;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Wordmark */
.wordmark {
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.wordmark-x {
  font-weight: 500;
}

/* Entity name */
.entity {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2.75rem;
}

.legal {
  font-weight: 300;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--label);
}

/* Divider */
.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 auto 2.75rem;
  width: 100%;
}

/* Address block */
address {
  font-style: normal;
}

.postal {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Details grid */
.details {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 1.75rem;
  row-gap: 0.45rem;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

.details dt {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--label);
  text-align: right;
  white-space: nowrap;
  padding-top: 0.05em;
}

.details dd {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
}

.details dd a {
  color: var(--muted);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.details dd a:hover {
  color: var(--fg);
  text-decoration: underline;
}
