/*
 * The mobile notice.
 *
 * Shown on a phone, saying the app is coming and the site is better on a
 * desktop for now.
 *
 * It does not block. "Check us out on desktop" is worth saying and not worth
 * enforcing: most people arrive on a phone, and a hard wall turns every one of
 * them into a bounce, including the ones who would happily have looked around
 * anyway. So it covers the page, says its piece, and has a way past it that
 * remembers the answer.
 */

.mb-note { display: none; }

@media (max-width: 720px) {
  .mb-note {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 32px 26px;
    background: #000;
    text-align: center;
    font-family: var(--face, 'Archivo', sans-serif);
  }
  .mb-note[hidden] { display: none; }
}

.mb-logo { width: min(240px, 62vw); display: block; }

.mb-soon {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--green, #3fdc6f);
}

.mb-title {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.15;
  color: var(--ink, #e7e7e7);
  text-transform: uppercase;
}

.mb-line {
  margin: 0;
  max-width: 30ch;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--mute, #9a9aa3);
}

.mb-go {
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--dim, #5d5d66);
  background: none;
  border: 1px solid var(--line, #26262a);
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
}
.mb-go:hover { color: var(--ink, #e7e7e7); border-color: var(--edge, #2c2c31); }
