/* ==========================================================================
   page: gate (landing / entry screen)
   ========================================================================== */

.gate {
  min-height: 100vh;
  background: #eeece6;
  display: grid;
  place-items: center;
  padding: 25px;
}

.gate-card {
  background: #fff;
  max-width: 540px;
  width: 100%;
  padding: 54px 60px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(40, 35, 25, .07);
}

.gate-card .brand {
  justify-content: center;
}

.gate-line {
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin: 45px auto 34px;
}

.gate .eyebrow {
  justify-content: center;
}

.gate h1 {
  font-size: 39px;
  line-height: 1.1;
  letter-spacing: -.05em;
  margin: 0;
}

.gate h1 em {
  font-family: var(--font-serif);
  font-weight: 500;
  color: #9c9a93;
}

.gate p:not(.eyebrow) {
  color: #888;
  line-height: 1.75;
  font-size: 13px;
  margin: 24px auto;
  max-width: 370px;
}

.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.enter {
  background: var(--dark);
  color: #fff;
  padding: 16px 22px;
  min-width: 240px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.enter span {
  font-size: 18px;
  line-height: 10px;
}

.gate-actions a {
  font-size: 11px;
  color: #999;
}

.gate-card>small {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #aaa;
}
