* { box-sizing: border-box; }

html { background: #fff; }

body {
  margin: 0;
  background: #fff;
  color: #000;
  font: 15px/1.55 Helvetica, Arial, sans-serif;
  overflow: hidden;
}

#portrait {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

main {
  position: relative;
  z-index: 10;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6vh;
  min-height: 100dvh;
  padding: 7vh 8vw;
}

header { text-align: right; }

h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 60px;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 28px;
}

.lede {
  max-width: 380px;
  margin: 14px 0 0 auto;
}

.lede p { margin: 0; }

.lede p + p { margin-top: 14px; }

h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

ol {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  max-width: 330px;
}

li {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.index {
  flex: none;
  width: 26px;
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
}

.title {
  display: block;
  line-height: 1.4;
}

.pending {
  text-decoration: underline dashed 1px;
  cursor: help;
}

.status {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.55);
}

.contact { margin: 22px 0 0; }

.rule { padding: 0 10px; }

a {
  color: inherit;
  text-decoration: none;
}

a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  h1 { font-size: 48px; line-height: 40px; }
  h2 { font-size: 22px; line-height: 24px; }
}
